    :root {
        --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
        --dark-bg: #0a0a0f;
        --card-bg: rgba(255, 255, 255, 0.03);
        --border-color: rgba(255, 255, 255, 0.1);
        --text-primary: #ffffff;
        --text-secondary: #a0a0b0;
        --accent-purple: #8b5cf6;
        --accent-pink: #ec4899;
        --accent-cyan: #06b6d4;
        --accent-green: #10b981;
        --accent-orange: #f59e0b;
    }

    body {
        font-family: 'Inter', sans-serif;
        background-color: var(--dark-bg);
        color: var(--text-primary);
        overflow-x: hidden;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        font-family: 'Space Grotesk', sans-serif;
        font-weight: 700;
    }

    /* ============================================
   PADDINGS & MARGINS - CUSTOM SPACING SYSTEM
   Works with Bootstrap 5 - Use !important to override
   ============================================ */

/* ----------------------------------------
   SECTION SPACING (Large vertical spacing)
   ---------------------------------------- */
.section-padding-sm { padding: 3rem 0 !important; }
.section-padding    { padding: 5rem 0 !important; }
.section-padding-lg { padding: 7rem 0 !important; }
.section-padding-xl { padding: 10rem 0 !important; }

/* ----------------------------------------
   CUSTOM PADDINGS (All sides)
   ---------------------------------------- */
.p-6 { padding: 4rem !important; }
.p-7 { padding: 5rem !important; }
.p-8 { padding: 6rem !important; }
.p-9 { padding: 8rem !important; }
.p-10 { padding: 10rem !important; }

/* ----------------------------------------
   CUSTOM PADDINGS (Top)
   ---------------------------------------- */
.pt-6 { padding-top: 4rem !important; }
.pt-7 { padding-top: 5rem !important; }
.pt-8 { padding-top: 6rem !important; }
.pt-9 { padding-top: 8rem !important; }
.pt-10 { padding-top: 10rem !important; }

/* ----------------------------------------
   CUSTOM PADDINGS (Bottom)
   ---------------------------------------- */
.pb-6 { padding-bottom: 4rem !important; }
.pb-7 { padding-bottom: 5rem !important; }
.pb-8 { padding-bottom: 6rem !important; }
.pb-9 { padding-bottom: 8rem !important; }
.pb-10 { padding-bottom: 10rem !important; }

/* ----------------------------------------
   CUSTOM PADDINGS (Left)
   ---------------------------------------- */
.ps-6 { padding-left: 4rem !important; }
.ps-7 { padding-left: 5rem !important; }
.ps-8 { padding-left: 6rem !important; }
.ps-9 { padding-left: 8rem !important; }
.ps-10 { padding-left: 10rem !important; }

/* ----------------------------------------
   CUSTOM PADDINGS (Right)
   ---------------------------------------- */
.pe-6 { padding-right: 4rem !important; }
.pe-7 { padding-right: 5rem !important; }
.pe-8 { padding-right: 6rem !important; }
.pe-9 { padding-right: 8rem !important; }
.pe-10 { padding-right: 10rem !important; }

/* ----------------------------------------
   CUSTOM PADDINGS (X-axis - Left & Right)
   ---------------------------------------- */
.px-6 { padding-left: 4rem !important; padding-right: 4rem !important; }
.px-7 { padding-left: 5rem !important; padding-right: 5rem !important; }
.px-8 { padding-left: 6rem !important; padding-right: 6rem !important; }
.px-9 { padding-left: 8rem !important; padding-right: 8rem !important; }
.px-10 { padding-left: 10rem !important; padding-right: 10rem !important; }

/* ----------------------------------------
   CUSTOM PADDINGS (Y-axis - Top & Bottom)
   ---------------------------------------- */
.py-6 { padding-top: 4rem !important; padding-bottom: 4rem !important; }
.py-7 { padding-top: 5rem !important; padding-bottom: 5rem !important; }
.py-8 { padding-top: 6rem !important; padding-bottom: 6rem !important; }
.py-9 { padding-top: 8rem !important; padding-bottom: 8rem !important; }
.py-10 { padding-top: 10rem !important; padding-bottom: 10rem !important; }

/* ----------------------------------------
   CUSTOM MARGINS (All sides)
   ---------------------------------------- */
.m-6 { margin: 4rem !important; }
.m-7 { margin: 5rem !important; }
.m-8 { margin: 6rem !important; }
.m-9 { margin: 8rem !important; }
.m-10 { margin: 10rem !important; }

/* Auto margin extensions */
.ms-auto { margin-left: auto !important; }
.me-auto { margin-right: auto !important; }
.mt-auto { margin-top: auto !important; }
.mb-auto { margin-bottom: auto !important; }
.mx-auto { margin-left: auto !important; margin-right: auto !important; }
.my-auto { margin-top: auto !important; margin-bottom: auto !important; }

/* ----------------------------------------
   CUSTOM MARGINS (Top)
   ---------------------------------------- */
.mt-6 { margin-top: 4rem !important; }
.mt-7 { margin-top: 5rem !important; }
.mt-8 { margin-top: 6rem !important; }
.mt-9 { margin-top: 8rem !important; }
.mt-10 { margin-top: 10rem !important; }

/* Negative margins (Top) */
.mt-n1 { margin-top: -0.25rem !important; }
.mt-n2 { margin-top: -0.5rem !important; }
.mt-n3 { margin-top: -1rem !important; }
.mt-n4 { margin-top: -1.5rem !important; }
.mt-n5 { margin-top: -3rem !important; }
.mt-n6 { margin-top: -4rem !important; }

/* ----------------------------------------
   CUSTOM MARGINS (Bottom)
   ---------------------------------------- */
.mb-6 { margin-bottom: 4rem !important; }
.mb-7 { margin-bottom: 5rem !important; }
.mb-8 { margin-bottom: 6rem !important; }
.mb-9 { margin-bottom: 8rem !important; }
.mb-10 { margin-bottom: 10rem !important; }

/* Negative margins (Bottom) */
.mb-n1 { margin-bottom: -0.25rem !important; }
.mb-n2 { margin-bottom: -0.5rem !important; }
.mb-n3 { margin-bottom: -1rem !important; }
.mb-n4 { margin-bottom: -1.5rem !important; }
.mb-n5 { margin-bottom: -3rem !important; }
.mb-n6 { margin-bottom: -4rem !important; }

/* ----------------------------------------
   CUSTOM MARGINS (Left)
   ---------------------------------------- */
.ms-6 { margin-left: 4rem !important; }
.ms-7 { margin-left: 5rem !important; }
.ms-8 { margin-left: 6rem !important; }
.ms-9 { margin-left: 8rem !important; }
.ms-10 { margin-left: 10rem !important; }

/* ----------------------------------------
   CUSTOM MARGINS (Right)
   ---------------------------------------- */
.me-6 { margin-right: 4rem !important; }
.me-7 { margin-right: 5rem !important; }
.me-8 { margin-right: 6rem !important; }
.me-9 { margin-right: 8rem !important; }
.me-10 { margin-right: 10rem !important; }

/* ----------------------------------------
   CUSTOM MARGINS (X-axis - Left & Right)
   ---------------------------------------- */
.mx-6 { margin-left: 4rem !important; margin-right: 4rem !important; }
.mx-7 { margin-left: 5rem !important; margin-right: 5rem !important; }
.mx-8 { margin-left: 6rem !important; margin-right: 6rem !important; }
.mx-9 { margin-left: 8rem !important; margin-right: 8rem !important; }
.mx-10 { margin-left: 10rem !important; margin-right: 10rem !important; }

/* ----------------------------------------
   CUSTOM MARGINS (Y-axis - Top & Bottom)
   ---------------------------------------- */
.my-6 { margin-top: 4rem !important; margin-bottom: 4rem !important; }
.my-7 { margin-top: 5rem !important; margin-bottom: 5rem !important; }
.my-8 { margin-top: 6rem !important; margin-bottom: 6rem !important; }
.my-9 { margin-top: 8rem !important; margin-bottom: 8rem !important; }
.my-10 { margin-top: 10rem !important; margin-bottom: 10rem !important; }

/* ----------------------------------------
   GAP UTILITIES (For flex/grid containers)
   ---------------------------------------- */
.gap-0 { gap: 0 !important; }
.gap-1 { gap: 0.25rem !important; }
.gap-2 { gap: 0.5rem !important; }
.gap-3 { gap: 1rem !important; }
.gap-4 { gap: 1.5rem !important; }
.gap-5 { gap: 3rem !important; }
.gap-6 { gap: 4rem !important; }
.gap-7 { gap: 5rem !important; }
.gap-8 { gap: 6rem !important; }

/* ----------------------------------------
   RESPONSIVE PADDINGS & MARGINS
   Breakpoints: sm (576px), md (768px), lg (992px), xl (1200px), xxl (1400px)
   ---------------------------------------- */

/* Small screens (up to 575px) */
@media (max-width: 575.98px) {
    .p-xs-0 { padding: 0 !important; }
    .p-xs-1 { padding: 0.25rem !important; }
    .p-xs-2 { padding: 0.5rem !important; }
    .p-xs-3 { padding: 1rem !important; }
    .p-xs-4 { padding: 1.5rem !important; }
    .p-xs-5 { padding: 3rem !important; }
    
    .m-xs-0 { margin: 0 !important; }
    .m-xs-1 { margin: 0.25rem !important; }
    .m-xs-2 { margin: 0.5rem !important; }
    .m-xs-3 { margin: 1rem !important; }
    .m-xs-4 { margin: 1.5rem !important; }
    .m-xs-5 { margin: 3rem !important; }
    
    .section-padding-xs { padding: 3rem 0 !important; }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
    .p-sm-6 { padding: 4rem !important; }
    .p-sm-7 { padding: 5rem !important; }
    .p-sm-8 { padding: 6rem !important; }
    
    .m-sm-6 { margin: 4rem !important; }
    .m-sm-7 { margin: 5rem !important; }
    .m-sm-8 { margin: 6rem !important; }
    
    .px-sm-6 { padding-left: 4rem !important; padding-right: 4rem !important; }
    .py-sm-6 { padding-top: 4rem !important; padding-bottom: 4rem !important; }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    .p-md-6 { padding: 4rem !important; }
    .p-md-7 { padding: 5rem !important; }
    .p-md-8 { padding: 6rem !important; }
    
    .m-md-6 { margin: 4rem !important; }
    .m-md-7 { margin: 5rem !important; }
    .m-md-8 { margin: 6rem !important; }
    
    .section-padding-md { padding: 5rem 0 !important; }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .p-lg-6 { padding: 4rem !important; }
    .p-lg-7 { padding: 5rem !important; }
    .p-lg-8 { padding: 6rem !important; }
    
    .m-lg-6 { margin: 4rem !important; }
    .m-lg-7 { margin: 5rem !important; }
    .m-lg-8 { margin: 6rem !important; }
    
    .section-padding-lg { padding: 6rem 0 !important; }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .p-xl-6 { padding: 4rem !important; }
    .p-xl-7 { padding: 5rem !important; }
    .p-xl-8 { padding: 6rem !important; }
    
    .m-xl-6 { margin: 4rem !important; }
    .m-xl-7 { margin: 5rem !important; }
    .m-xl-8 { margin: 6rem !important; }
}

/* ----------------------------------------
   COMPONENT-SPECIFIC SPACING
   ---------------------------------------- */

/* Card spacing */
.card-spacing { padding: 2rem !important; }
.card-spacing-lg { padding: 3rem !important; }

/* Button spacing */
.btn-spacing { margin: 0.5rem !important; }

/* Form spacing */
.form-group-spacing { margin-bottom: 1.5rem !important; }

/* Hero specific */
.hero-padding { padding: 120px 0 !important; }
.hero-padding-sm { padding: 80px 0 !important; }

/* Footer spacing */
.footer-padding { padding: 4rem 0 2rem !important; }

/* Header offset (for fixed header) */
.header-offset { margin-top: 80px !important; }
.header-offset-lg { margin-top: 100px !important; }

/* ----------------------------------------
   UTILITY SPACING
   ---------------------------------------- */

/* Remove spacing */
.no-padding { padding: 0 !important; }
.no-margin { margin: 0 !important; }

/* Remove padding directions */
.no-pt { padding-top: 0 !important; }
.no-pb { padding-bottom: 0 !important; }
.no-ps { padding-left: 0 !important; }
.no-pe { padding-right: 0 !important; }
.no-px { padding-left: 0 !important; padding-right: 0 !important; }
.no-py { padding-top: 0 !important; padding-bottom: 0 !important; }

/* Remove margin directions */
.no-mt { margin-top: 0 !important; }
.no-mb { margin-bottom: 0 !important; }
.no-ms { margin-left: 0 !important; }
.no-me { margin-right: 0 !important; }
.no-mx { margin-left: 0 !important; margin-right: 0 !important; }
.no-my { margin-top: 0 !important; margin-bottom: 0 !important; }

/* ----------------------------------------
   CONTAINER SPACING
   ---------------------------------------- */
.container-tight { max-width: 800px !important; }
.container-narrow { max-width: 960px !important; }
.container-wide { max-width: 1400px !important; }


    /* Header Styles */
    .header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: rgba(10, 10, 15, 0.8);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--border-color);
        padding: 1rem 0;
    }

    .header__content {
        display: flex;
        align-items: center;
        justify-content: space-between;
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 2rem;
    }

    .header__logo img {
        height: 40px;
        width: auto;
    }

    .header__nav {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: 2rem;
    }

    .header__nav-item {
        position: relative;
    }

    .header__nav-link {
        color: var(--text-secondary);
        text-decoration: none;
        font-weight: 500;
        font-size: 0.95rem;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 0.3rem;
        padding: 0.5rem 0;
    }

    .header__nav-link:hover {
        color: var(--text-primary);
    }

    .header__nav-link svg {
        width: 16px;
        height: 16px;
        fill: currentColor;
        transition: transform 0.3s ease;
    }

    .header__nav-item:hover .header__nav-link svg {
        transform: rotate(180deg);
    }

    .dropdown-menu {
        background: var(--dark-bg);
        border: 1px solid var(--border-color);
        border-radius: 12px;
        padding: 0.5rem;
        margin-top: 0.5rem;
        backdrop-filter: blur(20px);
        min-width: 200px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.3s ease;
        display: block;
    }

    .header__nav-item:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .dropdown-menu li {
        list-style: none;
    }

    .dropdown-menu a {
        color: var(--text-secondary);
        text-decoration: none;
        padding: 0.75rem 1rem;
        display: block;
        border-radius: 8px;
        transition: all 0.3s ease;
        font-size: 0.9rem;
    }

    .dropdown-menu a:hover {
        background: rgba(139, 92, 246, 0.1);
        color: var(--text-primary);
    }

    .header__actions {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .header__action-btn {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.6rem 1.2rem;
        border-radius: 10px;
        text-decoration: none;
        font-weight: 500;
        font-size: 0.9rem;
        transition: all 0.3s ease;
    }

    .header__action-btn--signin {
        color: var(--text-primary);
        border: 1px solid var(--border-color);
        background: transparent;
    }

    .header__action-btn--signin:hover {
        border-color: var(--accent-purple);
        background: rgba(139, 92, 246, 0.1);
        color: var(--text-primary);
    }

    .header__action-btn svg {
        width: 18px;
        height: 18px;
        fill: currentColor;
    }

    .header__btn {
        display: none;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 5px;
    }

    .header__btn span {
        display: block;
        width: 25px;
        height: 2px;
        background: var(--text-primary);
        transition: all 0.3s ease;
    }

    /* Mobile Responsive */
    @media (max-width: 991px) {
        .header__btn {
            display: flex;
        }

        .header__menu {
            position: fixed;
            top: 70px;
            left: 0;
            right: 0;
            background: rgba(10, 10, 15, 0.98);
            border-bottom: 1px solid var(--border-color);
            padding: 1rem 2rem;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
        }

        .header__menu.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .header__nav {
            flex-direction: column;
            gap: 0;
        }

        .header__nav-item {
            border-bottom: 1px solid var(--border-color);
        }

        .header__nav-link {
            padding: 1rem 0;
            justify-content: space-between;
        }

        .dropdown-menu {
            position: static;
            opacity: 1;
            visibility: visible;
            transform: none;
            background: transparent;
            border: none;
            padding: 0 0 1rem 1rem;
            display: none;
        }

        .header__nav-item.active .dropdown-menu {
            display: block;
        }

        .header__actions {
            display: none;
        }
    }

    /* Default (Desktop) */
.header__actions--mobile {
    display: none;
}

.header__actions--desktop {
    display: flex;
}

/* Mobile */
@media (max-width: 991px) {
    .header__actions--desktop {
        display: none;
    }

    .header__actions--mobile {
        display: flex;
        gap: 10px;
        margin-top: 20px;
    }
}

    /* Hero Section - Adjusted for fixed header */
    .hero-section {
        min-height: 100vh;
        position: relative;
        display: flex;
        align-items: center;
        background: var(--dark-bg);
        overflow: hidden;
        padding: 80px 0px 80px 0px;
        margin-top: 80px;
    }

    .hero-section::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle at 20% 80%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(236, 72, 153, 0.15) 0%, transparent 50%),
            radial-gradient(circle at 40% 40%, rgba(6, 182, 212, 0.1) 0%, transparent 40%);
        animation: float 20s ease-in-out infinite;
    }

    @keyframes float {

        0%,
        100% {
            transform: translate(0, 0) rotate(0deg);
        }

        33% {
            transform: translate(30px, -30px) rotate(120deg);
        }

        66% {
            transform: translate(-20px, 20px) rotate(240deg);
        }
    }

    .hero-content {
        position: relative;
        z-index: 2;
    }

    .hero-title {
        font-size: clamp(2.5rem, 6vw, 4.5rem);
        line-height: 1.1;
        margin-bottom: 1.5rem;
        background: linear-gradient(135deg, #fff 0%, #c4b5fd 50%, #f472b6 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .hero-subtitle {
        font-size: 1.25rem;
        color: var(--text-secondary);
        max-width: 600px;
        margin-bottom: 2rem;
        line-height: 1.7;
    }

    .hero-badges {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        margin-bottom: 2.5rem;
    }

    .hero-badge {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.5rem 1rem;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid var(--border-color);
        border-radius: 50px;
        font-size: 0.9rem;
        color: var(--text-secondary);
        transition: all 0.3s ease;
    }

    .hero-badge:hover {
        background: rgba(139, 92, 246, 0.2);
        border-color: var(--accent-purple);
        color: var(--text-primary);
        transform: translateY(-2px);
    }

    .hero-badge i {
        color: var(--accent-cyan);
    }

    .btn-custom {
        padding: 1rem 2rem;
        font-weight: 600;
        border-radius: 12px;
        transition: all 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        font-size: 0.9rem;
    }

    .btn-primary-custom {
        background: var(--primary-gradient);
        border: none;
        color: white;
        box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
    }

    .btn-primary-custom:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(139, 92, 246, 0.4);
        color: white;
    }

    .btn-outline-custom {
        background: transparent;
        border: 2px solid var(--border-color);
        color: var(--text-primary);
        margin-left: 1rem;
    }

    .btn-outline-custom:hover {
        border-color: var(--accent-pink);
        background: rgba(236, 72, 153, 0.1);
        color: var(--text-primary);
        transform: translateY(-3px);
    }

    /* Floating NFT Cards */
    .nft-showcase {
        position: relative;
        height: 500px;
    }

    .floating-card {
        position: absolute;
        width: 200px;
        height: 260px;
        background: var(--card-bg);
        border: 1px solid var(--border-color);
        border-radius: 20px;
        overflow: hidden;
        backdrop-filter: blur(10px);
        transition: transform 0.3s ease;
    }

    .floating-card:nth-child(1) {
        top: 10%;
        left: 10%;
        animation: float1 6s ease-in-out infinite;
    }

    .floating-card:nth-child(2) {
        top: 30%;
        right: 20%;
        animation: float2 7s ease-in-out infinite;
    }

    .floating-card:nth-child(3) {
        bottom: 10%;
        left: 30%;
        animation: float3 8s ease-in-out infinite;
    }

    @keyframes float1 {

        0%,
        100% {
            transform: translateY(0) rotate(-5deg);
        }

        50% {
            transform: translateY(-20px) rotate(-5deg);
        }
    }

    @keyframes float2 {

        0%,
        100% {
            transform: translateY(0) rotate(5deg);
        }

        50% {
            transform: translateY(-25px) rotate(5deg);
        }
    }

    @keyframes float3 {

        0%,
        100% {
            transform: translateY(0) rotate(-3deg);
        }

        50% {
            transform: translateY(-15px) rotate(-3deg);
        }
    }

    .floating-card img {
        width: 100%;
        height: 150px;
        object-fit: cover;
    }

    .floating-card-info {
        padding: 1rem;
    }

    .floating-card-info h6 {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }

    .floating-card-info p {
        font-size: 0.8rem;
        color: var(--accent-cyan);
        margin: 0;
    }

    /* Section Styling */
    .section-padding {
        padding: 6rem 0;
    }

    .section-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        background: linear-gradient(135deg, #fff 0%, #c4b5fd 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .section-subtitle {
        color: var(--text-secondary);
        font-size: 1.1rem;
        max-width: 700px;
    }

    /* Feature Cards */
    .feature-card {
        background: var(--card-bg);
        border: 1px solid var(--border-color);
        border-radius: 20px;
        padding: 2.5rem;
        height: 100%;
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
    }

    .feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: var(--primary-gradient);
        transform: scaleX(0);
        transition: transform 0.4s ease;
    }

    .feature-card:hover {
        transform: translateY(-10px);
        border-color: rgba(139, 92, 246, 0.3);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }

    .feature-card:hover::before {
        transform: scaleX(1);
    }

    .feature-icon {
        width: 70px;
        height: 70px;
        background: var(--primary-gradient);
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
        color: white;
    }

    .feature-card h4 {
        margin-bottom: 1rem;
        font-size: 1.3rem;
    }

    .feature-card p {
        color: var(--text-secondary);
        line-height: 1.7;
        margin: 0;
    }

    /* Category Cards */
    .category-card {
        background: var(--card-bg);
        border: 1px solid var(--border-color);
        border-radius: 20px;
        padding: 2rem;
        text-align: center;
        transition: all 0.4s ease;
        cursor: pointer;
    }

    .category-card:hover {
        transform: translateY(-5px);
        border-color: var(--accent-purple);
        background: rgba(139, 92, 246, 0.05);
    }

    .category-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        background: var(--secondary-gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .category-card h5 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    /* CTA Section */
    .cta-section {
        background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
        border-top: 1px solid var(--border-color);
        border-bottom: 1px solid var(--border-color);
        position: relative;
        overflow: hidden;
    }

    .cta-section::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
        animation: pulse 10s ease-in-out infinite;
    }

    @keyframes pulse {

        0%,
        100% {
            transform: scale(1);
            opacity: 0.5;
        }

        50% {
            transform: scale(1.1);
            opacity: 1;
        }
    }

    .cta-content {
        position: relative;
        z-index: 2;
    }

    /* Stats */
    .stat-item {
        text-align: center;
        padding: 2rem;
    }

    .stat-number {
        font-size: 3rem;
        font-weight: 700;
        background: var(--primary-gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-family: 'Space Grotesk', sans-serif;
    }

    .stat-label {
        color: var(--text-secondary);
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    /* Gradient Text */
    .gradient-text {
        background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .btn-outline-custom {
            margin-left: 0;
            margin-top: 1rem;
        }

        .hero-badges {
            justify-content: center;
        }

        .nft-showcase {
            display: none;
        }

        .hero-title {
            text-align: center;
        }

        .hero-subtitle {
            text-align: center;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-content .d-flex {
            justify-content: center;
        }
    }

    /* Activiity */
    
        /* Page Header */
        .page-header {
            padding: 3rem 0 2rem;
            background: linear-gradient(180deg, rgba(139, 92, 246, 0.1) 0%, transparent 100%);
            border-bottom: 1px solid var(--border-color);
        }

        .page-title {
            font-size: 2.5rem;
            margin-bottom: 0.5rem;
            background: linear-gradient(135deg, #fff 0%, #c4b5fd 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .page-subtitle {
            color: var(--text-secondary);
            font-size: 1.1rem;
        }

        /* Filter Tabs */
        .filter-tabs {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
            margin-bottom: 2rem;
        }

        .filter-tab {
            padding: 0.75rem 1.5rem;
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 50px;
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .filter-tab:hover,
        .filter-tab.active {
            background: var(--primary-gradient);
            border-color: transparent;
            color: white;
        }

        .filter-tab i {
            margin-right: 0.5rem;
        }

        /* Activity Card */
        .activity-card {
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 20px;
            padding: 1.5rem;
            display: flex;
            align-items: center;
            gap: 1.5rem;
            transition: all 0.3s ease;
            margin-bottom: 1rem;
        }

        .activity-card:hover {
            border-color: rgba(139, 92, 246, 0.3);
            transform: translateX(5px);
        }

        .activity-icon {
            width: 60px;
            height: 60px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .activity-icon.sale {
            background: rgba(16, 185, 129, 0.1);
            color: var(--accent-green);
        }

        .activity-icon.listing {
            background: rgba(139, 92, 246, 0.1);
            color: var(--accent-purple);
        }

        .activity-icon.bid {
            background: rgba(245, 158, 11, 0.1);
            color: var(--accent-orange);
        }

        .activity-icon.transfer {
            background: rgba(6, 182, 212, 0.1);
            color: var(--accent-cyan);
        }

        .activity-icon.mint {
            background: rgba(236, 72, 153, 0.1);
            color: var(--accent-pink);
        }

        .activity-icon.like {
            background: rgba(239, 68, 68, 0.1);
            color: #ef4444;
        }

        .activity-content {
            flex: 1;
        }

        .activity-title {
            font-size: 1.1rem;
            margin-bottom: 0.25rem;
            color: var(--text-primary);
        }

        .activity-meta {
            color: var(--text-secondary);
            font-size: 0.9rem;
        }

        .activity-meta a {
            color: var(--accent-cyan);
            text-decoration: none;
        }

        .activity-meta a:hover {
            text-decoration: underline;
        }

        .activity-price {
            text-align: right;
        }

        .activity-amount {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--text-primary);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .activity-amount i {
            color: var(--accent-cyan);
            font-size: 1rem;
        }

        .activity-time {
            color: var(--text-secondary);
            font-size: 0.85rem;
            margin-top: 0.25rem;
        }

        .activity-nft {
            width: 80px;
            height: 80px;
            border-radius: 12px;
            overflow: hidden;
            flex-shrink: 0;
        }

        .activity-nft img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Stats Cards */
        .stat-card {
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 20px;
            padding: 1.5rem;
            text-align: center;
            transition: all 0.3s ease;
        }

        .stat-card:hover {
            border-color: rgba(139, 92, 246, 0.3);
            transform: translateY(-5px);
        }

        .stat-icon {
            width: 60px;
            height: 60px;
            background: var(--primary-gradient);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin: 0 auto 1rem;
            color: white;
        }

        .stat-value {
            font-size: 2rem;
            font-weight: 700;
            color: var(--text-primary);
            font-family: 'Space Grotesk', sans-serif;
        }

        .stat-label {
            color: var(--text-secondary);
            font-size: 0.9rem;
            margin-top: 0.25rem;
        }

        /* Load More Button */
        .load-more {
            text-align: center;
            padding: 3rem 0;
        }

        .btn-load-more {
            padding: 1rem 3rem;
            background: transparent;
            border: 2px solid var(--border-color);
            border-radius: 50px;
            color: var(--text-primary);
            font-weight: 600;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .btn-load-more:hover {
            border-color: var(--accent-purple);
            background: rgba(139, 92, 246, 0.1);
        }

        /* Empty State */
        .empty-state {
            text-align: center;
            padding: 4rem 2rem;
        }

        .empty-state i {
            font-size: 4rem;
            color: var(--text-secondary);
            margin-bottom: 1rem;
        }

        .empty-state h4 {
            color: var(--text-primary);
            margin-bottom: 0.5rem;
        }

        .empty-state p {
            color: var(--text-secondary);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .activity-card {
                flex-wrap: wrap;
            }

            .activity-price {
                width: 100%;
                text-align: left;
                margin-top: 1rem;
                padding-left: 76px;
            }

            .activity-nft {
                order: -1;
            }
        }
         /* Main Content */
    .main {
        padding: 80px 0px 80px 0px;
        min-height: calc(100vh - 300px);
    }

    /* Breadcrumb */
    .breadcrumb {
        background: transparent;
        padding: 1.5rem 0;
        margin: 0;
        list-style: none;
        display: flex;
        gap: 0.5rem;
        align-items: center;
    }

    .breadcrumb__item {
        color: var(--text-secondary);
        font-size: 0.9rem;
    }

    .breadcrumb__item a {
        color: var(--text-secondary);
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .breadcrumb__item a:hover {
        color: var(--accent-purple);
    }

    .breadcrumb__item--active {
        color: var(--text-primary);
    }

    .breadcrumb__item:not(:last-child)::after {
        content: '/';
        margin-left: 0.5rem;
        color: var(--text-secondary);
    }

    /* Page Title */
    .main__title--page {
        padding: 2rem 0;
    }

    .main__title--page h2 {
        font-size: 2.5rem;
        background: linear-gradient(135deg, #fff 0%, #c4b5fd 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    /* Contact Form */
    .sign__form--contacts {
        background: var(--card-bg);
        border: 1px solid var(--border-color);
        border-radius: 20px;
        padding: 2.5rem;
    }

    .sign__group {
        margin-bottom: 1rem;
    }

    .sign__input {
        width: 100%;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid var(--border-color);
        border-radius: 12px;
        padding: 1rem 1.25rem;
        color: var(--text-primary);
        font-size: 1rem;
        transition: all 0.3s ease;
    }

    .sign__input::placeholder {
        color: var(--text-secondary);
    }

    .sign__input:focus {
        outline: none;
        border-color: var(--accent-purple);
        background: rgba(139, 92, 246, 0.05);
    }

    .sign__textarea {
        width: 100%;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid var(--border-color);
        border-radius: 12px;
        padding: 1rem 1.25rem;
        color: var(--text-primary);
        font-size: 1rem;
        min-height: 150px;
        resize: vertical;
        transition: all 0.3s ease;
        font-family: 'Inter', sans-serif;
    }

    .sign__textarea::placeholder {
        color: var(--text-secondary);
    }

    .sign__textarea:focus {
        outline: none;
        border-color: var(--accent-purple);
        background: rgba(139, 92, 246, 0.05);
    }

    .sign__btn {
        width: 100%;
        padding: 1rem 2rem;
        background: var(--primary-gradient);
        border: none;
        border-radius: 12px;
        color: white;
        font-weight: 600;
        font-size: 1rem;
        cursor: pointer;
        transition: all 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .sign__btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
    }

    /* Sidebar */
    .main__title--sidebar {
        margin-bottom: 2rem;
    }

    .main__title--sidebar h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        color: var(--text-primary);
    }

    .main__title--sidebar p {
        color: var(--text-secondary);
        line-height: 1.7;
        font-size: 0.95rem;
    }

    .contacts__list {
        list-style: none;
        padding: 0;
        margin: 0 0 2rem 0;
    }

    .contacts__list li {
        margin-bottom: 1rem;
    }

    .contacts__list a {
        color: var(--text-secondary);
        text-decoration: none;
        font-size: 1rem;
        display: flex;
        align-items: center;
        gap: 0.75rem;
        transition: all 0.3s ease;
    }

    .contacts__list a:hover {
        color: var(--accent-cyan);
    }

    .contacts__list a::before {
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        color: var(--accent-purple);
    }

    .contacts__list li:nth-child(1) a::before {
        content: '\f095';
    }

    .contacts__list li:nth-child(2) a::before {
        content: '\f0e0';
    }

    .contacts__list li:nth-child(3) a::before {
        content: '\f3c5';
    }

    /* Social Links */
    .contacts__social {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .contacts__social a {
        width: 50px;
        height: 50px;
        background: var(--card-bg);
        border: 1px solid var(--border-color);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

    .contacts__social a:hover {
        border-color: var(--accent-purple);
        background: rgba(139, 92, 246, 0.1);
        transform: translateY(-3px);
    }

    .contacts__social svg {
        width: 20px;
        height: 20px;
        fill: var(--text-secondary);
        transition: fill 0.3s ease;
    }

    .contacts__social a:hover svg {
        fill: var(--accent-purple);
    }

    /* ============================================
   FAQ PAGE STYLES
   ============================================ */

/* Main Layout Adjustments */
.main--faq {
    padding-top: 100px;
    padding-bottom: 4rem;
}

/* Page Header */
.main__title--page {
    padding: 2rem 0 3rem;
}

.main__title--page h2 {
    font-size: 2.75rem;
    background: linear-gradient(135deg, #fff 0%, #c4b5fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
}

.main__title--page p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
}

.main__title--page p a {
    color: var(--accent-cyan);
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
}

.main__title--page p a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-cyan);
    transition: width 0.3s ease;
}

.main__title--page p a:hover::after {
    width: 100%;
}

/* Knowledge Base Cards */
.knowledge {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 2rem;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.knowledge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.knowledge:hover {
    transform: translateY(-8px);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.knowledge:hover::before {
    transform: scaleX(1);
}

.knowledge__title {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
}

.knowledge__title svg {
    width: 28px;
    height: 28px;
    fill: var(--accent-purple);
    flex-shrink: 0;
}

/* Knowledge List */
.knowledge__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.knowledge__list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.875rem 0;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.knowledge__list li:last-child {
    border-bottom: none;
}

.knowledge__list li:hover {
    padding-left: 8px;
}

.knowledge__list a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.knowledge__list a::before {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.7rem;
    color: var(--accent-purple);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.knowledge__list li:hover a {
    color: var(--text-primary);
}

.knowledge__list li:hover a::before {
    opacity: 1;
    transform: translateX(0);
}

.knowledge__list span {
    background: rgba(139, 92, 246, 0.1);
    color: var(--accent-purple);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    min-width: 30px;
    text-align: center;
}

/* FAQ Section */
.faq {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.faq::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20px;
    bottom: 20px;
    width: 3px;
    background: var(--primary-gradient);
    border-radius: 0 3px 3px 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq:hover {
    border-color: rgba(139, 92, 246, 0.3);
    transform: translateX(5px);
}

.faq:hover::before {
    opacity: 1;
}

.faq__title {
    font-size: 1.15rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.faq__title::before {
    content: 'Q:';
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.faq__text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    padding-left: 1.75rem;
}

.faq__text:last-child {
    margin-bottom: 0;
}

/* FAQ Accordion Style (Alternative) */
.faq-accordion {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-accordion__header {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-accordion__header:hover {
    background: rgba(139, 92, 246, 0.05);
}

.faq-accordion__header h3 {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin: 0;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
}

.faq-accordion__icon {
    width: 32px;
    height: 32px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-accordion__icon i {
    color: var(--accent-purple);
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.faq-accordion.active .faq-accordion__icon {
    background: var(--primary-gradient);
    border-color: transparent;
}

.faq-accordion.active .faq-accordion__icon i {
    color: white;
    transform: rotate(180deg);
}

.faq-accordion__body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-accordion.active .faq-accordion__body {
    max-height: 500px;
    padding: 0 2rem 1.5rem;
}

.faq-accordion__body p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.faq-accordion__body p:last-child {
    margin-bottom: 0;
}

/* Search Box for FAQ */
.faq-search {
    position: relative;
    margin-bottom: 3rem;
}

.faq-search__input {
    width: 100%;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    padding: 1.25rem 1.5rem 1.25rem 3.5rem;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.faq-search__input::placeholder {
    color: var(--text-secondary);
}

.faq-search__input:focus {
    outline: none;
    border-color: var(--accent-purple);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.faq-search__icon {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Category Tags */
.category-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 3rem;
}

.category-tag {
    padding: 0.6rem 1.25rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.category-tag:hover,
.category-tag.active {
    background: var(--primary-gradient);
    border-color: transparent;
    color: white;
}

/* Contact CTA Section */
.faq-cta {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
    margin-top: 4rem;
}

.faq-cta__title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.faq-cta__text {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.faq-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--primary-gradient);
    border-radius: 12px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.faq-cta__btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
    color: white;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .main--faq {
        padding-top: 90px;
    }

    .main__title--page h2 {
        font-size: 2.25rem;
    }

    .knowledge {
        margin-bottom: 1.5rem;
    }

    .faq-cta {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .main__title--page h2 {
        font-size: 1.875rem;
    }

    .knowledge {
        padding: 1.5rem;
    }

    .faq {
        padding: 1.5rem;
    }

    .faq__title {
        font-size: 1.05rem;
    }

    .faq-accordion__header {
        padding: 1.25rem;
    }

    .faq-accordion__header h3 {
        font-size: 1rem;
        padding-right: 1rem;
    }

    .faq-accordion.active .faq-accordion__body {
        padding: 0 1.25rem 1.25rem;
    }
}

/* Animation for FAQ items */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq {
    animation: fadeInUp 0.5s ease forwards;
}

.faq:nth-child(1) { animation-delay: 0.1s; }
.faq:nth-child(2) { animation-delay: 0.2s; }
.faq:nth-child(3) { animation-delay: 0.3s; }
.faq:nth-child(4) { animation-delay: 0.4s; }
.faq:nth-child(5) { animation-delay: 0.5s; }
.faq:nth-child(6) { animation-delay: 0.6s; }
.faq:nth-child(7) { animation-delay: 0.7s; }
.faq:nth-child(8) { animation-delay: 0.8s; }
.faq:nth-child(9) { animation-delay: 0.9s; }

/* ============================================
   404 ERROR PAGE STYLES
   ============================================ */

/* Breadcrumb specific for 404 */
.breadcrumb__item--active {
    color: var(--text-primary);
}

/* 404 Page Container */
.page-404 {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    padding: 4rem 0;
}

.page-404__wrap {
    text-align: center;
    position: relative;
}

/* 404 Content */
.page-404__content {
    position: relative;
    z-index: 2;
}

/* 404 Title */
.page-404__title {
    font-size: clamp(8rem, 20vw, 15rem);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 1rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Space Grotesk', sans-serif;
    position: relative;
    display: inline-block;
}

/* Glitch effect on hover */
.page-404__title::before,
.page-404__title::after {
    content: '404';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
}

.page-404__wrap:hover .page-404__title::before {
    animation: glitch-1 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) both infinite;
    color: var(--accent-pink);
    opacity: 0.8;
}

.page-404__wrap:hover .page-404__title::after {
    animation: glitch-2 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) reverse both infinite;
    color: var(--accent-cyan);
    opacity: 0.8;
}

@keyframes glitch-1 {
    0% {
        transform: translate(0);
    }
    20% {
        transform: translate(-3px, 3px);
    }
    40% {
        transform: translate(-3px, -3px);
    }
    60% {
        transform: translate(3px, 3px);
    }
    80% {
        transform: translate(3px, -3px);
    }
    100% {
        transform: translate(0);
    }
}

@keyframes glitch-2 {
    0% {
        transform: translate(0);
    }
    20% {
        transform: translate(3px, -3px);
    }
    40% {
        transform: translate(3px, 3px);
    }
    60% {
        transform: translate(-3px, -3px);
    }
    80% {
        transform: translate(-3px, 3px);
    }
    100% {
        transform: translate(0);
    }
}

/* 404 Text */
.page-404__text {
    color: var(--text-secondary);
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

/* 404 Button */
.page-404__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: var(--primary-gradient);
    border-radius: 12px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-404__btn::before {
    content: '\f060';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.875rem;
}

.page-404__btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
    color: white;
}

/* Background decorative elements */
.page-404__wrap::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

/* Responsive */
@media (max-width: 768px) {
    .page-404 {
        min-height: 50vh;
        padding: 3rem 0;
    }

    .page-404__text {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .page-404__btn {
        padding: 0.875rem 2rem;
    }
}

/* ============================================
   ABOUT PAGE STYLES
   ============================================ */

/* Stats */
.about-stat {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.about-stat:hover {
    border-color: rgba(139, 92, 246, 0.3);
    transform: translateY(-5px);
}

.about-stat__value {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Space Grotesk', sans-serif;
    margin-bottom: 0.5rem;
}

.about-stat__label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Mission Section */
.about-mission {
    padding: 4rem 0;
}

.about-mission__image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

.about-mission__image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--primary-gradient);
    opacity: 0.2;
    z-index: 1;
}

.about-mission__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
}

.about-mission__content {
    padding: 2rem;
}

.about-mission__title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.about-mission__text {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-mission__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-cyan);
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    transition: gap 0.3s ease;
}

.about-mission__link:hover {
    gap: 1rem;
}

/* Section Title */
.about-section-title {
    font-size: 1.75rem;
    margin: 3rem 0 2rem;
    color: var(--text-primary);
    text-align: center;
}

/* Features */
.about-feature {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.about-feature:hover {
    border-color: rgba(139, 92, 246, 0.3);
    transform: translateY(-8px);
}

.about-feature__icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.75rem;
    color: white;
}

.about-feature__icon--purple {
    background: var(--primary-gradient);
}

.about-feature__icon--pink {
    background: var(--secondary-gradient);
}

.about-feature__icon--cyan {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
}

.about-feature__title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.about-feature__text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Team Cards */
.team-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.team-card:hover {
    border-color: rgba(139, 92, 246, 0.3);
    transform: translateY(-5px);
}

.team-card__image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 3px solid var(--border-color);
    transition: border-color 0.3s ease;
}

.team-card:hover .team-card__image {
    border-color: var(--accent-purple);
}

.team-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card__name {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.team-card__role {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.team-card__social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.team-card__social a {
    color: var(--text-secondary);
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.team-card__social a:hover {
    color: var(--accent-purple);
}

/* CTA Section */
.about-cta {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 4rem 2rem;
    text-align: center;
    margin-top: 3rem;
}

.about-cta__title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.about-cta__text {
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto 2rem;
}

.about-cta__buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.about-cta__btn {
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.about-cta__btn--primary {
    background: var(--primary-gradient);
    color: white;
}

.about-cta__btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
    color: white;
}

.about-cta__btn:not(.about-cta__btn--primary) {
    background: transparent;
    border: 2px solid var(--border-color);
    color: var(--text-primary);
}

.about-cta__btn:not(.about-cta__btn--primary):hover {
    border-color: var(--accent-purple);
    background: rgba(139, 92, 246, 0.1);
    color: var(--text-primary);
}

/* Responsive */
@media (max-width: 768px) {
    .about-mission__content {
        padding: 2rem 0;
    }

    .about-mission__title {
        font-size: 1.5rem;
    }

    .about-cta {
        padding: 3rem 1.5rem;
    }

    .about-cta__title {
        font-size: 1.5rem;
    }
}

/* ============================================
   SIGN UP PAGE STYLES
   ============================================ */

/* Sign Container */
.sign {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 200px);
    padding: 3rem 0;
}

.sign__content {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 3rem;
    width: 100%;
    max-width: 460px;
    position: relative;
}

/* Logo */
.sign__logo {
    display: block;
    text-align: center;
    margin-bottom: 1.5rem;
}

.sign__logo img {
    height: 50px;
    width: auto;
}

/* Form */
.sign__form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.sign__group {
    position: relative;
}

.sign__input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.sign__input::placeholder {
    color: var(--text-secondary);
}

.sign__input:focus {
    outline: none;
    border-color: var(--accent-purple);
    background: rgba(139, 92, 246, 0.05);
}

/* Checkbox */
.sign__group--checkbox {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0.5rem 0;
}

.sign__group--checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--accent-purple);
    cursor: pointer;
}

.sign__group--checkbox label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    cursor: pointer;
}

.sign__group--checkbox label a {
    color: var(--accent-cyan);
    text-decoration: none;
}

.sign__group--checkbox label a:hover {
    text-decoration: underline;
}

/* Button */
.sign__btn {
    width: 100%;
    padding: 1rem;
    background: var(--primary-gradient);
    border: none;
    border-radius: 12px;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sign__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

/* Delimiter */
.sign__delimiter {
    display: block;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    position: relative;
    margin: 0.5rem 0;
}

.sign__delimiter::before,
.sign__delimiter::after {
    content: '';
    position: absolute;
    top: 50%;
    width: calc(50% - 30px);
    height: 1px;
    background: var(--border-color);
}

.sign__delimiter::before {
    left: 0;
}

.sign__delimiter::after {
    right: 0;
}

/* Text Link */
.sign__text {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.sign__text a {
    color: var(--accent-purple);
    text-decoration: none;
    font-weight: 600;
}

.sign__text a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 576px) {
    .sign__content {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }

    .sign__logo img {
        height: 40px;
    }
}

.footer-logo{
    width: 50%;
}

    @media (max-width: 768px) {
        .stats-row {
            grid-template-columns: repeat(2, 1fr);
        }
                .toast {
            min-width: calc(100vw - 2rem);
            max-width: calc(100vw - 2rem);
            right: 1rem;
            left: 1rem;
        }

        .toast-container {
            right: 0;
            left: 0;
            align-items: center;
        }
    }
        /* Toast Notifications */
    .toast-container {
        position: fixed;
        top: 100px;
        right: 20px;
        z-index: 10000;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .toast {
        background: var(--card-bg);
        backdrop-filter: blur(10px);
        border: 1px solid var(--border-color);
        border-radius: 12px;
        padding: 1rem 1.5rem;
        display: flex;
        align-items: center;
        gap: 0.75rem;
        animation: slideIn 0.3s ease;
        min-width: 300px;
    }

    @keyframes slideIn {
        from {
            transform: translateX(100%);
            opacity: 0;
        }

        to {
            transform: translateX(0);
            opacity: 1;
        }
    }

    .toast-icon {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.1rem;
    }

    .toast.success .toast-icon {
        background: rgba(16, 185, 129, 0.1);
        color: var(--accent-green);
    }

    .toast.error .toast-icon {
        background: rgba(239, 68, 68, 0.1);
        color: var(--accent-red);
    }

    .toast.info .toast-icon {
        background: rgba(6, 182, 212, 0.1);
        color: var(--accent-cyan);
    }

    .toast-content {
        flex: 1;
    }

    .toast-title {
        font-weight: 600;
        margin-bottom: 0.25rem;
    }

    .toast-message {
        font-size: 0.85rem;
        color: var(--text-secondary);
    }
