.token-hero {
            padding: 120px 0 80px;
            background: linear-gradient(135deg, #0f1a2e 0%, #1a3a5f 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .token-hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 10% 20%, rgba(30, 136, 229, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 90% 80%, rgba(230, 162, 60, 0.08) 0%, transparent 50%);
            z-index: 0;
        }
        
        .token-hero-content {
            max-width: 900px;
            text-align: center;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        
        .token-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 12px 25px;
            border-radius: 50px;
            font-size: 0.95rem;
            font-weight: 600;
            margin-bottom: 2rem;
            border: 1px solid rgba(255, 255, 255, 0.15);
        }
        
        .token-hero h1 {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            color: white;
        }
        
        .token-ticker {
            background: linear-gradient(135deg, #e6a23c 0%, #f59e0b 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 800;
        }
        
        .token-hero-subtitle {
            font-size: 1.4rem;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.9);
            max-width: 700px;
            margin: 0 auto 3rem;
            font-weight: 400;
        }
        
        .token-hero-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
            padding-top: 3rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .hero-stat {
            text-align: center;
        }
        
        .hero-stat-value {
            font-size: 2.5rem;
            font-weight: 800;
            color: white;
            margin-bottom: 0.5rem;
        }
        
        .hero-stat-label {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.95rem;
            font-weight: 500;
        }
        
        /* Token Features Section */
        .token-features {
            padding: 5rem 0;
            background-color: white;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
            margin-top: 3rem;
        }
        
        .feature-card {
            background: var(--light-bg);
            border-radius: 12px;
            padding: 2.5rem;
            transition: var(--transition);
            border: 1px solid var(--border-color);
            height: 100%;
            position: relative;
            overflow: hidden;
        }
        
        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--accent-color), var(--premium-blue));
        }
        
        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow);
            border-color: rgba(230, 162, 60, 0.3);
        }
        
        .feature-icon {
            font-size: 2.8rem;
            color: var(--accent-color);
            margin-bottom: 1.5rem;
        }
        
        .feature-card h3 {
            font-size: 1.5rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        
        .feature-card p {
            color: var(--gray);
            line-height: 1.6;
        }
        
        /* Token Details Section */
        .token-details {
            padding: 5rem 0;
            background: var(--light-bg);
        }
        
        .details-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: start;
        }
        
        .contract-box {
            background: white;
            border-radius: 12px;
            padding: 2rem;
            box-shadow: var(--shadow);
            border: 1px solid var(--border-color);
        }
        
        .contract-box h3 {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 1.5rem;
        }
        
        .contract-address {
            background: #f8f9fa;
            padding: 1.2rem;
            border-radius: 8px;
            font-family: 'Courier New', monospace;
            font-size: 0.9rem;
            word-break: break-all;
            margin: 1.5rem 0;
            border: 1px solid #e9ecef;
        }
        
        .copy-btn {
            background: var(--primary-color);
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 8px;
            margin-top: 1rem;
        }
        
        .copy-btn:hover {
            background: var(--secondary-color);
        }
        
        .token-specs {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }
        
        .spec-item {
            background: white;
            padding: 1.5rem;
            border-radius: 8px;
            text-align: center;
            border: 1px solid var(--border-color);
        }
        
        .spec-value {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }
        
        .spec-label {
            color: var(--gray);
            font-size: 0.9rem;
            font-weight: 500;
        }
        
        /* Price Section */
        .price-section {
            padding: 5rem 0;
            background: white;
        }
        
        .price-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .price-card {
            background: white;
            border-radius: 12px;
            padding: 2rem;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            border: 2px solid var(--border-color);
            transition: var(--transition);
        }
        
        .price-card:hover {
            transform: translateY(-5px);
            border-color: var(--accent-color);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .price-card.platform-card {
            border-top: 4px solid var(--premium-blue);
        }
        
        .price-card.platform-card h4 {
            color: var(--premium-blue);
        }
        
        .price-card.platform-card .price {
            color: var(--premium-blue);
        }
        
        .price-card .platform {
            font-size: 0.9rem;
            color: var(--gray);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1rem;
            font-weight: 600;
        }
        
        .price-card .price {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary-color);
            margin: 1rem 0;
        }
        
        .price-growth {
            margin-top: 3rem;
            padding: 2.5rem;
            background: linear-gradient(135deg, #fefce8 0%, #fffbeb 100%);
            border-radius: 12px;
            border-left: 4px solid var(--accent-color);
        }
        
        .price-growth h3 {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--primary-color);
        }
        
        /* Team Section */
        .team-section {
            padding: 5rem 0;
            background: var(--light-bg);
        }
        
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2.5rem;
            margin-top: 3rem;
        }
        
        .team-card {
            background: white;
            border-radius: 12px;
            padding: 2.5rem;
            text-align: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border: 1px solid var(--border-color);
        }
        
        .team-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        }
        
        .team-avatar {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            margin: 0 auto 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2.5rem;
            font-weight: 700;
        }
        
        .team-card h4 {
            font-size: 1.4rem;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }
        
        .team-role {
            color: var(--accent-color);
            font-weight: 600;
            margin-bottom: 1rem;
            font-size: 1rem;
        }
        
        .team-bio {
            color: var(--gray);
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }
        
        .team-social {
            display: flex;
            justify-content: center;
            gap: 1rem;
        }
        
        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--light-bg);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-color);
            transition: var(--transition);
        }
        
        .social-link:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-3px);
        }
        
        /* CTA Section */
        .token-cta {
            padding: 6rem 0;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-bg) 100%);
            color: white;
            text-align: center;
        }
        
        .token-cta h2 {
            color: white;
            margin-bottom: 1.5rem;
        }
        
        .token-cta p {
            color: rgba(255, 255, 255, 0.9);
            max-width: 600px;
            margin: 0 auto 3rem;
            font-size: 1.2rem;
        }
        
        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .token-hero h1 {
                font-size: 2.8rem;
            }
            
            .token-hero-subtitle {
                font-size: 1.2rem;
            }
            
            .details-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }
        
        @media (max-width: 768px) {
            .token-hero {
                padding: 100px 0 60px;
            }
            
            .token-hero h1 {
                font-size: 2.4rem;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
                max-width: 500px;
                margin-left: auto;
                margin-right: auto;
            }
            
            .price-cards {
                grid-template-columns: 1fr;
                max-width: 350px;
                margin-left: auto;
                margin-right: auto;
            }
            
            .team-grid {
                grid-template-columns: 1fr;
                max-width: 350px;
                margin-left: auto;
                margin-right: auto;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
        }
        
        @media (max-width: 576px) {
            .token-hero h1 {
                font-size: 2rem;
            }
            
            .token-hero-subtitle {
                font-size: 1.1rem;
            }
            
            .feature-card {
                padding: 2rem;
            }
            
            .team-card {
                padding: 2rem;
            }
        }
        
        /* Animation for price cards */
        @keyframes pricePulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.02); }
            100% { transform: scale(1); }
        }
        
        .price-card .price {
            animation: pricePulse 3s infinite ease-in-out;
        }