: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: linear-gradient(135deg, var(--primary-yellow), var(--secondary-yellow));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(252, 211, 77, 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;
}

/* Language Selector */
.language-selector {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    gap: 5px;
    background: rgba(26, 26, 26, 0.9);
    padding: 5px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
}

.lang-btn {
    background: transparent;
    color: var(--text-gray);
    border: none;
    padding: 8px 15px;
    cursor: pointer;
    border-radius: 20px;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 14px;
}

.lang-btn:hover {
    color: var(--primary-yellow);
    background: rgba(252, 211, 77, 0.1);
}

.lang-btn.active {
    background: var(--primary-purple);
    color: var(--text-light);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px 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;
}

.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;
}

/* 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;
}

/* 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 auto 1fr;
    gap: 40px;
    align-items: center;
}

.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-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

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

/* Responsive Design */
@media (max-width: 968px) {
    /* 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-info {
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .logo-container {
        top: 10px;
        left: 10px;
    }
    
    .logo-placeholder {
        width: 80px;
        height: 30px;
    }
    
    .language-selector {
        top: 10px;
        right: 10px;
        gap: 2px;
        padding: 3px;
    }
    
    .lang-btn {
        padding: 6px 10px;
        font-size: 12px;
    }
    
    .hero {
        padding: 250px 0 20px 0;
        min-height: auto;
        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;
    }
    
    .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; }