:root {
    --primary: #1e90ff;
    --secondary: #8a2be2;
    --accent: #6366f1;
    --bg-primary: #ffffff;
    --bg-secondary: #fafbfc;
    --bg-tertiary: #f6f8fa;
    --text-primary: #0d1117;
    --text-secondary: #656d76;
    --text-muted: #8b949e;
    --border-light: #d0d7de;
    --border-default: #d1d9e0;
    --card-bg: #ffffff;
    --gradient: linear-gradient(135deg, #1e90ff, #8a2be2);
    --gradient-subtle: linear-gradient(135deg, rgba(30, 144, 255, 0.1), rgba(138, 43, 226, 0.1));
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid var(--border-default);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
}

.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    background: var(--gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

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

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    position: static;
    background: transparent;
    padding: 0;
    box-shadow: none;
    opacity: 1;
    transform: none;
}

.mobile-only {
    display: none;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    display: block;
    padding: 0;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.social-links {
    display: flex;
    gap: 0.3rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    color: var(--text-secondary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all 0.3s ease;
    background: var(--bg-primary);
}

.social-link:hover {
    color: var(--primary);
    border-color: var(--primary);
    background: rgba(30, 144, 255, 0.05);
}

.btn-primary {
    background: var(--gradient);
    color: white;
    padding: 0.7rem 1.2rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-md);
    white-space: nowrap;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--bg-primary);
    color: var(--text-primary);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid var(--border-default);
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary:hover {
    background: var(--bg-secondary);
    border-color: var(--primary);
    transform: translateY(-1px);
}

.btn-buy {
    background: var(--gradient);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    width: 100%;
    margin-bottom: 1rem;
    transition: opacity 0.3s ease;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-buy:disabled {
    background: var(--text-muted);
    cursor: not-allowed;
    opacity: 0.6;
}

.btn-buy .status-badge {
    position: static;
    margin-left: 0.5rem;
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.hero {
    padding: 8rem 0 6rem;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-subtle);
    opacity: 0.2;
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: var(--gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.section {
    padding: 6rem 0;
    text-align: center;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: var(--gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.featured-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    margin-bottom: 2rem;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.about-content {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.about-text {
    max-width: 600px;
    text-align: left;
}

.about-description {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.stats-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.stat-card {
    background: var(--bg-secondary);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    min-width: 150px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    color: var(--text-secondary);
}

.games-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.game-card {
    background: var(--card-bg);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    position: relative;
}

.game-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.game-header {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.game-content {
    padding: 1.5rem;
}

.game-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.status-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    font-weight: 600;
}

.community-content {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.community-text {
    max-width: 600px;
    text-align: left;
}

.community-description {
    color: var(--text-secondary);
    line-height: 1.7;
}

.community-features {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 3rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--bg-secondary);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    min-width: 250px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    font-size: 2rem;
}

.feature-item h4 {
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.feature-item p {
    color: var(--text-secondary);
}

.community-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.roadmap-section {
    background: var(--bg-primary);
}

.roadmap-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.roadmap-timeline {
    position: relative;
    padding: 2rem 0;
}

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

.roadmap-stage {
    position: relative;
    margin-bottom: 3rem;
    padding: 1rem;
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    width: 45%;
    text-align: left;
}

.roadmap-stage:nth-child(odd) {
    margin-left: 5%;
}

.roadmap-stage:nth-child(even) {
    margin-left: 50%;
}

.roadmap-stage::before {
    content: '';
    position: absolute;
    top: 20px;
    width: 20px;
    height: 20px;
    background: var(--primary);
    border-radius: 50%;
    border: 3px solid var(--bg-primary);
}

.roadmap-stage:nth-child(odd)::before {
    right: -32px;
}

.roadmap-stage:nth-child(even)::before {
    left: -32px;
}

.stage-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.stage-milestones {
    list-style: none;
    padding-left: 1rem;
}

.stage-milestones li {
    position: relative;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    padding-left: 1.5rem;
}

.stage-milestones li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 1.2rem;
}

.token-section {
    background: var(--gradient-subtle);
}

.token-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 0 1.5rem;
}

.token-info {
    text-align: center;
    max-width: 600px;
}

.token-badge {
    background: var(--gradient-subtle);
    color: var(--secondary);
    padding: 0.375rem 0.875rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: inline-block;
}

.token-description {
    margin-bottom: 2rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.contract-info,
.coingecko-info,
.coinmarketcap-info {
    margin-bottom: 2rem;
    width: 100%;
    max-width: 500px;
}

.contract-label,
.coingecko-info .contract-label,
.coinmarketcap-info .contract-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.contract-address,
.coingecko-link,
.coinmarketcap-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    justify-content: center;
}

.address-text,
.coingecko-link a,
.coinmarketcap-link .address-text {
    font-family: 'Monaco', monospace;
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-decoration: none;
}

.coingecko-link a:hover {
    color: var(--primary);
}

.token-hype {
    text-align: center;
    max-width: 600px;
    background: rgba(255, 255, 255, 0.8);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.hype-description {
    font-weight: 600;
    color: var(--primary);
    line-height: 1.6;
}

.token-propositions {
    text-align: left;
    max-width: 600px;
    background: var(--bg-secondary);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    width: 100%;
}

.propositions-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.propositions-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.propositions-list li {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.propositions-list strong {
    color: var(--primary);
}

.purchase-actions {
    width: 100%;
    max-width: 400px;
}

.footer {
    background: var(--bg-primary);
    border-top: 1px solid var(--border-light);
    padding: 4rem 0;
    text-align: center;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    background: var(--gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.footer-subtitle {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.newsletter-form input {
    padding: 1rem 1.5rem;
    border: 1px solid var(--border-default);
    border-radius: var(--radius-lg);
    background: var(--bg-primary);
    color: var(--text-primary);
    font-size: 1rem;
    min-width: 280px;
    flex: 1;
    max-width: 400px;
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(30, 144, 255, 0.1);
}

.newsletter-btn {
    background: var(--gradient);
    color: white;
    padding: 1rem 2rem;
    border-radius: var(--radius-lg);
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.form-actions {
    display: flex;
    justify-content: center;
}

.waitlist-stats {
    margin-bottom: 2rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--primary);
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.footer-contacts {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-contacts a {
    color: var(--primary);
    text-decoration: none;
}

.footer-contacts a:hover {
    text-decoration: underline;
}

.footer-text {
    color: var(--text-muted);
}

.top-banner-cta {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--gradient);
    color: white;
    text-align: center;
    padding: 1rem;
    z-index: 999;
    transition: transform 0.3s ease;
    transform: translateY(-100%);
}

.top-banner-cta.visible {
    transform: translateY(0);
}

.banner-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.banner-text {
    font-size: 0.95rem;
}

.banner-btn {
    background: white;
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
}

.banner-close {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 1.2rem;
    padding: 0.25rem;
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--gradient);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 100;
    font-weight: 600;
}

.sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
}

.sticky-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--card-bg);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 1rem 1.5rem;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    color: var(--text-primary);
    font-weight: 500;
    min-width: 300px;
    max-width: 400px;
}

.toast.success {
    border-left: 4px solid #10b981;
}

.toast.error {
    border-left: 4px solid #ef4444;
}

.toast.warning {
    border-left: 4px solid #f59e0b;
}

.admin-only {
    display: none;
}

.admin-panel {
    position: fixed;
    top: 120px;
    right: 20px;
    background: var(--card-bg);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    min-width: 200px;
}

.admin-panel h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.admin-stats {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-light);
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.mobile-cta {
    margin: 1rem 0;
}

/* === Enhanced Featured By Section (Gaming-Style Moving Marquee) === */
.featured-by-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(30, 144, 255, 0.05), rgba(138, 43, 226, 0.05));
    overflow: hidden;
    position: relative;
}

.featured-by-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
    z-index: 1;
}

.featured-by-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
    z-index: 1;
}

.featured-marquee-container {
    overflow: hidden;
    padding: 2rem 0;
    position: relative;
}

.featured-marquee {
    overflow: hidden;
    white-space: nowrap;
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.marquee-track {
    display: inline-flex;
    animation: marquee 18s linear infinite;
    gap: 6rem;
}

.featured-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    filter: grayscale(100%) brightness(0.7);
    transition: all 0.4s ease;
    padding: 0.5rem;
}

.featured-logo-item:hover {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.1) translateY(-4px);
}

.featured-logo-item img {
    height: 70px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.featured-marquee-container:hover .marquee-track {
    animation-play-state: paused;
}

/* === Enhanced Footer Featured By (Premium Static Showcase) === */
.footer-featured {
    margin: 3rem 0 2rem;
    padding: 2rem 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    position: relative;
}

.footer-featured::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: var(--gradient);
}

.footer-featured-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-featured-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--gradient);
}

.footer-featured-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6rem;
    flex-wrap: wrap;
}

.footer-logo-item {
    filter: grayscale(100%) opacity(0.6);
    transition: all 0.4s ease;
    padding: 0.5rem;
}

.footer-logo-item:hover {
    filter: grayscale(0%) opacity(1);
    transform: translateY(-4px);
}

.footer-logo-item img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

/* ————————————————————
   FULL MOBILE RESPONSIVENESS (Final & Perfect)
   ———————————————————— */
@media (max-width: 992px) {
    .hero { padding: 9rem 0 5rem; }
    .about-content, .community-content { flex-direction: column; gap: 3rem; }
    .about-text, .community-text { text-align: center; max-width: 100%; }

    .roadmap-timeline::before { left: 20px; transform: none; }
    .roadmap-stage { width: calc(100% - 80px); margin-left: 60px !important; }
    .roadmap-stage::before { left: -42px !important; right: auto !important; }
}

@media (max-width: 768px) {
    /* Perfectly positioned hamburger in top-right corner */
    .hamburger {
        display: flex;
        position: absolute;
        right: 1.5rem;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        max-width: 320px;
        background: var(--bg-primary);
        flex-direction: column;
        justify-content: flex-start;
        padding: 6rem 2rem 2rem;
        gap: 1.5rem;
        box-shadow: -10px 0 30px rgba(0,0,0,0.15);
        transition: right 0.35s ease;
        z-index: 999;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-buttons { display: none; }
    .mobile-only { display: block; }

    .hero { padding: 8rem 0 4rem; }
    .hero-actions { flex-direction: column; align-items: center; }
    .btn-large { width: 100%; max-width: 320px; }

    .newsletter-form { flex-direction: column; }
    .newsletter-form input { max-width: 100%; }

    .marquee-track { gap: 3rem; animation-duration: 14s; }
    .featured-logo-item img { height: 50px; }
}

@media (max-width: 480px) {
    .container { padding: 0 1rem; }
    .hero { padding: 7rem 0 3rem; }
    .section { padding: 4rem 0; }

    .hamburger { right: 1rem; }

    .top-banner-cta .banner-content { flex-direction: column; gap: 0.75rem; padding: 0.75rem; }
    .banner-text { font-size: 0.9rem; }

    .sticky-cta {
        bottom: 1rem; right: 1rem; left: 1rem;
        padding: 0.9rem 1.5rem;
        border-radius: 50px;
        font-size: 0.95rem;
    }

    .marquee-track { gap: 2rem; animation-duration: 12s; }
    .featured-logo-item img, .footer-logo-item img { height: 45px; }
    .game-header { height: 160px; }
}