
        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

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

    

    body {
        font-family: 'Inter', sans-serif;
        background: #000;
        color: white;
        line-height: 1.6;
        overflow-x: hidden;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    /* ENTRY SCREEN */
    .entry-screen {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, #000 0%, #1a1a1a 50%, #D4AF37 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 10000;
        overflow: hidden;
    }

    .entry-content {
        text-align: center;
        position: relative;
        z-index: 2;
    }

    .company-logo-entry {
        font-size: 120px;
        font-weight: 900;
        color: #D4AF37;
        letter-spacing: -5px;
        margin-bottom: 10px;
        text-shadow: 0 0 40px rgba(212, 175, 55, 0.6);
        animation: logoGlow 2s ease-in-out infinite;
    }

    @keyframes logoGlow {
        0%, 100% { text-shadow: 0 0 40px rgba(212, 175, 55, 0.6); }
        50% { text-shadow: 0 0 60px rgba(212, 175, 55, 0.9); }
    }

    .company-tagline {
        font-size: 24px;
        font-weight: 700;
        color: white;
        letter-spacing: 8px;
        margin-bottom: 15px;
    }

    .entry-subtitle {
        font-size: 18px;
        color: #ccc;
        margin-bottom: 50px;
        opacity: 0.8;
    }

    .enter-button {
        background: linear-gradient(135deg, #D4AF37, #B8860B);
        border: none;
        padding: 20px 50px;
        border-radius: 50px;
        font-size: 20px;
        font-weight: 900;
        color: #000;
        cursor: pointer;
        transition: all 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 2px;
        box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
        display: flex;
        align-items: center;
        gap: 15px;
        margin: 0 auto;
    }

    .enter-button:hover {
        transform: translateY(-5px);
        box-shadow: 0 25px 50px rgba(212, 175, 55, 0.6);
    }

    .button-icon {
        font-size: 24px;
        animation: bounce 1s infinite;
    }

    @keyframes bounce {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-5px); }
    }

    /* PARTICLES BACKGROUND */
    .particles-bg {
        position: absolute;
        width: 100%;
        height: 100%;
        overflow: hidden;
    }

    .particle {
        position: absolute;
        width: 2px;
        height: 2px;
        background: #D4AF37;
        border-radius: 50%;
        animation: floatParticle 8s infinite ease-in-out;
    }

    @keyframes floatParticle {
        0%, 100% { 
            transform: translateY(100vh) rotate(0deg); 
            opacity: 0; 
        }
        10% { opacity: 1; }
        90% { opacity: 1; }
        100% { 
            transform: translateY(-100px) rotate(360deg); 
            opacity: 0; 
        }
    }

    /* CANDLES ANIMATION */
    .candles-animation {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #000;
        display: none;
        align-items: center;
        justify-content: center;
        z-index: 9999;
        overflow: hidden;
    }

    .candle {
        position: absolute;
        width: 40px;
        height: auto;
        opacity: 0;
        bottom: 20vh;
    }

    .candle-body {
        width: 100%;
        height: 0;
        border-radius: 4px;
        position: absolute;
        bottom: 0;
        transition: height 0.8s ease-out;
        transform: translateY(-100%);
    }

    .candle-wick {
        width: 2px;
        height: 30px;
        background: #333;
        position: absolute;
        top: -30px;
        left: 50%;
        transform: translateX(-50%);
    }

    .red-candle {
        left: calc(50% - 80px);
    }

    .red-candle .candle-body {
        background: linear-gradient(180deg, #ff4444 0%, #cc0000 100%);
        box-shadow: 0 0 30px rgba(255, 68, 68, 0.5);
    }

    .green-candle {
        left: calc(50% - 20px);
    }

    .green-candle .candle-body {
        background: linear-gradient(180deg, #4CAF50 0%, #2E7D32 100%);
        box-shadow: 0 0 30px rgba(76, 175, 80, 0.5);
    }

    .explosion-candle {
        left: calc(50% + 40px);
        width: 40px;
        height: 200px;
    }

    .explosion-candle .candle-body {
        background: linear-gradient(180deg, #4CAF50 0%, #2E7D32 100%);
        box-shadow: 0 0 50px rgba(76, 175, 80, 0.8);
        position: relative;
    }

    .explosion-candle .candle-body::after {
        content: "";
        width: 40px;
        height: 40px;
        background: #4CAF50;
        position: absolute;
        border-radius: 50%;
        box-sizing: border-box;
        left: 50%;
        top: 0;
        transform: translateX(-50%) scale(0);
        transition: transform 2s ease-out;
        z-index: 10000;
    }

    .explosion-candle .candle-body.netflix-expand::after {
        transform: translateX(-50%) scale(150);
    }



    /* MAIN CONTENT */
    .main-content {
        display: none;
        opacity: 0;
    }

    /* HEADER */
    .header {
        position: fixed;
        top: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        z-index: 1000;
        padding: 15px 0;
        border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    }

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

    .logo {
        font-size: 28px;
        font-weight: 900;
        color: #D4AF37;
        text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    }

    .nav-links {
        display: flex;
        gap: 30px;
        list-style: none;
    }

    .nav-links a {
        color: white;
        text-decoration: none;
        font-weight: 600;
        transition: color 0.3s ease;
    }

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

    .cta-button {
        background: linear-gradient(135deg, #D4AF37, #B8860B);
        color: #000;
        padding: 12px 24px;
        border-radius: 25px;
        font-weight: 700;
        text-decoration: none;
        transition: transform 0.3s ease;
    }

    .cta-button:hover {
        transform: translateY(-2px);
    }

    /* HERO SECTION */
    .hero {
        background: linear-gradient(135deg, #000 0%, #1a1a1a 50%, #D4AF37 100%);
        min-height: 100vh;
        display: flex;
        align-items: center;
        text-align: center;
        position: relative;
        overflow: hidden;
        padding-top: 80px;
    }

    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: 
            radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
        animation: pulse 4s ease-in-out infinite;
    }

    @keyframes pulse {
        0%, 100% { opacity: 0.5; }
        50% { opacity: 1; }
    }

    .hero-content {
        position: relative;
        z-index: 2;
    }

    .hero-badge {
        background: linear-gradient(45deg, #ff4444, #D4AF37);
        color: white;
        padding: 12px 24px;
        border-radius: 25px;
        font-weight: 700;
        display: inline-block;
        margin-bottom: 20px;
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .hero-title {
        font-size: clamp(48px, 8vw, 72px);
        font-weight: 900;
        margin-bottom: 20px;
        background: linear-gradient(45deg, #D4AF37, #FFD700);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
    }

    .hero-subtitle {
        font-size: clamp(18px, 3vw, 24px);
        margin-bottom: 30px;
        opacity: 0.9;
    }

    .countdown-container {
        background: rgba(0, 0, 0, 0.7);
        padding: 30px;
        border-radius: 20px;
        margin: 40px auto;
        max-width: 600px;
        border: 2px solid #D4AF37;
    }

    .countdown-title {
        font-size: 20px;
        color: #D4AF37;
        margin-bottom: 20px;
        font-weight: 700;
    }

    .countdown {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-bottom: 20px;
    }

    .countdown-item {
        background: linear-gradient(135deg, #D4AF37, #B8860B);
        color: #000;
        padding: 15px;
        border-radius: 10px;
        text-align: center;
        min-width: 80px;
    }

    .countdown-number {
        font-size: 24px;
        font-weight: 900;
        display: block;
    }

    .countdown-label {
        font-size: 12px;
        font-weight: 600;
        text-transform: uppercase;
    }

    .launch-info {
        font-size: 16px;
        color: #ccc;
    }

    /* AIRDROP SECTION */
    .airdrop-section {
        background: linear-gradient(135deg, #4CAF50, #45a049);
        color: white;
        padding: 80px 0;
        text-align: center;
        position: relative;
    }

    .airdrop-content {
        position: relative;
        z-index: 2;
    }

    .airdrop-title {
        font-size: clamp(32px, 6vw, 48px);
        font-weight: 900;
        margin-bottom: 30px;
    }

    .airdrop-offer {
        background: rgba(0, 0, 0, 0.3);
        padding: 40px;
        border-radius: 20px;
        margin: 30px auto;
        max-width: 800px;
        backdrop-filter: blur(10px);
    }

    .offer-highlight {
        font-size: clamp(20px, 4vw, 28px);
        font-weight: 900;
        margin-bottom: 20px;
        color: #FFD700;
    }

    .value-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
        margin: 30px 0;
    }

    .value-item {
        background: rgba(255, 255, 255, 0.1);
        padding: 20px;
        border-radius: 15px;
    }

    .value-label {
        font-size: 14px;
        opacity: 0.8;
        margin-bottom: 5px;
    }

    .value-amount {
        font-size: 20px;
        font-weight: 900;
        color: #FFD700;
    }

    /* SERVICES SECTION */
    .services-section {
        padding: 80px 0;
        background: #111;
    }

    .section-title {
        font-size: clamp(28px, 5vw, 36px);
        font-weight: 800;
        text-align: center;
        margin-bottom: 50px;
        color: #D4AF37;
    }

    .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }

    .service-card {
        background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
        border-radius: 20px;
        padding: 30px;
        border: 2px solid rgba(212, 175, 55, 0.3);
        transition: all 0.3s ease;
        text-align: center;
    }

    .service-card:hover {
        transform: translateY(-10px);
        border-color: #D4AF37;
        box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
    }

    .service-icon {
        font-size: 48px;
        margin-bottom: 20px;
    }

    .service-name {
        font-size: 20px;
        font-weight: 700;
        color: #D4AF37;
        margin-bottom: 15px;
    }

    .service-description {
        color: #ccc;
        margin-bottom: 20px;
        line-height: 1.6;
    }

    .price-info {
        background: rgba(212, 175, 55, 0.1);
        padding: 15px;
        border-radius: 10px;
        border: 1px solid #D4AF37;
    }

    .old-price {
        text-decoration: line-through;
        color: #999;
        font-size: 14px;
    }

    .new-price {
        font-size: 18px;
        font-weight: 900;
        color: #D4AF37;
        margin: 5px 0;
    }

    .savings {
        font-size: 12px;
        color: #4CAF50;
        font-weight: 600;
    }

    /* COMPANY STATS */
    .company-stats {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 30px;
        margin-top: 50px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .stat-item {
        background: rgba(0, 0, 0, 0.7);
        padding: 25px;
        border-radius: 15px;
        text-align: center;
        border: 2px solid #D4AF37;
    }

    .stat-number {
        font-size: 32px;
        font-weight: 900;
        color: #D4AF37;
        margin-bottom: 8px;
    }

    .stat-label {
        font-size: 14px;
        color: #ccc;
        font-weight: 600;
    }

    /* TOKEN LAUNCH SECTION */
    .token-launch-section {
        padding: 80px 0;
        background: linear-gradient(135deg, #1a1a1a 0%, #000 50%, #D4AF37 100%);
        text-align: center;
    }

    .token-launch-content {
        position: relative;
        z-index: 2;
    }

    /* TOKEN INFO SECTION */
    .token-section {
        padding: 80px 0;
        background: #000;
    }

    .token-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
    }

    .token-card {
        background: linear-gradient(135deg, #1a1a1a, #D4AF37);
        color: white;
        padding: 30px;
        border-radius: 20px;
        text-align: center;
        transition: transform 0.3s ease;
    }

    .token-card:hover {
        transform: translateY(-5px);
    }

    .token-percentage {
        font-size: 42px;
        font-weight: 900;
        margin-bottom: 10px;
    }

    .token-amount {
        opacity: 0.9;
        font-size: 14px;
        margin-bottom: 15px;
    }

    .token-purpose {
        font-size: 16px;
        font-weight: 700;
        margin-bottom: 10px;
    }

    /* ROADMAP SECTION */
    .roadmap-section {
        padding: 80px 0;
        background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    }

    .roadmap-timeline {
        max-width: 800px;
        margin: 0 auto;
        position: relative;
    }

    .roadmap-timeline::before {
        content: '';
        position: absolute;
        left: 50px;
        top: 0;
        bottom: 0;
        width: 4px;
        background: linear-gradient(180deg, #4CAF50 0%, #D4AF37 50%, #666 100%);
    }

    .roadmap-phase {
        display: flex;
        align-items: flex-start;
        margin-bottom: 60px;
        position: relative;
    }

    .phase-icon {
        width: 100px;
        height: 100px;
        background: linear-gradient(135deg, #D4AF37, #B8860B);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 32px;
        font-weight: 900;
        color: #000;
        margin-right: 30px;
        position: relative;
        z-index: 2;
        box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    }

    .roadmap-phase.completed .phase-icon {
        background: linear-gradient(135deg, #4CAF50, #45a049);
        color: white;
    }

    .roadmap-phase.current .phase-icon {
        background: linear-gradient(135deg, #D4AF37, #B8860B);
        animation: currentPulse 2s ease-in-out infinite;
    }

    @keyframes currentPulse {
        0%, 100% { box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3); }
        50% { box-shadow: 0 10px 50px rgba(212, 175, 55, 0.6); }
    }

    .roadmap-phase.future .phase-icon {
        background: linear-gradient(135deg, #666, #888);
        color: white;
    }

    .phase-content {
        flex: 1;
        background: rgba(255, 255, 255, 0.05);
        padding: 30px;
        border-radius: 20px;
        border: 2px solid rgba(212, 175, 55, 0.3);
        margin-top: 15px;
    }

    .roadmap-phase.completed .phase-content {
        border-color: #4CAF50;
        background: rgba(76, 175, 80, 0.1);
    }

    .roadmap-phase.current .phase-content {
        border-color: #D4AF37;
        background: rgba(212, 175, 55, 0.1);
    }

    .phase-title {
        font-size: 24px;
        font-weight: 800;
        color: #D4AF37;
        margin-bottom: 10px;
    }

    .roadmap-phase.completed .phase-title {
        color: #4CAF50;
    }

    .phase-date {
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 20px;
        padding: 8px 16px;
        border-radius: 20px;
        display: inline-block;
    }

    .roadmap-phase.completed .phase-date {
        background: rgba(76, 175, 80, 0.2);
        color: #4CAF50;
    }

    .roadmap-phase.current .phase-date {
        background: rgba(212, 175, 55, 0.2);
        color: #D4AF37;
    }

    .roadmap-phase.future .phase-date {
        background: rgba(102, 102, 102, 0.2);
        color: #999;
    }

    .phase-list {
        list-style: none;
        padding: 0;
    }

    .phase-list li {
        padding: 8px 0;
        color: #ccc;
        position: relative;
        padding-left: 25px;
    }

    .phase-list li::before {
        content: "→";
        color: #D4AF37;
        font-weight: bold;
        position: absolute;
        left: 0;
    }

    .roadmap-phase.completed .phase-list li::before {
        content: "✓";
        color: #4CAF50;
    }

    /* HOW TO BUY SECTION */
    .how-to-section {
        padding: 80px 0;
        background: #111;
    }

    .steps-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }

    .step-card {
        background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
        padding: 30px;
        border-radius: 20px;
        border: 2px solid rgba(212, 175, 55, 0.3);
        text-align: center;
        transition: all 0.3s ease;
    }

    .step-card:hover {
        border-color: #D4AF37;
        transform: translateY(-5px);
    }

    .step-number {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, #D4AF37, #B8860B);
        color: #000;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        font-weight: 900;
        margin: 0 auto 20px;
    }

    .step-title {
        font-size: 18px;
        font-weight: 700;
        color: #D4AF37;
        margin-bottom: 15px;
    }

    .step-description {
        color: #ccc;
        line-height: 1.6;
    }

    /* TEAM SECTION */
    .team-section {
        padding: 80px 0;
        background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    }

    .team-tree {
        max-width: 800px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .team-level {
        display: flex;
        justify-content: center;
        gap: 60px;
        margin: 20px 0;
    }

    .team-member {
        background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
        border: 2px solid rgba(212, 175, 55, 0.3);
        border-radius: 20px;
        padding: 25px;
        text-align: center;
        min-width: 200px;
        transition: all 0.3s ease;
    }

    .team-member:hover {
        transform: translateY(-8px);
        border-color: #D4AF37;
        box-shadow: 0 15px 30px rgba(212, 175, 55, 0.2);
    }

    .team-member.founder {
        border-color: #D4AF37;
        background: linear-gradient(135deg, #D4AF37, #B8860B);
        color: #000;
        box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    }

    .team-member.executive {
        border-color: #4CAF50;
        background: linear-gradient(135deg, #1a1a1a, #4CAF50);
    }

    .member-avatar {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        background: rgba(212, 175, 55, 0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 32px;
        margin: 0 auto 15px;
        border: 3px solid #D4AF37;
    }

    .team-member.founder .member-avatar {
        background: rgba(0, 0, 0, 0.3);
        border-color: #000;
    }

    .team-member.executive .member-avatar {
        background: rgba(76, 175, 80, 0.2);
        border-color: #4CAF50;
    }

    .member-name {
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 8px;
        color: #D4AF37;
    }

    .team-member.founder .member-name {
        color: #000;
    }

    .team-member.executive .member-name {
        color: #4CAF50;
    }

    .member-role {
        font-size: 14px;
        color: #ccc;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .team-member.founder .member-role {
        color: #333;
    }

    .tree-connector {
        width: 4px;
        height: 50px;
        background: linear-gradient(180deg, #D4AF37, #4CAF50);
        margin: 10px 0;
    }

    .tree-connector-multi {
        position: relative;
        width: 300px;
        height: 50px;
        margin: 10px 0;
    }

    .tree-connector-multi::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 4px;
        height: 25px;
        background: #4CAF50;
    }

    .tree-connector-multi::after {
        content: '';
        position: absolute;
        top: 25px;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #4CAF50 0%, #D4AF37 50%, #4CAF50 100%);
    }

    .managers-level {
        position: relative;
    }

    .managers-level::before {
        content: '';
        position: absolute;
        top: -25px;
        left: 16.66%;
        width: 4px;
        height: 25px;
        background: #D4AF37;
    }

    .managers-level::after {
        content: '';
        position: absolute;
        top: -25px;
        right: 16.66%;
        width: 4px;
        height: 25px;
        background: #D4AF37;
    }

    /* FOOTER */
    .footer {
        background: #000;
        padding: 60px 0 30px;
        border-top: 2px solid #D4AF37;
    }

    .footer-content {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 40px;
        margin-bottom: 40px;
    }

    .footer-section h3 {
        color: #D4AF37;
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .footer-section a {
        color: #ccc;
        text-decoration: none;
        display: block;
        margin-bottom: 10px;
        transition: color 0.3s ease;
    }

    .footer-section a:hover {
        color: #D4AF37;
    }

    .footer-bottom {
        text-align: center;
        padding-top: 30px;
        border-top: 1px solid #333;
        color: #666;
    }

    /* RESPONSIVE */
    @media (max-width: 768px) {
        .company-logo-entry {
            font-size: 80px;
        }
        
        .enter-button {
            padding: 15px 30px;
            font-size: 16px;
        }
        
        .nav-links {
            display: none;
        }
        
        .company-stats {
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
        
        .stat-number {
            font-size: 24px;
        }
        
        .countdown {
            flex-wrap: wrap;
            gap: 15px;
        }
        
        .countdown-item {
            min-width: 70px;
            padding: 12px;
        }
        
        .countdown-number {
            font-size: 20px;
        }
        
        .value-grid {
            grid-template-columns: 1fr;
        }
        
        .roadmap-timeline::before {
            left: 25px;
        }
        
        .phase-icon {
            width: 50px;
            height: 50px;
            font-size: 20px;
            margin-right: 20px;
        }
        
        .team-level {
            flex-direction: column;
            gap: 30px;
            align-items: center;
        }
        
        .tree-connector-multi {
            width: 200px;
        }
        
        .managers-level::before,
        .managers-level::after {
            display: none;
        }
        
        .team-member {
            min-width: 250px;
        }
    }

    /* SCROLL ANIMATIONS */
    .fade-in {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.6s ease;
    }

    .fade-in.visible {
        opacity: 1;
        transform: translateY(0);
    }

    /* SHOW/HIDE STATES */
    .entry-screen.hidden {
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.5s ease;
    }

    .candles-animation.active {
        display: flex;
    }

    .main-content.visible {
        display: block;
        animation: fadeInContent 1s ease-out;
    }

    @keyframes fadeInContent {
        from {
            opacity: 0;
            transform: translateY(50px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }