/* How It Works Section */
.how-it-works {
    margin: 60px 0;
    text-align: center;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    padding: 30px 20px;
    border-radius: 20px;
    transition: transform 0.3s;
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-blue);
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: inline-block;
    filter: drop-shadow(0 0 10px rgba(0, 242, 254, 0.3));
}

.step-card h3 {
    margin-bottom: 15px;
    color: #fff;
    font-size: 1.3rem;
}

.step-card p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 20px;
}

.social-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    border: 1px solid var(--glass-border);
    transition: 0.3s;
    text-decoration: none;
}

.social-btn:hover {
    background: var(--neon-blue);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 242, 254, 0.4);
}

/* FAQ Styles - Ensure these override any existing conflicts */
.faq-section {
    margin: 60px 0;
}

.faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item details summary {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    list-style: none;
    /* Hide default triangle */
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    transition: 0.3s;
    position: relative;
    color: #fff;
    display: block;
    /* Required for custom marker positioning */
}

/* Hide default marker in Chrome/Safari */
.faq-item details summary::-webkit-details-marker {
    display: none;
}

.faq-item details summary::after {
    content: "+";
    position: absolute;
    /* Position absolute relative to summary */
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    /* Vertically center */
    font-size: 1.5rem;
    color: var(--neon-blue);
    transition: transform 0.3s, color 0.3s;
    font-weight: 400;
    /* Lighter weight for the plus */
}

.faq-item details[open] summary::after {
    transform: translateY(-50%) rotate(45deg);
    /* Keep centered and rotate */
    color: var(--neon-pink);
}

.faq-item details[open] summary {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    background: rgba(255, 255, 255, 0.08);
}

.faq-item details p {
    padding: 20px;
    background: rgba(0, 0, 0, 0.2);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    margin-bottom: 0;
    line-height: 1.6;
    color: #ccc;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-top: none;
}
:root {
            --neon-blue: #00f2fe;
            --neon-purple: #bd00ff;
            --neon-pink: #ff0055;
            --amoled-bg: #000000;
            --card-dark: #111111;
        }

        body {
            background-color: var(--amoled-bg) !important;
            background-image:
                radial-gradient(circle at 10% 20%, rgba(0, 242, 254, 0.05) 0%, transparent 20%),
                radial-gradient(circle at 90% 80%, rgba(189, 0, 255, 0.05) 0%, transparent 20%) !important;
            font-family: 'Outfit', sans-serif !important;
            color: #fff !important;
        }

/* SEO Content Expansion */
.seo-text-container {
    position: relative;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
}

.expand-btn {
    display: none;
    margin: 15px auto 0;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--neon-blue);
    font-size: 1.2rem;
    padding: 8px 30px;
    border-radius: 20px;
    transition: 0.3s;
}

.expand-btn:focus {
    outline: none;
}

.expand-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 600px) {
    .seo-text-container.collapsed {
        max-height: 280px; 
    }
    
    .seo-text-container.collapsed::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 60px; /* Reduced from 100px so it doesn't obscure the paragraph as much */
        background: linear-gradient(to bottom, rgba(10, 10, 10, 0), rgba(10, 10, 10, 0.95));
        pointer-events: none;
        border-radius: 0 0 20px 20px;
    }

    .expand-btn {
        display: block;
    }
}

