        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background: #0a0a0f;
            color: #e4e4e7;
            line-height: 1.6;
            overflow-x: hidden;
            position: relative;
        }

        /* Vibrant Mesh Gradient Background */
        body::before {
            content: '';
            position: fixed;
            top: -20%;
            left: -20%;
            width: 140%;
            height: 140%;
            background:
                radial-gradient(circle at 10% 20%, rgba(251, 191, 36, 0.35) 0%, transparent 40%),
                radial-gradient(circle at 90% 10%, rgba(139, 92, 246, 0.3) 0%, transparent 40%),
                radial-gradient(circle at 85% 85%, rgba(0, 245, 255, 0.25) 0%, transparent 40%),
                radial-gradient(circle at 15% 90%, rgba(59, 130, 246, 0.2) 0%, transparent 40%),
                radial-gradient(circle at 50% 50%, rgba(251, 146, 60, 0.15) 0%, transparent 50%);
            filter: blur(100px);
            animation: mesh-float 20s ease-in-out infinite;
            pointer-events: none;
            z-index: 0;
        }

        /* Subtle Grid Pattern Overlay */
        body::after {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image:
                linear-gradient(rgba(251, 191, 36, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(251, 191, 36, 0.03) 1px, transparent 1px);
            background-size: 60px 60px;
            pointer-events: none;
            z-index: 1;
            opacity: 0.4;
        }

        @keyframes mesh-float {
            0%, 100% {
                transform: translate(0%, 0%) scale(1) rotate(0deg);
            }
            33% {
                transform: translate(5%, -5%) scale(1.05) rotate(2deg);
            }
            66% {
                transform: translate(-3%, 3%) scale(0.98) rotate(-1deg);
            }
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }

        /* Navbar */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(10, 10, 20, 0.85);
            backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            z-index: 1000;
            padding: 16px 0;
        }

        .nav-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-img {
            height: 40px;
            width: auto;
        }

        .nav-links {
            display: flex;
            gap: 32px;
            align-items: center;
        }

        .nav-links a {
            color: #e4e4e7;
            text-decoration: none;
            font-weight: 500;
            font-size: 15px;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: #fbbf24;
        }

        .btn-nav {
            background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
            color: #0a0a0f;
            padding: 10px 24px;
            border-radius: 10px;
            font-weight: 700;
            transition: all 0.3s ease;
            text-shadow: none;
        }

        .btn-nav:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(251, 191, 36, 0.5);
            color: #0a0a0f !important;
        }

        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            gap: 6px;
            background: none;
            border: none;
            cursor: pointer;
        }

        .mobile-menu-toggle span {
            width: 25px;
            height: 2px;
            background: #e4e4e7;
            transition: 0.3s;
        }

        .mobile-menu {
            display: none;
            position: fixed;
            top: 72px;
            left: 0;
            right: 0;
            background: rgba(10, 10, 20, 0.95);
            backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            padding: 20px;
            flex-direction: column;
            gap: 16px;
            z-index: 999;
        }

        .mobile-menu a {
            color: #e4e4e7;
            text-decoration: none;
            font-weight: 500;
            font-size: 16px;
            padding: 12px;
            border-radius: 8px;
            transition: background 0.3s ease;
        }

        .mobile-menu a:hover {
            background: rgba(255, 255, 255, 0.05);
        }

        /* Hero Section */
        .hero {
            padding: 140px 0 80px;
            position: relative;
            z-index: 2;
            background: radial-gradient(circle at 50% 0%, rgba(251, 191, 36, 0.1) 0%, transparent 50%);
            text-align: center;
        }

        .badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(251, 191, 36, 0.1);
            border: 1px solid rgba(251, 191, 36, 0.3);
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            color: #fbbf24;
            margin-bottom: 24px;
        }

        .hero h1 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 64px;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 24px;
        }

        .gradient-text {
            background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #8b5cf6 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .neon-text {
            background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            filter: drop-shadow(0 0 20px rgba(251, 191, 36, 0.6));
        }

        .hero-description {
            font-size: 20px;
            color: #a1a1aa;
            margin-bottom: 40px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.7;
        }

        /* Coins Grid */
        .coins-section {
            padding: 100px 0;
            position: relative;
            z-index: 2;
        }

        .section-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 60px;
        }

        .section-header h2 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 16px;
            line-height: 1.2;
        }

        .section-header p {
            font-size: 18px;
            color: #a1a1aa;
        }

        .highlight {
            color: #fbbf24;
        }

        .coins-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            margin-top: 80px;
        }

        .coin-card {
            background: rgba(20, 20, 31, 0.6);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 24px;
            padding: 40px;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .coin-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, transparent, currentColor, transparent);
            opacity: 0 !important;
            transition: opacity 0.4s ease;
        }

        .coin-card:hover {
            background: rgba(20, 20, 31, 0.9);
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
        }

        .coin-card:hover::before {
            opacity: 0 !important;
        }

        .waza-card { border-top: 3px solid #fbbf24; }
        .waza-card::before { color: #fbbf24; }
        .dopp-card { border-top: 3px solid #00f5ff; }
        .dopp-card::before { color: #00f5ff; }
        .worq-card { border-top: 3px solid #8b5cf6; }
        .worq-card::before { color: #8b5cf6; }

        .coin-image-container {
            width: 120px;
            height: 120px;
            margin: 0 auto 24px;
            position: relative;
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-10px) rotate(5deg); }
        }

        .coin-image-container img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            filter: drop-shadow(0 10px 30px rgba(251, 191, 36, 0.4));
        }

        .coin-card h3 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 8px;
            text-align: center;
        }

        .coin-tagline {
            text-align: center;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
            opacity: 0.7;
        }

        .waza-card h3, .waza-card .coin-tagline { color: #fbbf24; }
        .dopp-card h3, .dopp-card .coin-tagline { color: #00f5ff; }
        .worq-card h3, .worq-card .coin-tagline { color: #8b5cf6; }

        .coin-description {
            color: #a1a1aa;
            line-height: 1.7;
            margin-bottom: 24px;
            font-size: 15px;
        }

        .earn-ways h4 {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 12px;
            color: #fafafa;
        }

        .earn-ways ul {
            list-style: none;
            padding: 0;
        }

        .earn-ways li {
            color: #a1a1aa;
            padding: 8px 0;
            font-size: 14px;
        }

        .benefit-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 12px;
        }

        .benefit-tag {
            background: rgba(251, 191, 36, 0.1);
            border: 1px solid rgba(251, 191, 36, 0.3);
            color: #fbbf24;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
        }

        /* PROFY Section */
        .profy-section {
            padding: 100px 0;
            position: relative;
            z-index: 2;
            background: radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.08) 0%, transparent 60%);
        }

        .profy-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .nft-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }

        .nft-item {
            background: rgba(20, 20, 31, 0.8);
            border: 1px solid rgba(139, 92, 246, 0.3);
            border-radius: 16px;
            padding: 12px;
            transition: all 0.3s ease;
            position: relative;
        }

        .nft-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
        }

        .nft-item img {
            width: 100%;
            height: auto;
            border-radius: 12px;
        }

        .nft-tier, .nft-number {
            display: block;
            text-align: center;
            margin-top: 8px;
            font-size: 12px;
            font-weight: 600;
            color: #8b5cf6;
        }

        .profy-text h2 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 16px;
        }

        .profy-tagline {
            font-size: 20px;
            color: #8b5cf6;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .profy-description {
            color: #a1a1aa;
            line-height: 1.8;
            margin-bottom: 40px;
            font-size: 16px;
        }

        .profy-features {
            display: flex;
            flex-direction: column;
            gap: 24px;
            margin-bottom: 40px;
        }

        .profy-feature {
            display: flex;
            gap: 16px;
        }

        .profy-feature svg {
            width: 32px;
            height: 32px;
            color: #8b5cf6;
            flex-shrink: 0;
        }

        .profy-feature h4 {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 4px;
            color: #fafafa;
        }

        .profy-feature p {
            color: #a1a1aa;
            font-size: 14px;
            line-height: 1.6;
        }

        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 32px;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .btn-primary {
            background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
            color: #0a0a0f;
            border: none;
            box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 40px rgba(251, 191, 36, 0.5);
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.05);
            color: #e4e4e7;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.2);
        }

        /* CTA Section */
        .cta-section {
            padding: 120px 0;
            position: relative;
            z-index: 2;
            text-align: center;
            background: radial-gradient(circle at 50% 50%, rgba(251, 191, 36, 0.1) 0%, transparent 60%);
        }

        .cta-section h2 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 16px;
        }

        .cta-section p {
            font-size: 20px;
            color: #a1a1aa;
            margin-bottom: 40px;
        }

        .cta-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            align-items: center;
        }

        /* EspressoX Exchange Section */
        .espressox-section {
            padding: 100px 0;
            position: relative;
            z-index: 2;
            text-align: center;
        }

        .espressox-badge {
            display: inline-block;
            background: linear-gradient(135deg, rgba(251, 191, 36, 0.15), rgba(139, 92, 246, 0.15));
            border: 2px solid rgba(251, 191, 36, 0.3);
            color: #fbbf24;
            padding: 10px 24px;
            border-radius: 100px;
            font-size: 12px;
            font-weight: 800;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 24px;
        }

        .espressox-section h2 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 56px;
            font-weight: 700;
            margin-bottom: 20px;
            color: #fafafa;
        }

        .espressox-intro {
            font-size: 20px;
            color: #a1a1aa;
            max-width: 700px;
            margin: 0 auto 60px;
            line-height: 1.7;
        }

        /* Game Flow */
        .game-flow {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 24px;
            margin-bottom: 60px;
            flex-wrap: wrap;
        }

        .flow-card {
            background: rgba(255, 255, 255, 0.03);
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 32px 24px;
            flex: 1;
            min-width: 220px;
            max-width: 280px;
            transition: all 0.3s ease;
        }

        .flow-card:hover {
            transform: translateY(-8px);
            border-color: rgba(251, 191, 36, 0.3);
            box-shadow: 0 20px 60px rgba(251, 191, 36, 0.15);
        }

        .flow-card.bridge {
            background: linear-gradient(135deg, rgba(251, 191, 36, 0.08), rgba(139, 92, 246, 0.08));
            border-color: rgba(251, 191, 36, 0.4);
        }

        .flow-card.bridge:hover {
            border-color: rgba(251, 191, 36, 0.6);
            box-shadow: 0 20px 60px rgba(251, 191, 36, 0.3);
        }

        .flow-emoji {
            font-size: 48px;
            margin-bottom: 16px;
        }

        .flow-emoji.glow {
            animation: pulse-glow 2s ease-in-out infinite;
        }

        @keyframes pulse-glow {
            0%, 100% {
                transform: scale(1);
                filter: drop-shadow(0 0 10px rgba(251, 191, 36, 0.5));
            }
            50% {
                transform: scale(1.1);
                filter: drop-shadow(0 0 20px rgba(251, 191, 36, 0.8));
            }
        }

        .flow-card h4 {
            font-size: 20px;
            font-weight: 700;
            color: #fafafa;
            margin-bottom: 12px;
        }

        .flow-card p {
            font-size: 15px;
            color: #a1a1aa;
            margin-bottom: 16px;
            line-height: 1.5;
        }

        .flow-tag {
            display: inline-block;
            padding: 6px 16px;
            border-radius: 100px;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .flow-tag.off-chain {
            background: rgba(59, 130, 246, 0.15);
            color: #60a5fa;
            border: 1px solid rgba(59, 130, 246, 0.3);
        }

        .flow-tag.magic {
            background: linear-gradient(135deg, rgba(251, 191, 36, 0.2), rgba(139, 92, 246, 0.2));
            color: #fbbf24;
            border: 1px solid rgba(251, 191, 36, 0.5);
            animation: shimmer 2s ease-in-out infinite;
        }

        @keyframes shimmer {
            0%, 100% {
                box-shadow: 0 0 10px rgba(251, 191, 36, 0.3);
            }
            50% {
                box-shadow: 0 0 20px rgba(251, 191, 36, 0.6);
            }
        }

        .flow-tag.on-chain {
            background: rgba(34, 197, 94, 0.15);
            color: #4ade80;
            border: 1px solid rgba(34, 197, 94, 0.3);
        }

        .flow-arrow {
            font-size: 32px;
            color: #fbbf24;
            font-weight: 700;
            flex-shrink: 0;
        }

        /* Perks Grid */
        .espressox-perks {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            max-width: 900px;
            margin: 0 auto 60px;
        }

        .perk-item {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            padding: 24px;
            text-align: left;
            transition: all 0.3s ease;
        }

        .perk-item:hover {
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(139, 92, 246, 0.3);
            transform: translateY(-4px);
        }

        .perk-emoji {
            font-size: 32px;
            flex-shrink: 0;
        }

        .perk-text strong {
            display: block;
            color: #fafafa;
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 4px;
        }

        .perk-text p {
            color: #a1a1aa;
            font-size: 14px;
            margin: 0;
            line-height: 1.5;
        }

        /* EspressoX CTA */
        .espressox-cta {
            margin-top: 40px;
        }

        .espressox-tagline {
            font-size: 18px;
            color: #e4e4e7;
            margin-bottom: 24px;
        }

        .btn-espressox {
            background: linear-gradient(135deg, #fbbf24 0%, #8b5cf6 100%);
            color: white;
            padding: 16px 40px;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 700;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3);
        }

        .btn-espressox:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(251, 191, 36, 0.5);
        }

        .btn-espressox svg {
            transition: transform 0.3s ease;
        }

        .btn-espressox:hover svg {
            transform: translate(2px, -2px);
        }

        .espressox-note {
            font-size: 13px;
            color: #71717a;
            margin-top: 16px;
            font-style: italic;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .espressox-section h2 {
                font-size: 36px;
            }

            .espressox-intro {
                font-size: 16px;
            }

            .game-flow {
                flex-direction: column;
            }

            .flow-arrow {
                transform: rotate(90deg);
            }

            .flow-card {
                max-width: 100%;
            }

            .espressox-perks {
                grid-template-columns: 1fr;
            }
        }

        /* Footer */
        .footer {
            position: relative;
            z-index: 2;
            background: rgba(0, 0, 0, 0.4);
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding: 60px 0 30px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 60px;
            margin-bottom: 40px;
        }

        .footer-logo {
            width: 50px;
            height: 50px;
            margin-bottom: 16px;
        }

        .footer-brand p {
            color: #71717a;
            font-size: 15px;
        }

        .footer-column h4 {
            color: #fafafa;
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 16px;
        }

        .footer-column a {
            display: block;
            color: #a1a1aa;
            text-decoration: none;
            font-size: 14px;
            margin-bottom: 12px;
            transition: color 0.3s ease;
        }

        .footer-column a:hover {
            color: #fbbf24;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .footer-bottom p {
            color: #71717a;
            font-size: 14px;
        }

        /* EspressoX Section */
        .espressox-section {
            padding: 100px 0;
            position: relative;
            z-index: 2;
            background: radial-gradient(circle at 50% 50%, rgba(0, 245, 255, 0.05) 0%, transparent 60%);
        }

        .dex-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin: 60px 0 40px;
        }

        .dex-stat-card {
            background: rgba(20, 20, 31, 0.6);
            border: 1px solid rgba(0, 245, 255, 0.2);
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .dex-stat-card:hover {
            background: rgba(20, 20, 31, 0.9);
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 245, 255, 0.2);
        }

        .dex-stat-number {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 48px;
            font-weight: 700;
            color: #00f5ff;
            margin-bottom: 8px;
        }

        .dex-stat-label {
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #a1a1aa;
            margin-bottom: 12px;
        }

        .dex-stat-card p {
            font-size: 14px;
            color: #71717a;
            line-height: 1.6;
        }

        .dex-features {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-bottom: 40px;
        }

        .dex-feature-item {
            display: flex;
            gap: 16px;
        }

        .dex-feature-item svg {
            width: 32px;
            height: 32px;
            color: #00f5ff;
            flex-shrink: 0;
        }

        .dex-feature-item h4 {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 4px;
            color: #fafafa;
        }

        .dex-feature-item p {
            font-size: 14px;
            color: #a1a1aa;
            line-height: 1.6;
        }

        .dex-cta {
            text-align: center;
            margin-top: 40px;
        }

        .dex-note {
            margin-top: 16px;
            font-size: 14px;
            color: #71717a;
        }

        /* Organizations Section */
        .organizations-section {
            padding: 100px 0;
            position: relative;
            z-index: 2;
        }

        .org-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 32px;
            margin: 60px 0 40px;
        }

        .org-card {
            background: rgba(20, 20, 31, 0.6);
            border: 1px solid rgba(139, 92, 246, 0.2);
            border-radius: 20px;
            padding: 40px;
            transition: all 0.3s ease;
        }

        .org-card:hover {
            background: rgba(20, 20, 31, 0.9);
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(139, 92, 246, 0.2);
        }

        .org-icon {
            width: 60px;
            height: 60px;
            background: rgba(139, 92, 246, 0.1);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        .org-icon svg {
            width: 32px;
            height: 32px;
            color: #8b5cf6;
        }

        .org-card h3 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 12px;
            color: #fafafa;
        }

        .org-card p {
            color: #a1a1aa;
            line-height: 1.7;
            font-size: 15px;
        }

        .org-cta {
            text-align: center;
            margin-top: 40px;
        }

        /* How It Works Section */
        .how-it-works-section {
            padding: 100px 0;
            position: relative;
            z-index: 2;
            background: radial-gradient(circle at 50% 50%, rgba(251, 191, 36, 0.05) 0%, transparent 60%);
        }

        .steps-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
            margin-top: 60px;
        }

        .step-card {
            background: rgba(20, 20, 31, 0.6);
            border: 1px solid rgba(251, 191, 36, 0.2);
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
        }

        .step-card:hover {
            background: rgba(20, 20, 31, 0.9);
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(251, 191, 36, 0.2);
        }

        .step-number {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Space Grotesk', sans-serif;
            font-size: 28px;
            font-weight: 700;
            color: #0a0a0f;
            margin: 0 auto 20px;
        }

        .step-card h3 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 12px;
            color: #fafafa;
        }

        .step-card p {
            color: #a1a1aa;
            font-size: 14px;
            line-height: 1.6;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .coins-grid {
                grid-template-columns: 1fr;
            }

            .profy-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .dex-grid {
                grid-template-columns: 1fr;
            }

            .dex-features {
                grid-template-columns: 1fr;
            }

            .org-grid {
                grid-template-columns: 1fr;
            }

            .steps-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .mobile-menu-toggle {
                display: flex;
            }

            .hero h1 {
                font-size: 40px;
            }

            .section-header h2 {
                font-size: 32px;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .cta-buttons {
                flex-direction: column;
            }

            .nft-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .steps-grid {
                grid-template-columns: 1fr;
            }

            .dex-grid {
                grid-template-columns: 1fr;
            }

            .org-grid {
                grid-template-columns: 1fr;
            }
        }
