/* Why Solana Section Styles */

.why-solana-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.why-solana-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.why-solana-card {
    background: rgba(28, 26, 46, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.why-solana-card:hover {
    background: rgba(28, 26, 46, 0.8);
    border-color: rgba(139, 92, 246, 0.6);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
}

.why-solana-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(236, 72, 153, 0.2));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #8b5cf6;
}

.why-solana-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.why-solana-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.solana-tech-details {
    background: rgba(28, 26, 46, 0.8);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(139, 92, 246, 0.4);
    border-radius: 24px;
    padding: 3rem;
    margin-top: 3rem;
}

.solana-tech-details h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    color: #fff;
}

.tech-specs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.tech-spec {
    text-align: center;
}

.spec-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.spec-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: #8b5cf6;
}

.tech-explanation {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
}

@media (max-width: 1024px) {
    .why-solana-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .why-solana-section {
        padding: 4rem 0;
    }
    
    .why-solana-card {
        padding: 2rem;
    }
    
    .solana-tech-details {
        padding: 2rem;
    }
    
    .tech-specs-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .tech-explanation {
        font-size: 0.9rem;
    }
}
