:root {
    --primary-black: #0a0a0a;
    --secondary-black: #1a1a1a;
    --primary-purple: #8B5CF6;
    --secondary-purple: #7C3AED;
    --primary-yellow: #FCD34D;
    --secondary-yellow: #F59E0B;
    --text-light: #ffffff;
    --text-gray: #9CA3AF;
    --border-color: #374151;
}

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

body {
    font-family: 'Roboto', sans-serif;
    background: var(--primary-black);
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.6;
    position: relative;
    width: 100%;
}

html {
    overflow-x: hidden;
    width: 100%;
}

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

/* Logo Container */
.logo-container {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
}

.logo-placeholder {
    width: 120px;
    height: 45px;
    background: var(--primary-black);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(139, 92, 246, 0.3);
    border: 2px solid var(--primary-purple);
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 5px;
}

.logo-placeholder:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 30px rgba(252, 211, 77, 0.5);
}

.logo-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 13px;
}

/* Navigation Menu */
.navigation-menu {
    position: fixed !important;
    top: 20px !important;
    right: 20px !important;
    display: flex !important;
    align-items: center !important;
    gap: 20px !important;
    z-index: 1000 !important;
}

/* Language Dropdown */
.language-dropdown {
    position: relative;
}

.language-dropdown-toggle {
    background: rgba(10, 10, 10, 0.9);
    border: 2px solid var(--primary-purple);
    color: var(--primary-yellow);
    padding: 10px 20px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 14px;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    min-width: 100px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.language-dropdown-toggle:hover {
    border-color: var(--primary-yellow);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(252, 211, 77, 0.3);
}

.current-lang-flag {
    font-size: 20px;
    display: inline-block;
    line-height: 1;
}

.current-lang-name {
    font-weight: 700;
    font-size: 14px;
}

.dropdown-arrow {
    margin-left: auto;
    transition: transform 0.3s ease;
}

.language-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.language-dropdown-menu {
    position: absolute !important;
    top: calc(100% + 10px) !important;
    right: 0 !important;
    background: rgba(10, 10, 10, 0.95);
    border: 2px solid var(--primary-purple);
    border-radius: 15px;
    padding: 10px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 10000 !important;
}

.language-dropdown.active .language-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 15px;
    background: transparent;
    border: none;
    color: var(--primary-purple);
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 10px;
    font-size: 14px;
    text-decoration: none;
}

.language-option:hover {
    background: rgba(139, 92, 246, 0.2);
    color: var(--primary-yellow);
    transform: translateX(5px);
}

.language-option.active {
    background: var(--primary-purple);
    color: var(--primary-yellow);
}

.lang-flag {
    font-size: 22px;
    width: 28px;
    text-align: center;
    display: inline-block;
    line-height: 1;
}

.lang-name {
    flex: 1;
    text-align: left;
    font-weight: 700;
}


/* Menu Items (for future use) */
.menu-items {
    display: flex;
    gap: 15px;
    align-items: center;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 0 400px 0;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-black) 100%);
    position: relative;
        overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, var(--primary-purple) 0%, transparent 70%);
    opacity: 0.1;
    animation: rotate 30s linear infinite;
    transform-origin: center;
    pointer-events: none;
}

@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

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

.hero-content h1 {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(60px, 10vw, 120px);
    color: var(--primary-yellow);
    margin-bottom: 10px;
    letter-spacing: 3px;
    text-shadow: 0 0 30px rgba(252, 211, 77, 0.5);
}

/* Glitch Effect */
.glitch {
    position: relative;
    animation: glitch 2s infinite;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    animation: glitch-1 0.5s infinite;
    color: var(--primary-purple);
    z-index: -1;
}

.glitch::after {
    animation: glitch-2 0.5s infinite;
    color: var(--secondary-yellow);
    z-index: -2;
}

@keyframes glitch {
    0%, 100% { text-shadow: 0 0 30px rgba(252, 211, 77, 0.5); }
    50% { text-shadow: 0 0 40px rgba(139, 92, 246, 0.8); }
}

@keyframes glitch-1 {
    0%, 100% { clip: rect(42px, 9999px, 44px, 0); transform: translate(0); }
    50% { clip: rect(12px, 9999px, 59px, 0); transform: translate(-2px, -2px); }
}

@keyframes glitch-2 {
    0%, 100% { clip: rect(25px, 9999px, 90px, 0); transform: translate(0); }
    50% { clip: rect(65px, 9999px, 119px, 0); transform: translate(2px, 2px); }
}

.subtitle {
    font-size: 36px;
    color: var(--primary-purple);
    margin-bottom: 20px;
    font-weight: 700;
}

.tagline {
    font-size: 20px;
    color: var(--text-gray);
    margin-bottom: 40px;
}

/* Token Info */
.token-info {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid var(--primary-purple);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item .label {
    color: var(--text-gray);
    margin-right: 10px;
    font-weight: 500;
}

.info-item .value {
    color: var(--text-light);
    font-weight: 700;
}

.contract-address {
    font-family: monospace;
    font-size: 14px;
    word-break: break-all;
}

.copy-btn {
    background: var(--primary-purple);
    border: none;
    padding: 5px 10px;
    margin-left: 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background: var(--secondary-purple);
    transform: scale(1.1);
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
}

/* Platform Logo Buttons */
.platform-logo-btn {
    display: inline-block;
    background: transparent;
    border-radius: 15px;
    padding: 15px 25px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-purple);
    min-width: 150px;
    text-align: center;
}

.platform-logo-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
    background: rgba(139, 92, 246, 0.1);
    border-color: var(--primary-yellow);
}

.platform-logo-btn.large {
    padding: 20px 35px;
    min-width: 180px;
}

.platform-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.platform-logo-btn.large .platform-logo {
    height: 50px;
}

.btn {
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-yellow), var(--secondary-yellow));
    color: var(--primary-black);
    box-shadow: 0 10px 30px rgba(252, 211, 77, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(252, 211, 77, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-purple);
    border: 2px solid var(--primary-purple);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
    position: relative;
    font-weight: 700;
}

.btn-secondary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
    color: var(--text-light);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.5);
    border-color: var(--secondary-purple);
}

.btn-secondary:hover::after {
    left: 100%;
}

.btn-secondary span {
    position: relative;
    z-index: 1;
}

/* Make desktop nav buttons black by default */
.navigation-menu.desktop-only .btn.btn-secondary {
    background: var(--primary-black);
}

.btn-chart {
    background: linear-gradient(135deg, #10B981, #059669);
    color: var(--text-light);
    border: 2px solid #10B981;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
    position: relative;
    font-weight: 700;
}

.btn-chart::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-chart:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.5);
    background: linear-gradient(135deg, #059669, #047857);
    border-color: #059669;
}

.btn-chart:hover::after {
    left: 100%;
}

.btn-chart > span {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.chart-icon {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    transition: transform 0.3s ease;
}

.btn-chart:hover .chart-icon {
    transform: translateY(-2px) scale(1.1);
}

.btn-large {
    padding: 20px 60px;
    font-size: 18px;
}

/* Quick action buttons (shared) */
.quick-btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    text-transform: none;
    letter-spacing: 0.2px;
    border: 2px solid transparent;
    transition: all 0.25s ease-in-out;
    text-align: center;
}
.quick-btn span { position: relative; z-index: 1; }
.quick-btn--purple {
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
    color: #fff;
    border-color: var(--primary-purple);
    box-shadow: 0 8px 22px rgba(139, 92, 246, 0.25);
}
.quick-btn--purple:hover {
    background: linear-gradient(135deg, var(--primary-yellow), var(--primary-yellow));
    color: var(--primary-black);
    border-color: var(--primary-yellow);
    box-shadow: 0 10px 28px rgba(252, 211, 77, 0.35);
    transform: translateY(-2px);
}
.quick-btn--yellow {
    background: linear-gradient(135deg, var(--primary-yellow), var(--primary-yellow));
    color: var(--primary-black);
    border-color: var(--primary-yellow);
    box-shadow: 0 8px 22px rgba(252, 211, 77, 0.25);
}
.quick-btn--yellow:hover {
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
    color: #fff;
    border-color: var(--primary-purple);
    box-shadow: 0 10px 28px rgba(139, 92, 246, 0.35);
    transform: translateY(-2px);
}

/* Hero Image */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.debilex-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(139, 92, 246, 0.4));
    transition: transform 0.3s ease;
}

.debilex-image:hover {
    transform: scale(1.05);
}

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

/* Story Section */
.story {
    padding: 100px 0;
    background: var(--secondary-black);
    position: relative;
    transform: none !important; /* Disable parallax transform */
}

.story::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-purple), transparent);
}

.section-title {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(40px, 5vw, 60px);
    color: var(--primary-yellow);
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 2px;
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
}

.story-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--text-gray);
}

.story-text blockquote {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(252, 211, 77, 0.1));
    border-left: 4px solid var(--primary-yellow);
    padding: 30px;
    margin: 40px 0;
    font-size: 22px;
    font-style: italic;
    color: var(--text-light);
    border-radius: 10px;
    position: relative;
}

.story-text blockquote::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 80px;
    color: var(--primary-purple);
    opacity: 0.3;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--primary-black);
}

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

.feature-card {
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-yellow), var(--primary-purple));
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: translateX(0);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-purple);
    background: rgba(139, 92, 246, 0.1);
}

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

.feature-card h3 {
    color: var(--primary-yellow);
    margin-bottom: 15px;
    font-size: 24px;
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* How to Buy Section */
.how-to-buy {
    padding: 100px 0;
    background: var(--secondary-black);
}

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

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 700;
    color: var(--text-light);
    margin: 0 auto 20px;
    position: relative;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.step h3 {
    color: var(--primary-yellow);
    margin-bottom: 15px;
    font-size: 22px;
}

.step p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Buy Buttons Section */
.buy-buttons {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 60px;
}

/* Register Section */
.register-section {
    text-align: center;
    margin-top: 40px;
}

.register-text {
    color: var(--text-gray);
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 500;
}

.btn-register {
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
    color: var(--text-light);
    border: none;
    padding: 12px 35px;
    font-size: 14px;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.btn-register:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.4);
    background: linear-gradient(135deg, var(--secondary-purple), var(--primary-purple));
}

/* Warning Section */
.warning {
    padding: 80px 0;
    background: var(--primary-black);
}

.warning-box {
    background: rgba(245, 158, 11, 0.1);
    border: 2px solid var(--secondary-yellow);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.warning-box h3 {
    color: var(--primary-yellow);
    font-size: 32px;
    margin-bottom: 20px;
}

.warning-box p {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.8;
}

/* Social Media Links */
.social-links {
    display: flex !important;
    gap: 15px !important;
    align-items: center !important;
    justify-content: center !important;
    margin-top: 20px !important;
}

.hero-social {
    margin-top: 25px !important;
    margin-bottom: 25px !important;
}

.social-link {
    width: 45px !important;
    height: 45px !important;
    min-width: 45px !important;
    min-height: 45px !important;
    border-radius: 50% !important;
    background: #8B5CF6 !important;
    background: linear-gradient(135deg, #8B5CF6, #7C3AED) !important;
    border: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #FCD34D !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    overflow: hidden !important;
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.5) !important;
    flex-shrink: 0 !important;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-yellow), var(--secondary-yellow));
    transform: scale(0);
    transition: transform 0.3s ease;
    z-index: 0;
}

.social-link:hover::before {
    transform: scale(1);
}

.social-link:hover {
    transform: translateY(-5px) scale(1.15) !important;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.7) !important;
}

.social-link:hover svg {
    fill: var(--primary-black) !important;
}

.social-link i {
    font-size: 20px !important;
    color: var(--primary-yellow) !important;
    width: auto !important;
    height: auto !important;
}

.social-link i::before {
    color: var(--primary-yellow) !important;
}

.social-link svg {
    width: 24px !important;
    height: 24px !important;
    max-width: 24px !important;
    max-height: 24px !important;
    fill: #FCD34D !important;
    color: #FCD34D !important;
    transition: fill 0.3s ease !important;
    position: relative !important;
    z-index: 1 !important;
    display: block !important;
}

/* Footer */
.footer {
    padding: 60px 0 40px;
    background: var(--secondary-black);
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.footer-logo h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 36px;
    color: var(--primary-yellow);
    margin-bottom: 5px;
}

.footer-logo p {
    color: var(--primary-purple);
    font-weight: 700;
}

.footer-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.footer-links {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
    font-size: 16px;
}

.footer-links a:hover {
    color: var(--primary-yellow);
}

.footer-social {
    text-align: center;
}

.footer-social h4 {
    color: var(--primary-yellow) !important;
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-social .social-links {
    margin-top: 15px;
}

.footer-info {
    text-align: right;
}

.footer-info p {
    color: var(--text-gray);
    font-size: 14px;
}

/* Mobile Menu Styles */
.desktop-only {
    display: flex;
}

.mobile-only {
    display: none !important;
}

/* Hamburger Menu Toggle */
.mobile-menu-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1001;
    width: 35px;
    height: 30px;
    cursor: pointer;
    display: none; /* Hidden by default on desktop */
    flex-direction: column;
    justify-content: space-between;
    padding: 5px;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--primary-yellow);
    border-radius: 3px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(252, 211, 77, 0.3);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background: linear-gradient(135deg, var(--secondary-black) 0%, var(--primary-black) 100%);
    z-index: 1000;
    transition: right 0.3s ease;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-purple) rgba(139, 92, 246, 0.15);
}

.mobile-menu::-webkit-scrollbar {
    width: 10px;
}

.mobile-menu::-webkit-scrollbar-track {
    background: rgba(139, 92, 246, 0.12);
    border-radius: 8px;
}

.mobile-menu::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #8B5CF6, #7C3AED);
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 2px 8px rgba(124, 58, 237, 0.35);
}

.mobile-menu::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #A78BFA, #8B5CF6);
}

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

.mobile-menu-header {
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(139, 92, 246, 0.1);
}

.mobile-menu-header h3 {
    color: var(--primary-yellow);
    font-size: 20px;
    margin: 0;
    font-family: 'Bebas Neue', cursive;
    letter-spacing: 1px;
}

.close-menu {
    background: transparent;
    border: none;
    color: var(--primary-yellow);
    font-size: 28px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.close-menu:hover {
    transform: rotate(90deg);
}

/* Mobile Language List */
.mobile-language-list {
    flex: 1;
    overflow-y: auto;
    padding: 20px 0;
}

.mobile-lang-btn {
    width: 100%;
    padding: 15px 20px;
    background: transparent;
    border: none;
    color: var(--text-gray);
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
    position: relative;
    text-decoration: none;
}

/* Make the mobile language names bold, but not the flag */
.mobile-lang-btn span:last-child {
    font-weight: 700;
}

.mobile-lang-btn:hover {
    background: rgba(139, 92, 246, 0.1);
    color: var(--text-light);
}

.mobile-lang-btn.active {
    background: linear-gradient(90deg, rgba(139, 92, 246, 0.2), transparent);
    color: var(--primary-yellow);
    font-weight: 700;
}

.mobile-lang-btn.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary-yellow);
}

.mobile-lang-btn .flag {
    font-size: 24px;
    width: 30px;
    text-align: center;
}

/* Mobile Menu Footer */
.mobile-menu-footer {
    padding: 20px;
    border-top: 1px solid var(--border-color);
    text-align: center;
    background: rgba(139, 92, 246, 0.05);
}

.mobile-menu-footer p {
    color: var(--text-gray);
    font-size: 12px;
    margin: 0;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
    display: none;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.mobile-menu-overlay.active {
    display: block;
}

/* Desktop styles - ensure hamburger is hidden */
@media (min-width: 969px) {
    .mobile-menu-toggle {
        display: none !important;
    }
    
    .mobile-menu {
        display: none !important;
    }
    
    .mobile-menu-overlay {
        display: none !important;
    }
    
    .mobile-only {
        display: none !important;
    }
    
    .desktop-only {
        display: flex !important;
    }
    
    }

/* Responsive Design */
@media (max-width: 968px) {
    .desktop-only {
        display: none !important;
    }
    
    .mobile-only {
        display: flex !important;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
    }
    /* Disable parallax on tablets and mobile */
    .hero {
        transform: none !important;
        padding: 100px 0 60px 0;
    }
    
    .story {
        transform: none !important;
        padding: 80px 0 60px 0;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        order: 2;
    }
    
    .hero-image {
        order: 1;
    }
    
    .debilex-image {
        max-width: 350px;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .platform-logo-btn {
        min-width: 130px;
        padding: 12px 20px;
    }
    
    .platform-logo {
        height: 35px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .footer-center {
        order: 2;
    }
    
    .footer-logo {
        order: 1;
    }
    
    .footer-info {
        text-align: center;
        order: 3;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .logo-container {
        top: 10px;
        left: 10px;
    }
    
    .logo-placeholder {
        width: 80px;
        height: 30px;
    }
    
    .navigation-menu {
        top: 10px;
        right: 60px; /* Make room for hamburger menu */
    }
    
    .language-dropdown-toggle {
        padding: 8px 12px;
        font-size: 12px;
        min-width: 80px;
    }
    
    .current-lang-flag {
        font-size: 16px;
    }
    
    .current-lang-name {
        font-size: 13px;
    }
    
    .dropdown-arrow {
        width: 10px;
        height: 10px;
    }
    
    .language-dropdown-menu {
        min-width: 180px;
        right: -20px; /* Adjust position on mobile */
    }
    
    .language-option {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .lang-flag {
        font-size: 18px;
    }
    
    .lang-name {
        font-size: 13px;
    }
    
        
    .hero {
        padding: 250px 0 20px 0;
        min-height: 100vh;
        max-height: 100vh;
        overflow: visible;
    }
    
    .hero-content h1 {
        font-size: 40px;
        margin-bottom: 0;
    }
    
    .subtitle {
        font-size: 20px;
        margin-bottom: 5px;
    }
    
    .tagline {
        font-size: 13px;
        margin-bottom: 15px;
    }
    
    .token-info {
        padding: 10px;
        margin-bottom: 15px;
        font-size: 12px;
    }
    
    .info-item {
        margin-bottom: 8px;
    }
    
    .info-item .label {
        font-size: 11px;
    }
    
    .info-item .value {
        font-size: 11px;
    }
    
    .contract-address {
        font-size: 10px;
    }
    
    .copy-btn {
        padding: 3px 6px;
        font-size: 12px;
    }
    
    .hero-image {
        margin-top: 15px;
        margin-bottom: 15px;
    }
    
    .debilex-image {
        max-width: 200px;
        animation: none; /* Wyłączenie animacji float na mobile */
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 12px;
        white-space: nowrap;
    }
    
    .cta-buttons {
        gap: 8px;
        margin-bottom: 15px;
        flex-direction: column;
    }
    
    .hero-social {
        margin-top: 20px;
        margin-bottom: 20px;
    }
    
    .social-link {
        width: 40px !important;
        height: 40px !important;
    }
    
    .social-link svg {
        width: 20px !important;
        height: 20px !important;
    }
    
    .social-link i {
        font-size: 18px;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .story {
        padding: 200px 0 40px 0;
    }
    
    .section-title {
        font-size: 32px;
        margin-bottom: 30px;
    }
    
    .story-text p {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 15px;
    }
    
    .story-text blockquote {
        font-size: 16px;
        padding: 15px;
        margin: 20px 0;
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
    
    .contract-address {
        font-size: 12px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content > * {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.hero-content > *:nth-child(1) { animation-delay: 0.1s; }
.hero-content > *:nth-child(2) { animation-delay: 0.2s; }
.hero-content > *:nth-child(3) { animation-delay: 0.3s; }
.hero-content > *:nth-child(4) { animation-delay: 0.4s; }
.hero-content > *:nth-child(5) { animation-delay: 0.5s; }

/* Authentication Card Styles */
.auth-card {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 
                0 0 100px rgba(139, 92, 246, 0.1);
    position: relative;
    overflow: hidden;
}

.auth-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.05) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
    pointer-events: none;
}

.auth-card input[type="text"],
.auth-card input[type="email"],
.auth-card input[type="password"] {
    background: rgba(10, 10, 10, 0.5) !important;
    border: 1px solid var(--border-color) !important;
    color: var(--text-light) !important;
    padding: 10px 15px !important;
    width: 100% !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
}

.auth-card input[type="text"]:focus,
.auth-card input[type="email"]:focus,
.auth-card input[type="password"]:focus {
    border-color: var(--primary-purple) !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1) !important;
    background: rgba(10, 10, 10, 0.7) !important;
}

.auth-card input[type="checkbox"] {
    accent-color: var(--primary-purple);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    display: none;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: var(--secondary-black);
    color: var(--text-light);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    z-index: 2000;
}
.cookie-banner .cookie-text { color: var(--text-gray); line-height: 1.5; }
.cookie-banner .cookie-text a { color: var(--primary-purple); text-decoration: none; }
.cookie-banner .cookie-text a:hover { text-decoration: underline; color: var(--primary-yellow); }
.cookie-banner .cookie-actions { margin-left: auto; display: flex; gap: 8px; }
.cookie-banner .cookie-btn { padding: 10px 16px; border-radius: 9999px; font-weight: 700; border: 1px solid transparent; cursor: pointer; transition: all .2s ease; }
.cookie-banner .cookie-btn-accept { background: linear-gradient(135deg, var(--primary-yellow), var(--secondary-yellow)); color: var(--primary-black); box-shadow: 0 6px 18px rgba(252,211,77,0.25); }
.cookie-banner .cookie-btn-accept:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(252,211,77,0.35); }
.cookie-banner .cookie-btn-reject { background: transparent; border-color: var(--border-color); color: var(--text-gray); }
.cookie-banner .cookie-btn-reject:hover { color: var(--text-light); border-color: var(--primary-purple); }
@media (min-width: 768px) {
    .cookie-banner { left: 50%; right: auto; transform: translateX(-50%); max-width: 960px; }
}

/* Mobile Accordion (Language) */
.mobile-accordion {
    border-bottom: 1px solid var(--border-color);
}

.mobile-accordion summary {
    list-style: none;
    outline: none;
}

.mobile-accordion summary::-webkit-details-marker {
    display: none;
}

.mobile-accordion-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(139, 92, 246, 0.1);
}

.mobile-accordion-header .chevron {
    transition: transform 0.2s ease;
}

.mobile-accordion[open] .mobile-accordion-header .chevron {
    transform: rotate(180deg);
}

.mobile-accordion-header span:first-child {
    font-family: 'Bebas Neue', cursive;
    letter-spacing: 1px;
    font-size: 20px;
    color: var(--primary-yellow);
}

.mobile-accordion .mobile-language-list {
    padding: 8px 16px 16px;
    background: linear-gradient(135deg, var(--secondary-black) 0%, var(--primary-black) 100%);
}

/* Fancy Roadmap Timeline */
.roadmap { display: none; }
#roadmap-fancy { display: block; padding: 100px 0; background: var(--primary-black); }

.timeline {
    position: relative;
    margin: 0 auto;
    max-width: 900px;
    padding: 10px 0 10px;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    transform: translateX(-50%);
    background: linear-gradient(180deg, var(--primary-purple), var(--secondary-purple));
    opacity: 0.6;
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.4);
}
.timeline-item {
    position: relative;
    display: flex;
    margin: 40px 0;
}
.timeline-dot {
    position: absolute;
    left: 50%;
    top: 32px;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--primary-yellow);
    border: 3px solid var(--primary-purple);
    box-shadow: 0 0 20px rgba(252, 211, 77, 0.5), 0 0 10px rgba(139, 92, 246, 0.4);
    z-index: 2;
}
.timeline-content {
    width: 50%;
    padding: 20px 24px;
    background: rgba(139, 92, 246, 0.08);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.timeline-content:hover {
    transform: translateY(-3px);
    border-color: var(--primary-purple);
    box-shadow: 0 14px 30px rgba(139, 92, 246, 0.25);
}
.timeline-item:nth-child(odd) {
    justify-content: flex-start;
}
.timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
}
.timeline-item:nth-child(even) {
    justify-content: flex-end;
}
.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
}
.timeline-q {
    font-family: 'Bebas Neue', cursive;
    font-size: 22px;
    letter-spacing: 1px;
    color: var(--primary-yellow);
    margin-bottom: 6px;
}
.timeline-title {
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 8px;
}
.timeline-list {
    color: var(--text-gray);
    line-height: 1.7;
    padding-left: 18px;
}

/* Emoji icons for timeline quarters */
.timeline .timeline-item:nth-child(1) .timeline-q::before { content: "🚀 "; }
.timeline .timeline-item:nth-child(2) .timeline-q::before { content: "🗳️ "; }
.timeline .timeline-item:nth-child(3) .timeline-q::before { content: "🧩 "; }
.timeline .timeline-item:nth-child(4) .timeline-q::before { content: "🛡️ "; }
.timeline .timeline-item:nth-child(5) .timeline-q::before { content: "⚙️ "; }
.timeline .timeline-item:nth-child(6) .timeline-q::before { content: "🌐 "; }

.timeline .timeline-q::before {
    display: inline-block;
    margin-right: 6px;
}


@media (max-width: 968px) {
    .timeline::before {
        left: 24px;
        transform: none;
    }
    .timeline-dot {
        left: 24px;
        transform: translate(-50%, -50%);
    }
    .timeline-content {
        width: 100%;
        margin-left: 48px !important;
        margin-right: 0 !important;
    }
}