        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -webkit-tap-highlight-color: transparent;
        }

        :root {
            --primary: #0f172a;
            --secondary: #1e3a8a;
            --accent: #7c3aed;
            --highlight: #10b981;
            --dark-bg: #0a0e27;
            --dark-card: #111827;
            --dark-border: #1e293b;
            --light-bg: #f8fafc;
            --light-card: #ffffff;
            --light-text: #0f172a;
            --light-muted: #64748b;
            --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            --delay-short: 0.2s;
            --delay-med: 0.4s;
            --delay-long: 0.6s;
        }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 80px;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
            color: var(--light-text);
            background-color: var(--light-bg);
            transition: var(--transition);
            overflow-x: hidden;
        }

        body.dark-mode {
            background-color: var(--dark-bg);
            color: #e2e8f0;
        }

        /* Animated Background */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 20% 50%, rgba(124, 58, 237, 0.1) 0%, transparent 50%),
                        radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
            pointer-events: none;
            z-index: -1;
            animation: bgShift 15s ease-in-out infinite;
        }

        @keyframes bgShift {
            0%, 100% { transform: translate(0, 0); }
            50% { transform: translate(30px, 30px); }
        }

        /* Navbar */
        nav {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(226, 232, 240, 0.3);
            transition: var(--transition);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
        }

        body.dark-mode nav {
            background: rgba(15, 23, 42, 0.8);
            border-bottom-color: rgba(30, 41, 59, 0.5);
        }

        nav .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 1.5rem;
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
        }

        nav .logo {
            font-size: clamp(1.25rem, 3vw, 1.75rem);
            font-weight: 800;
            background: linear-gradient(135deg, #1e3a8a 0%, #7c3aed 50%, #10b981 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            letter-spacing: -0.02em;
        }

        nav .nav-links {
            display: flex;
            gap: 0.5rem;
            list-style: none;
            align-items: center;
            flex-wrap: wrap;
            justify-content: flex-end;
        }

        nav .nav-links a {
            text-decoration: none;
            color: var(--light-text);
            font-weight: 500;
            padding: 0.5rem 1rem;
            transition: var(--transition);
            cursor: pointer;
            border-radius: 6px;
            position: relative;
            font-size: clamp(0.85rem, 2vw, 0.95rem);
        }

        body.dark-mode nav .nav-links a {
            color: #e2e8f0;
        }

        nav .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 1rem;
            width: calc(100% - 2rem);
            height: 2px;
            background: linear-gradient(90deg, #7c3aed, #10b981);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.4s ease;
        }

        nav .nav-links a:hover::after {
            transform: scaleX(1);
            transform-origin: left;
        }

        .theme-toggle {
            background: none;
            border: none;
            cursor: pointer;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            transition: var(--transition);
            padding: 0.5rem;
            margin: 0 0.5rem;
            position: relative;
        }

        .theme-toggle:hover {
            transform: rotate(20deg) scale(1.1);
        }

        .btn-primary {
            background: linear-gradient(135deg, #1e3a8a 0%, #7c3aed 100%);
            color: white;
            padding: clamp(0.6rem, 2vw, 0.85rem) clamp(1rem, 3vw, 1.5rem);
            border: none;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: 0 4px 20px rgba(126, 58, 237, 0.3);
            position: relative;
            overflow: hidden;
            font-size: clamp(0.85rem, 2vw, 0.95rem);
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .btn-primary:hover::before {
            width: 300px;
            height: 300px;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(126, 58, 237, 0.5);
        }

        .btn-primary:active {
            transform: translateY(-1px);
        }

        .btn-secondary {
            background: transparent;
            color: var(--accent);
            padding: clamp(0.6rem, 2vw, 0.85rem) clamp(1rem, 3vw, 1.5rem);
            border: 2px solid var(--accent);
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            font-size: clamp(0.85rem, 2vw, 0.95rem);
        }

        .btn-secondary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--accent);
            transition: left 0.4s ease;
            z-index: -1;
        }

        .btn-secondary:hover::before {
            left: 0;
        }

        .btn-secondary:hover {
            color: white;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 1.5rem;
            width: 100%;
        }

        /* Hero Section */
        .hero {
            padding: clamp(3rem, 8vw, 8rem) 1.5rem;
            background: linear-gradient(135deg, rgba(30, 58, 138, 0.05) 0%, rgba(124, 58, 237, 0.05) 100%);
            text-align: center;
            overflow: hidden;
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero::before {
            content: '';
            position: absolute;
            width: clamp(300px, 80vw, 500px);
            height: clamp(300px, 80vw, 500px);
           background: radial-gradient(circle, #7c3aed 0%, #000000 70%);
            border-radius: 50%;
            top: -100px;
            right: -100px;
            animation: float 8s ease-in-out infinite;
        }

        .hero::after {
            content: '';
            position: absolute;
            width: clamp(250px, 60vw, 400px);
            height: clamp(250px, 60vw, 400px);
           background: radial-gradient(circle, rgb(25 133 97) 0%, #000000 70%);
            border-radius: 50%;
            bottom: -50px;
            left: -50px;
            animation: float 10s ease-in-out infinite 1s;
        }

        body.dark-mode .hero {
            background: linear-gradient(135deg, rgba(30, 58, 138, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) translateX(0px); }
            25% { transform: translateY(-30px) translateX(20px); }
            50% { transform: translateY(0px) translateX(0px); }
            75% { transform: translateY(30px) translateX(-20px); }
        }

        .hero .content {
            position: relative;
            z-index: 1;
            max-width: 900px;
            margin: 0 auto;
            animation: slideUp 1s ease-out;
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero h1 {
            font-size: clamp(1.75rem, 6vw, 4rem);
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, #1e3a8a 0%, #7c3aed 50%, #10b981 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 900;
            line-height: 1.1;
            letter-spacing: -0.02em;
        }

        .hero p {
            font-size: clamp(0.95rem, 3vw, 1.25rem);
            color: var(--light-muted);
            margin-bottom: 2rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.7;
        }

        body.dark-mode .hero p {
            color: #94a3b8;
        }

        .hero .buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 2rem;
        }

        /* Animated Stats */
        .token-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin-top: 4rem;
        }

        .stat-card {
            background: var(--light-card);
            padding: 1.5rem;
            border-radius: 16px;
            border: 1px solid rgba(226, 232, 240, 0.5);
            text-align: center;
            transition: var(--transition);
            cursor: pointer;
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(10px);
        }

        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(16, 185, 129, 0.1));
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .stat-card:hover::before {
            opacity: 1;
        }

        body.dark-mode .stat-card {
            background: rgba(17, 24, 39, 0.8);
            border-color: rgba(30, 41, 59, 0.5);
        }

        .stat-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 40px rgba(126, 58, 237, 0.2);
        }

        .stat-card .value {
            font-size: clamp(1.5rem, 4vw, 2.5rem);
            font-weight: 900;
            background: linear-gradient(135deg, #1e3a8a, #7c3aed);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
            z-index: 1;
        }

        .stat-card .label {
            color: var(--light-muted);
            margin-top: 0.5rem;
            font-size: 0.9rem;
            position: relative;
            z-index: 1;
        }

        body.dark-mode .stat-card .label {
            color: #94a3b8;
        }

        /* Sections */
        section {
            padding: clamp(3rem, 8vw, 6rem) 1.5rem;
        }

        section h2 {
            font-size: clamp(1.75rem, 5vw, 3rem);
            margin-bottom: 1rem;
            text-align: center;
            background: linear-gradient(135deg, #1e3a8a, #7c3aed);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 900;
        }

        section .subtitle {
            text-align: center;
            color: var(--light-muted);
            margin-bottom: 3rem;
            font-size: clamp(1rem, 2.5vw, 1.15rem);
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        body.dark-mode section .subtitle {
            color: #94a3b8;
        }

        /* Staking Section */
        .staking {
            background: linear-gradient(135deg, rgba(30, 58, 138, 0.05) 0%, rgba(124, 58, 237, 0.05) 100%);
        }

        body.dark-mode .staking {
            background: linear-gradient(135deg, rgba(30, 58, 138, 0.08) 0%, rgba(124, 58, 237, 0.08) 100%);
        }

        .staking-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .staking-plan {
            background: var(--light-card);
            padding: clamp(1.5rem, 4vw, 2.5rem);
            border-radius: 20px;
            border: 2px solid rgba(226, 232, 240, 0.5);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(10px);
        }

        body.dark-mode .staking-plan {
            background: rgba(17, 24, 39, 0.8);
            border-color: rgba(30, 41, 59, 0.5);
        }

        .staking-plan::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #1e3a8a, #7c3aed, #10b981);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .staking-plan:hover::before {
            transform: scaleX(1);
        }

        .staking-plan:hover {
            border-color: var(--accent);
            transform: translateY(-15px);
            box-shadow: 0 30px 60px rgba(124, 58, 237, 0.25);
        }

        .staking-plan .badge {
            display: inline-block;
            background: linear-gradient(135deg, #1e3a8a, #7c3aed);
            color: white;
            padding: 0.4rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 700;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .staking-plan h3 {
            font-size: clamp(1.25rem, 3vw, 1.5rem);
            margin-bottom: 0.5rem;
            font-weight: 700;
        }

        .staking-plan .apy {
            font-size: clamp(2rem, 4vw, 2.8rem);
            font-weight: 900;
            background: linear-gradient(135deg, #1e3a8a, #7c3aed);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin: 1rem 0;
        }

        .staking-plan .description {
            color: var(--light-muted);
            margin: 1rem 0;
            font-size: 0.95rem;
        }

        body.dark-mode .staking-plan .description {
            color: #94a3b8;
        }

        .staking-plan ul {
            list-style: none;
            margin: 1.5rem 0;
        }

        .staking-plan li {
            padding: 0.5rem 0;
            color: var(--light-muted);
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-size: 0.95rem;
        }

        body.dark-mode .staking-plan li {
            color: #94a3b8;
        }

        .staking-plan li::before {
            content: '✓';
            color: var(--highlight);
            font-weight: 900;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        /* Features Grid */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .feature-card {
            background: var(--light-card);
            padding: clamp(1.5rem, 4vw, 2.25rem);
            border-radius: 16px;
            border: 1px solid rgba(226, 232, 240, 0.5);
            transition: var(--transition);
            text-align: center;
            position: relative;
            overflow: hidden;
            cursor: pointer;
            backdrop-filter: blur(10px);
        }

        body.dark-mode .feature-card {
            background: rgba(17, 24, 39, 0.8);
            border-color: rgba(30, 41, 59, 0.5);
        }

        .feature-card::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, transparent 70%);
            opacity: 0;
            transition: opacity 0.6s ease;
        }

        .feature-card:hover::after {
            opacity: 1;
            animation: shine 1s ease;
        }

        @keyframes shine {
            0% { transform: translate(-100%, -100%); }
            100% { transform: translate(0, 0); }
        }

        .feature-card:hover {
            transform: translateY(-8px);
            border-color: var(--accent);
            box-shadow: 0 15px 40px rgba(124, 58, 237, 0.15);
        }

        .feature-card .icon {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            height: auto;
            position: relative;
            z-index: 1;
        }

        .feature-card h3 {
            margin-bottom: 1rem;
            font-size: clamp(1.1rem, 2.5vw, 1.3rem);
            font-weight: 700;
            position: relative;
            z-index: 1;
        }

        .feature-card p {
            color: var(--light-muted);
            line-height: 1.6;
            font-size: 0.95rem;
            position: relative;
            z-index: 1;
        }

        body.dark-mode .feature-card p {
            color: #94a3b8;
        }

        /* Roadmap */
        .roadmap {
            background: linear-gradient(135deg, rgba(30, 58, 138, 0.05) 0%, rgba(124, 58, 237, 0.05) 100%);
        }

        body.dark-mode .roadmap {
            background: linear-gradient(135deg, rgba(30, 58, 138, 0.08) 0%, rgba(124, 58, 237, 0.08) 100%);
        }

        .roadmap-timeline {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
            position: relative;
        }

        .roadmap-timeline::before {
            content: '';
            position: absolute;
            top: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 90%;
            max-width: 1000px;
            height: 2px;
            background: linear-gradient(90deg, transparent, #7c3aed, transparent);
            display: none;
        }

        @media (min-width: 1024px) {
            .roadmap-timeline::before {
                display: block;
            }
        }

        .roadmap-item {
            background: var(--light-card);
            padding: 1.75rem;
            border-radius: 16px;
            border-left: 4px solid var(--accent);
            transition: var(--transition);
            position: relative;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(226, 232, 240, 0.5);
            border-left: 4px solid var(--accent);
        }

        body.dark-mode .roadmap-item {
            background: rgba(17, 24, 39, 0.8);
            border-color: rgba(30, 41, 59, 0.5);
        }

        .roadmap-item:hover {
            transform: translateX(8px) translateY(-5px);
            box-shadow: 0 15px 40px rgba(124, 58, 237, 0.2);
        }

        .roadmap-item .quarter {
            color: var(--accent);
            font-weight: 800;
            margin-bottom: 0.75rem;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

        .roadmap-item h4 {
            margin-bottom: 1rem;
            font-size: clamp(1.1rem, 2.5vw, 1.3rem);
            font-weight: 700;
        }

        .roadmap-item ul {
            list-style: none;
        }

        .roadmap-item li {
            color: var(--light-muted);
            margin: 0.6rem 0;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.9rem;
        }

        body.dark-mode .roadmap-item li {
            color: #94a3b8;
        }

        .roadmap-item li::before {
            content: '→';
            color: var(--highlight);
            font-weight: 900;
            flex-shrink: 0;
        }

        /* Team */
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .team-member {
            background: var(--light-card);
            padding: 1.75rem;
            border-radius: 16px;
            border: 1px solid rgba(226, 232, 240, 0.5);
            text-align: center;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            cursor: pointer;
            backdrop-filter: blur(10px);
        }

        body.dark-mode .team-member {
            background: rgba(17, 24, 39, 0.8);
            border-color: rgba(30, 41, 59, 0.5);
        }

        .team-member::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(16, 185, 129, 0.1));
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .team-member:hover::before {
            opacity: 1;
        }

        .team-member:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(124, 58, 237, 0.25);
        }

        .team-member .avatar {
            width: clamp(80px, 15vw, 100px);
            height: clamp(80px, 15vw, 100px);
            margin: 0 auto 1.5rem;
            border-radius: 50%;
            background: linear-gradient(135deg, #1e3a8a, #7c3aed);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 900;
            font-size: clamp(2rem, 4vw, 2.8rem);
            position: relative;
            z-index: 1;
            box-shadow: 0 10px 30px rgba(126, 58, 237, 0.3);
        }

        .team-member h4 {
            margin-bottom: 0.3rem;
            font-size: clamp(1.1rem, 2.5vw, 1.3rem);
            font-weight: 700;
            position: relative;
            z-index: 1;
        }

        .team-member .role {
            color: var(--accent);
            font-weight: 700;
            margin-bottom: 0.75rem;
            font-size: 0.9rem;
            position: relative;
            z-index: 1;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .team-member p {
            color: var(--light-muted);
            font-size: 0.9rem;
            line-height: 1.5;
            position: relative;
            z-index: 1;
        }

        body.dark-mode .team-member p {
            color: #94a3b8;
        }

        /* Partners */
        .partners-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 1.5rem;
            margin-top: 3rem;
        }

        .partner-logo {
            background: var(--light-card);
            padding: 1.5rem;
            border-radius: 12px;
            border: 1px solid rgba(226, 232, 240, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 100px;
            font-weight: 600;
            color: var(--light-muted);
            transition: var(--transition);
            text-align: center;
            cursor: pointer;
            backdrop-filter: blur(10px);
            position: relative;
            overflow: hidden;
        }

        body.dark-mode .partner-logo {
            background: rgba(17, 24, 39, 0.8);
               border-color: rgb(40 102 204);

            color: #94a3b8;
        }

        .partner-logo::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(124, 58, 237, 0.15), transparent);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .partner-logo:hover::before {
            opacity: 1;
            animation: pulse 1s ease;
        }

        @keyframes pulse {
            0% { transform: scale(0.8); opacity: 1; }
            100% { transform: scale(1.2); opacity: 0; }
        }

        .partner-logo:hover {
            transform: scale(1.08);
            border-color: var(--accent);
            box-shadow: 0 10px 30px rgba(124, 58, 237, 0.2);
        }

        /* Contact */
        .contact {
            background: linear-gradient(135deg, rgba(30, 58, 138, 0.05) 0%, rgba(124, 58, 237, 0.05) 100%);
            text-align: center;
        }

        body.dark-mode .contact {
            background: linear-gradient(135deg, rgba(30, 58, 138, 0.08) 0%, rgba(124, 58, 237, 0.08) 100%);
        }

        .contact-form {
            max-width: 600px;
            margin: 3rem auto;
            background: var(--light-card);
            padding: clamp(1.5rem, 4vw, 2.5rem);
            border-radius: 20px;
            border: 1px solid rgba(226, 232, 240, 0.5);
            backdrop-filter: blur(10px);
        }

        body.dark-mode .contact-form {
            background: rgba(17, 24, 39, 0.8);
            border-color: rgba(30, 41, 59, 0.5);
        }

        .form-group {
            margin-bottom: 1.5rem;
            text-align: left;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            font-size: 0.95rem;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.75rem;
            border: 1px solid rgba(226, 232, 240, 0.5);
            border-radius: 10px;
            font-family: inherit;
            font-size: 1rem;
            background: var(--light-bg);
            color: var(--light-text);
            transition: var(--transition);
            backdrop-filter: blur(10px);
        }

        body.dark-mode .form-group input,
        body.dark-mode .form-group textarea {
            background: rgba(30, 41, 59, 0.5);
            border-color: rgba(30, 41, 59, 0.8);
            color: #e2e8f0;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.2);
        }

        /* Footer */
        footer {
            background: var(--dark-bg);
            color: #e2e8f0;
            padding: 3rem 1.5rem;
            border-top: 1px solid rgba(30, 41, 59, 0.8);
        }

        footer .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 2rem;
            max-width: 1400px;
            margin: 0 auto;
            margin-bottom: 2rem;
        }

        footer h4 {
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #1e3a8a, #7c3aed);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 700;
            font-size: clamp(1.1rem, 2.5vw, 1.3rem);
        }

        footer ul {
            list-style: none;
        }

        footer a {
            color: #94a3b8;
            text-decoration: none;
            transition: var(--transition);
            display: block;
            margin: 0.6rem 0;
            font-size: 0.95rem;
        }

        footer a:hover {
            color: var(--highlight);
            transform: translateX(4px);
        }

        footer .footer-bottom {
            border-top: 1px solid rgba(30, 41, 59, 0.8);
            padding-top: 2rem;
            text-align: center;
            color: #64748b;
            font-size: 0.9rem;
        }

        footer .social-links {
            display: flex;
            gap: 1rem;
            justify-content: center;
            margin: 1rem 0;
            flex-wrap: wrap;
        }

        footer .social-links a {
            display: inline-flex;
            width: 45px;
            height: 45px;
            align-items: center;
            justify-content: center;
            background: rgba(124, 58, 237, 0.1);
            border-radius: 50%;
            margin: 0;
            font-size: 1.3rem;
            border: 1px solid rgba(124, 58, 237, 0.2);
            transition: var(--transition);
        }

        footer .social-links a:hover {
            background: rgba(124, 58, 237, 0.3);
            color: var(--accent);
            transform: translateY(-5px) scale(1.1);
            border-color: var(--accent);
        }

        /* Animations */
        .fade-in {
            animation: fadeInUp 0.8s ease-out forwards;
            opacity: 0;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .scroll-reveal {
            animation: slideFromLeft 0.8s ease-out forwards;
            opacity: 0;
        }

        @keyframes slideFromLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Chart Container */
        .chart-container {
           /* background: var(--light-card);
            padding: clamp(1.5rem, 4vw, 2rem);*/
            border-radius: 20px;
            border: 1px solid rgba(226, 232, 240, 0.5);
            margin-top: 2rem;
            backdrop-filter: blur(10px);
        }

        body.dark-mode .chart-container {
            background: rgba(17, 24, 39, 0.8);
            border-color: rgba(30, 41, 59, 0.5);
        }

        .chart-container h3 {
            margin-bottom: 1.5rem;
            font-size: clamp(1.2rem, 3vw, 1.4rem);
            font-weight: 700;
        }

        .price-display {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 1rem;
            margin: 2rem 0;
        }

        .price-item {
            background: var(--light-bg);
            padding: 1rem;
            border-radius: 12px;
            text-align: center;
            transition: var(--transition);
            cursor: pointer;
            border: 1px solid rgba(226, 232, 240, 0.3);
        }

        body.dark-mode .price-item {
            background: rgba(30, 41, 59, 0.5);
            border-color: rgba(30, 41, 59, 0.8);
        }

        .price-item:hover {
            transform: translateY(-4px);
            border-color: var(--accent);
            box-shadow: 0 8px 20px rgba(124, 58, 237, 0.15);
        }

        .price-label {
            color: var(--light-muted);
            font-size: 0.85rem;
            margin-bottom: 0.4rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        body.dark-mode .price-label {
            color: #94a3b8;
        }

        .price-value {
            font-size: clamp(1.2rem, 3vw, 1.5rem);
            font-weight: 900;
            background: linear-gradient(135deg, #1e3a8a, #7c3aed);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .price-change {
            font-size: 0.85rem;
            margin-top: 0.4rem;
            font-weight: 600;
        }

        .price-change.positive {
            color: var(--highlight);
        }

        .price-change.negative {
            color: #ef4444;
        }

        /* Mobile Optimization */
        @media (max-width: 768px) {
            nav .container {
                flex-direction: column;
                gap: 1rem;
				display: none;
            }

            nav .logo {
                width: 100%;
                text-align: center;
            }

            nav .nav-links {
                width: 100%;
                justify-content: center;
                gap: 0.25rem;
            }

            nav .nav-links a {
                padding: 0.35rem 0.75rem;
                font-size: 0.8rem;
            }

            .hero .buttons {
                flex-direction: column;
                align-items: stretch;
            }

            .btn-primary,
            .btn-secondary {
                width: 100%;
            }

            section {
                padding: clamp(2.5rem, 6vw, 4rem) 1.5rem;
            }

            .staking-grid,
            .features-grid,
            .team-grid,
            .partners-grid,
            .roadmap-timeline {
                grid-template-columns: 1fr;
            }

            footer .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            footer a {
                display: inline;
                margin: 0 0.5rem;
            }
        }

        @media (max-width: 480px) {
            nav .nav-links {
                gap: 0.1rem;
            }

            nav .nav-links a {
                padding: 0.25rem 0.5rem;
                font-size: 0.75rem;
            }

            .hero h1 {
                font-size: clamp(1.5rem, 4vw, 2.5rem);
            }

            section h2 {
                font-size: clamp(1.4rem, 4vw, 2.2rem);
            }

            .token-stats {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .stat-card {
                padding: 1.25rem;
            }
        }

        /* Scroll Progress Bar */
        .scroll-progress {
            position: fixed;
            top: 0;
            left: 0;
            height: 3px;
            background: linear-gradient(90deg, #1e3a8a, #7c3aed, #10b981);
            width: 0%;
            transition: width 0.2s ease;
            z-index: 2000;
        }
		.opacity-30 {
    opacity: 0.3;
}
/* GRID LAYOUT */
.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    align-items: start;
    margin-top: 30px;
}

/* LEFT SIDE TEXT */
.about-text {
    color: var(--light-muted);
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 1.2rem;
}

/* RIGHT SIDE BOX */
.about-right {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

/* RESPONSIVE BREAKPOINT */
@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr; /* full width */
    }

    .about-right {
        margin-top: 15px;
    }
}


/* Contact Section Layout */
.contact {
    padding: 80px 0;
}

.contact-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
}

.contact-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.2);
}

.contact-form {
    flex: 1;
}

.contact-form h2 {
    font-size: 32px;
    margin-bottom: 5px;
}

.contact-form .subtitle {
    margin-bottom: 20px;
    font-size: 15px;
    opacity: 0.7;
}

/* Form Inputs */
.contact-form .form-group {
    margin-bottom: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #444;
    background: #111;
    color: #fff;
    border-radius: 10px;
}

.contact-form label {
    display: block;
    margin-bottom: 5px;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .contact-image img {
        max-width: 100%;
    }
}
/* Hide everything on desktop */
.mobile-header, .mobile-menu {
    display: none;
}

/* Show only on mobile */
@media(max-width: 768px) {

    .mobile-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1px 13px;
        background: #111;
        color: #fff;
        position: fixed;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 1000;
    }
    .hero .content {margin-top: 52px;}
    .menu-icon, .close-icon {
        font-size: 28px;
        cursor: pointer;
    }

    .close-icon {
        display: none;
    }

    /* Mobile Menu */
    .mobile-menu {
        display: block;
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: #222;
        padding-top: 80px;
        transition: 0.3s ease-in-out;
        z-index: 999;
    }

    .mobile-menu ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .mobile-menu ul li {
        padding: 15px 25px;
    }

    .mobile-menu ul li a {
        color: #fff;
        text-decoration: none;
        font-size: 18px;
    }

    .mobile-menu.active {
        right: 0;
    }
}