/* Enhanced Landing Page Styles */

/* Main Philosophy Section */
.interconnected-philosophy {
    position: relative;
    background: linear-gradient(135deg, #081932 0%, #2c3e50 100%);
    border-radius: 12px;
    padding: 3rem 2rem;
    margin-bottom: 3rem;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.philosophy-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.philosophy-title {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.philosophy-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Connection Nodes and Lines */
#connection-nodes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.connection-node {
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.pulse-animation {
    animation: pulse 2s infinite;
    background-color: rgba(255, 255, 255, 0.9);
}

.connection-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.1));
    transform-origin: 0 0;
}

.energy-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    z-index: 2;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

@keyframes float-particle {
    0% {
        opacity: 0.8;
        transform: scale(0.8);
    }
    50% {
        opacity: 1;
        transform: translate(calc(var(--tx) * 0.5), calc(var(--ty) * 0.5)) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(var(--tx), var(--ty)) scale(0.8);
    }
}

/* Featured Cards Showcase */
.featured-cards-showcase {
    background: linear-gradient(135deg, #1a2a3a 0%, #2e3d4d 100%);
    border-radius: 12px;
    padding: 3rem 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.showcase-title, .cta-title {
    color: #fff;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 300;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.showcase-description, .cta-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.card-showcase-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 2rem;
}

.featured-card-item {
    position: relative;
    width: 180px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: linear-gradient(to bottom, #2a3a4a, #182838);
}

.featured-card-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 20px rgba(0, 0, 0, 0.4);
}

.card-item-image {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.card-item-info {
    padding: 12px;
    text-align: center;
}

.card-item-title {
    color: #fff;
    margin: 0 0 5px 0;
    font-size: 1rem;
    font-weight: 500;
}

.card-item-power {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.9rem;
}

.card-item-badge {
    position: absolute;
    top: 10px;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.badge-nft {
    right: 10px;
    background-color: #6c5ce7;
    color: white;
}

.badge-staked {
    left: 10px;
    background-color: #00b894;
    color: white;
}

/* Benefits Section */
.benefits-section {
    padding: 3rem 1rem;
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 2rem;
}

.benefit-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    background-color: rgba(255, 255, 255, 0.08);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #64B5F6;
}

.benefit-title {
    color: #fff;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.benefit-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Call to Action Section */
.cta-section {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    border-radius: 12px;
    padding: 3rem 2rem;
    margin-bottom: 3rem;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.cta-button {
    background: linear-gradient(135deg, #e65c00 0%, #f9d423 100%);
    color: white;
    padding: 12px 40px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, #ff7e1a 0%, #ffda3d 100%);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .philosophy-title, .showcase-title, .cta-title {
        font-size: 1.8rem;
    }
    
    .philosophy-description, .showcase-description, .cta-description {
        font-size: 1rem;
    }
    
    .featured-card-item {
        width: 150px;
    }
    
    .card-item-image {
        height: 190px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .interconnected-philosophy, .featured-cards-showcase, .cta-section {
        padding: 2rem 1rem;
    }
    
    .card-showcase-container {
        gap: 15px;
    }
    
    .featured-card-item {
        width: 130px;
    }
    
    .card-item-image {
        height: 160px;
    }
    
    .card-item-info {
        padding: 8px;
    }
    
    .card-item-title {
        font-size: 0.9rem;
    }
    
    .card-item-power {
        font-size: 0.8rem;
    }
}
