* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --binance-yellow: #F3BA2F;
    --binance-dark: #181A20;
    --binance-black: #000000;
    --text-light: #EAECEF;
    --text-dark: #1E2329;
    --gradient-1: linear-gradient(135deg, #F3BA2F 0%, #FFD700 100%);
    --gradient-2: linear-gradient(135deg, #181A20 0%, #2B2F36 100%);
    --shadow: 0 10px 40px rgba(243, 186, 47, 0.3);
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--binance-dark);
    color: var(--text-light);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(24, 26, 32, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(243, 186, 47, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 900;
    color: var(--binance-yellow);
}

.logo img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid var(--binance-yellow);
    box-shadow: 0 0 20px rgba(243, 186, 47, 0.5);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--binance-yellow);
    transition: width 0.3s;
}

.nav-links a:hover {
    color: var(--binance-yellow);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-twitter-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: var(--gradient-2);
    border: 2px solid rgba(243, 186, 47, 0.2);
    border-radius: 50px;
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
}

.nav-twitter-btn svg {
    width: 20px;
    height: 20px;
}

.nav-twitter-btn:hover {
    transform: translateY(-2px);
    background: #1DA1F2;
    border-color: #1DA1F2;
    box-shadow: 0 10px 30px rgba(29, 161, 242, 0.3);
}

/* Buttons */
.btn-primary, .btn-secondary {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: var(--gradient-1);
    color: var(--binance-black);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 50px rgba(243, 186, 47, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--binance-yellow);
    border: 2px solid var(--binance-yellow);
}

.btn-secondary:hover {
    background: var(--binance-yellow);
    color: var(--binance-black);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 40px;
    font-size: 18px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(243, 186, 47, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(243, 186, 47, 0.15) 0%, transparent 50%);
    z-index: 0;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 60px;
    font-weight: 900;
    margin-bottom: 10px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 20px;
}

.highlight {
    color: var(--binance-yellow);
}

.hero-description {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: rgba(234, 236, 239, 0.8);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.stats {
    display: flex;
    gap: 40px;
}

.stat-item h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--binance-yellow);
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 14px;
    color: rgba(234, 236, 239, 0.6);
}

/* Mascot */
.hero-mascot {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mascot-circle {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 20px;
    background: radial-gradient(circle, rgba(243, 186, 47, 0.2) 0%, transparent 70%);
    animation: pulse-circle 3s ease-in-out infinite;
}

.slider-container {
    position: relative;
    width: 450px;
    height: 380px;
    z-index: 2;
    overflow: visible;
    animation: floating 3s ease-in-out infinite;
    margin: 0 30px;
}

.slider-container .mascot-img {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 450px !important;
    height: 380px !important;
}

.mascot-img {
    width: 450px;
    height: 380px;
    border-radius: 20px;
    object-fit: cover;
    object-position: center bottom;
    border: 5px solid var(--binance-yellow);
    box-shadow: 0 0 20px rgba(243, 186, 47, 0.3);
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease-in-out;
    z-index: 1;
}

.mascot-img.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(243, 186, 47, 0.9);
    color: var(--binance-black);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 50;
    line-height: 1;
    padding: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.slider-arrow:hover {
    background: var(--binance-yellow);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 5px 20px rgba(243, 186, 47, 0.5);
}

.slider-arrow-left {
    left: -20px;
}

.slider-arrow-right {
    right: -20px;
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse-circle {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.3; }
}

.pulse {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Glitch Effect */
.glitch {
    position: relative;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    animation: glitch-1 2s infinite;
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
}

.glitch::after {
    animation: glitch-2 2s infinite;
    clip-path: polygon(0 60%, 100% 60%, 100% 100%, 0 100%);
}

@keyframes glitch-1 {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
}

@keyframes glitch-2 {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(2px, -2px); }
    40% { transform: translate(2px, 2px); }
    60% { transform: translate(-2px, -2px); }
    80% { transform: translate(-2px, 2px); }
}

/* Sections */
section {
    padding: 100px 0;
}

.section-title {
    font-size: 48px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 20px;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: rgba(234, 236, 239, 0.7);
    margin-bottom: 60px;
}

/* About Section */
.about {
    background: var(--gradient-2);
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.lead {
    font-size: 22px;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 60px;
    color: rgba(234, 236, 239, 0.9);
}

.features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.feature-item {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: rgba(243, 186, 47, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(243, 186, 47, 0.1);
    transition: all 0.3s;
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: var(--binance-yellow);
    box-shadow: 0 10px 30px rgba(243, 186, 47, 0.2);
}

.feature-icon {
    font-size: 40px;
    line-height: 1;
}

.feature-item h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--binance-yellow);
    margin-bottom: 8px;
}

.feature-item p {
    color: rgba(234, 236, 239, 0.7);
    line-height: 1.6;
}

/* Tokenomics Section */
.tokenomics {
    background: var(--binance-dark);
}

.tokenomics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.token-card {
    background: var(--gradient-2);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(243, 186, 47, 0.1);
    transition: all 0.3s;
}

.token-card:hover {
    transform: translateY(-10px);
    border-color: var(--binance-yellow);
    box-shadow: 0 15px 40px rgba(243, 186, 47, 0.3);
}

.token-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.token-card h3 {
    font-size: 18px;
    color: rgba(234, 236, 239, 0.7);
    margin-bottom: 15px;
    font-weight: 500;
}

.token-value {
    font-size: 32px;
    font-weight: 900;
    color: var(--binance-yellow);
    margin-bottom: 10px;
}

.token-desc {
    font-size: 14px;
    color: rgba(234, 236, 239, 0.6);
}

/* Roadmap Section */
.roadmap {
    background: var(--gradient-2);
}

.roadmap-timeline {
    max-width: 800px;
    margin: 60px auto 0;
    position: relative;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--binance-yellow), transparent);
}

.roadmap-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 50px;
}

.roadmap-marker {
    position: absolute;
    left: 8px;
    top: 0;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: rgba(24, 26, 32, 1);
    border: 3px solid rgba(243, 186, 47, 0.3);
    transition: all 0.3s;
}

.roadmap-item.completed .roadmap-marker {
    background: var(--binance-yellow);
    border-color: var(--binance-yellow);
    box-shadow: 0 0 20px rgba(243, 186, 47, 0.6);
}

.roadmap-item.active .roadmap-marker {
    background: var(--binance-yellow);
    border-color: var(--binance-yellow);
    box-shadow: 0 0 20px rgba(243, 186, 47, 0.8);
    animation: pulse-marker 2s ease-in-out infinite;
}

@keyframes pulse-marker {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.roadmap-content {
    background: rgba(243, 186, 47, 0.05);
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid rgba(243, 186, 47, 0.3);
}

.roadmap-item.completed .roadmap-content,
.roadmap-item.active .roadmap-content {
    border-left-color: var(--binance-yellow);
}

.roadmap-content h3 {
    font-size: 22px;
    color: var(--binance-yellow);
    margin-bottom: 15px;
}

.roadmap-content ul {
    list-style: none;
}

.roadmap-content li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: rgba(234, 236, 239, 0.8);
}

.roadmap-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--binance-yellow);
    font-weight: bold;
}

/* Handdrawn Section */
.handdrawn {
    background: var(--binance-dark);
    padding: 100px 0;
}

.handdrawn-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.handdrawn-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.handdrawn-image img {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 20px;
    border: 5px solid var(--binance-yellow);
    box-shadow: 0 0 60px rgba(243, 186, 47, 0.4);
}

.handdrawn-text {
    padding: 20px;
}

.handdrawn-text .section-title {
    text-align: left;
    margin-bottom: 30px;
    font-size: 42px;
}

.handdrawn-description {
    font-size: 20px;
    line-height: 1.8;
    color: rgba(234, 236, 239, 0.9);
}

/* Community Section */
.community {
    background: var(--gradient-1);
}

.community .section-title,
.community .section-subtitle {
    color: var(--binance-black);
}

.community .highlight {
    color: var(--binance-dark);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 60px;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 40px;
    background: var(--gradient-2);
    border: 2px solid rgba(243, 186, 47, 0.2);
    border-radius: 50px;
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s;
}

.social-btn svg {
    width: 30px;
    height: 30px;
}

.social-btn:hover {
    transform: translateY(-5px);
    border-color: var(--binance-yellow);
    box-shadow: 0 10px 30px rgba(243, 186, 47, 0.3);
}

.social-btn.telegram:hover {
    background: #0088cc;
    border-color: #0088cc;
}

.social-btn.twitter:hover {
    background: #1DA1F2;
    border-color: #1DA1F2;
}

.social-btn.discord:hover {
    background: #5865F2;
    border-color: #5865F2;
}

/* CTA Section */
.cta {
    background: var(--gradient-1);
    text-align: center;
}

.cta-content h2 {
    font-size: 48px;
    font-weight: 900;
    color: var(--binance-black);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 22px;
    color: var(--binance-dark);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cta .btn-primary {
    background: var(--binance-black);
    color: var(--binance-yellow);
}

.cta .btn-secondary {
    background: transparent;
    color: var(--binance-black);
    border-color: var(--binance-black);
}

.cta .btn-secondary:hover {
    background: var(--binance-black);
    color: var(--binance-yellow);
}

/* Footer */
.footer {
    background: var(--binance-black);
    padding: 60px 0 30px;
    text-align: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 28px;
    font-weight: 900;
    color: var(--binance-yellow);
    margin-bottom: 30px;
}

.footer-brand img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--binance-yellow);
}

.footer-disclaimer {
    max-width: 700px;
    margin: 0 auto 30px;
    color: rgba(234, 236, 239, 0.6);
    line-height: 1.6;
    font-size: 14px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(243, 186, 47, 0.1);
}

.footer-links a {
    color: rgba(234, 236, 239, 0.6);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--binance-yellow);
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-links {
        display: none;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 42px;
    }
    
    .hero-content h2 {
        font-size: 28px;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .stats {
        justify-content: center;
    }
    
    .slider-container {
        width: 350px;
        height: 300px;
    }
    
    .mascot-img {
        width: 350px;
        height: 300px;
    }
    
    .mascot-circle {
        width: 300px;
        height: 250px;
    }
    
    .slider-arrow {
        width: 35px;
        height: 35px;
        font-size: 24px;
    }
    
    .slider-arrow-left {
        left: -15px;
    }
    
    .slider-arrow-right {
        right: -15px;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .handdrawn-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .handdrawn-text .section-title {
        text-align: center;
    }
    
    .handdrawn-image img {
        max-width: 350px;
    }
    
    .tokenomics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
    }
    
    .social-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons button {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 600px) {
    .section-title {
        font-size: 32px;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-content h2 {
        font-size: 22px;
    }
    
    .handdrawn-text .section-title {
        font-size: 28px;
    }
    
    .handdrawn-description {
        font-size: 18px;
    }
    
    .handdrawn-image img {
        max-width: 280px;
    }
    
    .tokenomics-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}

