/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #FF6B35;
    --secondary-color: #F7931E;
    --accent-color: #FFD23F;
    --dark-color: #2C1810;
    --light-color: #FFF8F0;
    --purple-color: #8B5CF6;
    --blue-color: #3B82F6;
    --green-color: #10B981;
    --pink-color: #EC4899;
    
    --gradient-primary: linear-gradient(135deg, #FF6B35 0%, #F7931E 50%, #FFD23F 100%);
    --gradient-secondary: linear-gradient(135deg, #8B5CF6 0%, #3B82F6 100%);
    --gradient-accent: linear-gradient(135deg, #10B981 0%, #06B6D4 100%);
    
    --shadow-light: 0 4px 20px rgba(255, 107, 53, 0.2);
    --shadow-medium: 0 8px 30px rgba(255, 107, 53, 0.3);
    --shadow-heavy: 0 15px 50px rgba(255, 107, 53, 0.4);
    
    --border-radius: 20px;
    --border-radius-small: 12px;
    --border-radius-large: 30px;
}

body {
    font-family: 'Nunito', sans-serif;
    background: linear-gradient(135deg, #FFF8F0 0%, #FFE4B5 100%);
    color: var(--dark-color);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(30, 30, 60, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 2px solid rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(30, 30, 60, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-text {
    font-family: 'Fredoka One', cursive;
    font-size: 28px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-emoji {
    font-size: 28px;
    animation: bounce 2s infinite;
}

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

.nav-link {
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 16px;
    position: relative;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: var(--border-radius-small);
}

.nav-link:hover {
    color: var(--primary-color);
    background: rgba(255, 107, 53, 0.1);
    transform: translateY(-2px);
}

.buy-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-light);
}

.buy-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-medium);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: url('unnamed (15).png');
    background-size: contain;
    background-position: right center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 2;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-elements > div {
    position: absolute;
    font-size: 30px;
    animation: float 6s ease-in-out infinite;
    opacity: 0.7;
}

.float-coin { top: 20%; left: 10%; animation-delay: 0s; }
.float-rocket { top: 15%; right: 15%; animation-delay: 1s; }
.float-diamond { top: 60%; left: 5%; animation-delay: 2s; }
.float-fire { top: 70%; right: 10%; animation-delay: 3s; }
.float-moon { top: 30%; left: 80%; animation-delay: 4s; }
.float-star { top: 80%; left: 70%; animation-delay: 5s; }

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    min-height: 80vh;
    max-width: 600px;
    z-index: 3;
    position: relative;
    margin-left: 50px;
    padding-right: 50px;
}

.hero-title {
    margin-bottom: 20px;
}

.title-main {
    display: block;
    font-family: 'Fredoka One', cursive;
    font-size: clamp(3rem, 8vw, 5rem);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
    animation: glow 2s ease-in-out infinite alternate;
}

.title-sub {
    display: block;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: white;
    font-weight: 800;
    margin-top: 10px;
}


.hero-description {
    font-size: 18px;
    color: white;
    margin-bottom: 30px;
    line-height: 1.8;
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    justify-content: flex-start;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 900;
    color: var(--primary-color);
    font-family: 'Fredoka One', cursive;
}

.stat-label {
    display: block;
    font-size: 14px;
    color: white;
    opacity: 0.8;
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-light);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-heavy);
}

.btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px) scale(1.05);
}

.btn-primary.large, .btn-secondary.large {
    padding: 20px 40px;
    font-size: 18px;
}

.hero-image {
    display: none;
}

.image-container {
    display: none;
}

.hero-img {
    display: none;
}

.image-glow {
    display: none;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: 'Fredoka One', cursive;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--dark-color);
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 100px 0;
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0.5) 100%),
        url('unnamed (5).png');
    background-size: contain;
    background-position: right center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.05) 100%);
    z-index: 1;
    pointer-events: none;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-text {
    display: grid;
    gap: 30px;
}

.about-card {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(247, 147, 30, 0.05) 100%);
    padding: 30px;
    border-radius: var(--border-radius);
    border: 2px solid rgba(255, 107, 53, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-color);
}

.card-icon {
    font-size: 40px;
    margin-bottom: 15px;
    display: block;
}

.about-card h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.about-card p {
    color: var(--dark-color);
    opacity: 0.8;
    line-height: 1.7;
}

.about-img {
    display: none;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: linear-gradient(135deg, #F0F8FF 0%, #E6F3FF 100%);
}

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

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-heavy);
    border-color: var(--primary-color);
}

.feature-icon {
    font-size: 50px;
    margin-bottom: 20px;
    display: block;
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--dark-color);
    opacity: 0.8;
    line-height: 1.7;
}

/* Tokenomics Section */
.tokenomics {
    padding: 100px 0;
    background: white;
}

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

.chart-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.pie-chart {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: conic-gradient(
        var(--primary-color) 0deg 126deg,
        var(--secondary-color) 126deg 216deg,
        var(--purple-color) 216deg 288deg,
        var(--blue-color) 288deg 324deg,
        #2C1810 324deg 360deg
    );
    position: relative;
    box-shadow: var(--shadow-medium);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pie-chart .slice {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.pie-chart .slice-1 {
    transform: rotate(63deg);
}

.pie-chart .slice-2 {
    transform: rotate(171deg);
}

.pie-chart .slice-3 {
    transform: rotate(252deg);
}

.pie-chart .slice-4 {
    transform: rotate(306deg);
}

.pie-chart .slice-5 {
    transform: rotate(342deg);
}

.pie-chart .slice-label {
    background: rgba(255, 255, 255, 0.9);
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    color: var(--dark-color);
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transform: rotate(-63deg);
    white-space: nowrap;
}

.pie-chart .slice-2 .slice-label {
    transform: rotate(-171deg);
}

.pie-chart .slice-3 .slice-label {
    transform: rotate(-252deg);
}

.pie-chart .slice-4 .slice-label {
    transform: rotate(-306deg);
}

.pie-chart .slice-5 .slice-label {
    transform: rotate(-342deg);
}

.tokenomics-details {
    space-y: 30px;
}

.token-info {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(247, 147, 30, 0.05) 100%);
    padding: 30px;
    border-radius: var(--border-radius);
    margin-bottom: 30px;
}

.token-info h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 107, 53, 0.1);
}

.info-item:last-child {
    border-bottom: none;
}

.label {
    font-weight: 600;
    color: var(--dark-color);
}

.value {
    font-weight: 800;
    color: var(--primary-color);
}

.token-features {
    display: grid;
    gap: 15px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: white;
    border-radius: var(--border-radius-small);
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-medium);
}

.feature-icon {
    font-size: 24px;
}

/* Roadmap Section */
.roadmap {
    padding: 100px 0;
    background: 
        linear-gradient(135deg, rgba(255, 248, 240, 0.5) 0%, rgba(255, 228, 181, 0.4) 100%),
        url('unnamed (4).png');
    background-size: contain;
    background-position: right center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

.roadmap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(255, 248, 240, 0.3) 0%, rgba(255, 248, 240, 0.2) 50%, rgba(255, 248, 240, 0.05) 100%);
    z-index: 1;
    pointer-events: none;
}

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

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-primary);
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-item:nth-child(even) .timeline-content {
    text-align: right;
}

.timeline-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-medium);
    margin: 0 40px;
}

.timeline-content {
    flex: 1;
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    position: relative;
    max-width: 350px;
}

.timeline-content h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.timeline-content p {
    color: var(--dark-color);
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 15px;
}

.status {
    display: inline-block;
    padding: 6px 12px;
    border-radius: var(--border-radius-small);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.status.completed {
    background: var(--green-color);
    color: white;
}

.status.active {
    background: var(--primary-color);
    color: white;
    animation: pulse 2s infinite;
}

.status.upcoming {
    background: var(--purple-color);
    color: white;
}

.roadmap-img {
    display: none;
}

/* Community Section */
.community {
    padding: 100px 0;
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0.5) 100%),
        url('unnamed (9).png');
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

.community::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.05) 100%);
    z-index: 1;
    pointer-events: none;
}

.streaming-benefits {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    margin-bottom: 60px;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: start;
    padding: 0 20px;
}

.benefits-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 300px;
    margin-left: 0;
}

.benefits-center {
    flex: 1;
    /* Empty space for the background image */
}

.benefits-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 300px;
    margin-right: 0;
}

.benefit-card {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(247, 147, 30, 0.05) 100%);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    border: 2px solid rgba(255, 107, 53, 0.1);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-color);
}

.benefit-icon {
    font-size: 40px;
    margin-bottom: 15px;
    display: block;
}

.benefit-card h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.benefit-card p {
    color: var(--dark-color);
    opacity: 0.8;
    line-height: 1.6;
}

.stat-card {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(247, 147, 30, 0.05) 100%);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    border: 2px solid rgba(255, 107, 53, 0.1);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-color);
}

.stat-icon {
    font-size: 40px;
    margin-bottom: 15px;
    display: block;
}

.stat-card .stat-number {
    font-size: 36px;
    font-weight: 900;
    color: var(--primary-color);
    font-family: 'Fredoka One', cursive;
    display: block;
    margin-bottom: 5px;
}

.stat-card .stat-label {
    font-size: 14px;
    color: var(--dark-color);
    opacity: 0.8;
    font-weight: 600;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-light);
}

.social-link:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-medium);
}

.social-link.telegram { background: linear-gradient(135deg, #0088cc 0%, #005580 100%); }
.social-link.twitter { background: linear-gradient(135deg, #1da1f2 0%, #0d8bd9 100%); }
.social-link.discord { background: linear-gradient(135deg, #7289da 0%, #5b6eae 100%); }
.social-link.reddit { background: linear-gradient(135deg, #ff4500 0%, #cc3700 100%); }

.social-icon {
    font-size: 20px;
}

.community-img {
    display: none;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-family: 'Fredoka One', cursive;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: white;
    padding: 60px 0 20px;
}

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

.footer-brand p {
    margin-top: 15px;
    opacity: 0.8;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
}

.link-group h4 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.link-group a {
    display: block;
    color: white;
    text-decoration: none;
    margin-bottom: 10px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.link-group a:hover {
    opacity: 1;
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

/* Animations */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

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

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

@keyframes glow {
    0% { text-shadow: 0 4px 20px rgba(255, 107, 53, 0.3); }
    100% { text-shadow: 0 4px 30px rgba(255, 107, 53, 0.6); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .hero-content {
        gap: 40px;
    }
    
    .about-content {
        gap: 40px;
    }
    
    .tokenomics-content {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        height: 0;
        background: rgba(30, 30, 60, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
        transition: all 0.3s ease;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
    
    .nav-menu.active {
        height: 300px;
        top: 100%;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-content {
        align-items: flex-start;
        text-align: left;
        padding-top: 40px;
        max-width: 100%;
        margin-left: 20px;
        padding-right: 20px;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }
    
    .stat {
        min-width: 100px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .tokenomics-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .pie-chart {
        width: 250px;
        height: 250px;
    }
    
    .timeline-item {
        flex-direction: column !important;
        text-align: center !important;
        margin-bottom: 40px;
    }
    
    .timeline-item .timeline-content {
        max-width: 100%;
        margin-top: 20px;
    }
    
    .timeline-icon {
        margin: 0 0 20px 0;
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .roadmap-timeline::before {
        display: none;
    }
    
    .streaming-benefits {
        width: 100%;
        left: auto;
        right: auto;
        margin-left: auto;
        margin-right: auto;
        flex-direction: column;
        padding: 0;
        gap: 20px;
    }
    
    .benefits-left,
    .benefits-right {
        gap: 20px;
        max-width: 100%;
        margin: 0;
    }
    
    .benefits-center {
        display: none;
    }
    
    .social-links {
        display: flex;
        justify-content: center;
        gap: 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn-primary.large, .btn-secondary.large {
        width: 100%;
        max-width: 300px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .logo-text {
        font-size: 24px;
    }
    
    .logo-emoji {
        font-size: 24px;
    }
    
    .buy-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .title-main {
        font-size: 2.5rem;
    }
    
    .title-sub {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-stats {
        gap: 15px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    .hero-content {
        margin-left: 15px;
        padding-right: 15px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 14px 24px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .about-card {
        padding: 20px;
    }
    
    .about-card h3 {
        font-size: 20px;
    }
    
    .card-icon {
        font-size: 32px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .feature-icon {
        font-size: 40px;
    }
    
    .feature-card h3 {
        font-size: 20px;
    }
    
    .pie-chart {
        width: 200px;
        height: 200px;
    }
    
    .token-info {
        padding: 20px;
    }
    
    .info-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .timeline-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .timeline-content {
        padding: 20px;
    }
    
    .timeline-content h3 {
        font-size: 18px;
    }
    
    .stat-card {
        padding: 20px;
    }
    
    .stat-card .stat-number {
        font-size: 28px;
    }
    
    .social-links {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .social-link {
        width: 100%;
        max-width: 250px;
        justify-content: center;
        padding: 12px 20px;
        margin: 0 auto;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 16px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .floating-elements > div {
        font-size: 20px;
    }
    
    /* Hide some floating elements on mobile for performance */
    .float-diamond,
    .float-star {
        display: none;
    }
}

@media (max-width: 320px) {
    .title-main {
        font-size: 2rem;
    }
    
    .title-sub {
        font-size: 1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .btn-primary, .btn-secondary {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .pie-chart {
        width: 150px;
        height: 150px;
    }
    
    .social-link {
        padding: 10px 15px;
        font-size: 14px;
    }
    
    .social-icon {
        font-size: 16px;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-img,
    .about-img,
    .roadmap-img,
    .community-img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Mobile background adjustments */
@media (max-width: 768px) {
    .hero {
        background-attachment: scroll;
        background-size: cover;
        background-position: center right;
    }
    
    .about {
        background-attachment: scroll;
        background-size: cover;
        background-position: center right;
    }
    
    .roadmap {
        background-attachment: scroll;
        background-size: cover;
        background-position: center right;
    }
    
    .community {
        background-attachment: scroll;
        background-size: cover;
        background-position: center center;
    }
}

/* Landscape orientation on mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 120vh;
        background-size: contain;
        background-position: right center;
    }
    
    .hero-content {
        min-height: auto;
        padding: 40px 0;
    }
    
    .floating-elements {
        display: none;
    }
}

/* Print styles */
@media print {
    .navbar,
    .floating-elements,
    .cta,
    .footer {
        display: none;
    }
    
    .hero {
        min-height: auto;
        page-break-after: always;
    }
    
    * {
        color: black !important;
        background: white !important;
    }
}

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

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

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s ease;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}
