/* ========================================
   c0gito - Retro 90s Magic Landing Page
   ======================================== */

:root {
    --bg-dark: #0a0a0f;
    --bg-card: #12121a;
    --purple: #9d4edd;
    --purple-glow: #b668f0;
    --gold: #ffd700;
    --cyan: #00ffff;
    --magenta: #ff00ff;
    --red: #ff3366;
    --text: #e0e0e0;
    --text-muted: #888;
    --pixel-font: 'Press Start 2P', cursive;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--pixel-font);
    background: var(--bg-dark);
    color: var(--text);
    line-height: 1.8;
    font-size: 12px;
    overflow-x: hidden;
}

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

/* ========================================
   Language Switcher
   ======================================== */

.lang-nav {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(10, 10, 15, 0.9);
    padding: 10px 15px;
    border: 2px solid var(--purple);
    box-shadow: 0 0 20px rgba(157, 78, 221, 0.3);
}

.lang-btn {
    font-family: var(--pixel-font);
    font-size: 10px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 5px 10px;
    transition: all 0.3s;
}

.lang-btn:hover {
    color: var(--purple-glow);
}

.lang-btn.active {
    color: var(--gold);
    text-shadow: 0 0 10px var(--gold);
}

.lang-divider {
    color: var(--purple);
}

/* ========================================
   Hero Section
   ======================================== */

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    background:
        radial-gradient(ellipse at center, rgba(157, 78, 221, 0.15) 0%, transparent 70%),
        var(--bg-dark);
    overflow: hidden;
}

/* Scanlines Effect */
.scanlines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.15),
        rgba(0, 0, 0, 0.15) 1px,
        transparent 1px,
        transparent 2px
    );
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    text-align: center;
    z-index: 2;
    padding: 20px;
}

/* Glitch Logo Effect */
.logo {
    font-size: clamp(2rem, 10vw, 5rem);
    color: var(--gold);
    text-shadow:
        0 0 10px var(--gold),
        0 0 20px var(--gold),
        0 0 40px var(--purple);
    margin-bottom: 30px;
    position: relative;
    animation: flicker 3s infinite;
}

.glitch {
    position: relative;
}

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

.glitch::before {
    color: var(--cyan);
    animation: glitch-1 2s infinite linear alternate-reverse;
    clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
}

.glitch::after {
    color: var(--magenta);
    animation: glitch-2 3s infinite linear alternate-reverse;
    clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
}

@keyframes glitch-1 {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-3px, 3px); }
    40% { transform: translate(-3px, -3px); }
    60% { transform: translate(3px, 3px); }
    80% { transform: translate(3px, -3px); }
}

@keyframes glitch-2 {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(3px, -3px); }
    40% { transform: translate(3px, 3px); }
    60% { transform: translate(-3px, -3px); }
    80% { transform: translate(-3px, 3px); }
}

@keyframes flicker {
    0%, 100% { opacity: 1; }
    92% { opacity: 1; }
    93% { opacity: 0.8; }
    94% { opacity: 1; }
    95% { opacity: 0.9; }
    96% { opacity: 1; }
}

.tagline {
    font-size: clamp(0.6rem, 2vw, 0.9rem);
    color: var(--text);
    margin-bottom: 40px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    letter-spacing: 2px;
}

/* Social Buttons */
.social-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    font-family: var(--pixel-font);
    font-size: 10px;
    padding: 15px 25px;
    border: 3px solid;
    background: transparent;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-youtube {
    border-color: var(--red);
    color: var(--red);
}

.btn-youtube:hover {
    background: var(--red);
    color: var(--bg-dark);
    box-shadow: 0 0 30px rgba(255, 51, 102, 0.5);
    animation: youtube-pulse 0.3s ease-out;
}

@keyframes youtube-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.btn-tiktok {
    border-color: var(--cyan);
    color: var(--cyan);
}

.btn-tiktok:hover {
    background: var(--cyan);
    color: var(--bg-dark);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
    animation: tiktok-pulse 0.3s ease-out;
}

@keyframes tiktok-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.btn-telegram {
    border-color: #00d4ff;
    color: #00d4ff;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.btn-telegram:hover {
    background: #00d4ff;
    color: var(--bg-dark);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.7), 0 0 60px rgba(0, 212, 255, 0.4);
    animation: telegram-pulse 0.3s ease-out;
}

@keyframes telegram-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.btn-instagram {
    border-color: #ff3399;
    color: #ff3399;
    text-shadow: 0 0 10px rgba(255, 51, 153, 0.5);
}

.btn-instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-color: #ff3399;
    color: white;
    box-shadow: 0 0 30px rgba(255, 51, 153, 0.7), 0 0 60px rgba(225, 48, 108, 0.5);
    animation: instagram-pulse 0.3s ease-out;
}

@keyframes instagram-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* ========================================
   Boosty Section
   ======================================== */

.boosty-section {
    background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-dark) 50%, var(--bg-card) 100%);
    position: relative;
    overflow: hidden;
}

.boosty-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #f70, #ff8800, #f70, transparent);
}

.boosty-section .section-title {
    color: #ff8800;
}

.boosty-icon {
    color: #f70;
    text-shadow: 0 0 20px rgba(255, 119, 0, 0.8);
    animation: boosty-star 2s ease-in-out infinite;
}

@keyframes boosty-star {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.boosty-content {
    max-width: 700px;
    margin: 0 auto;
}

.boosty-card {
    background: var(--bg-dark);
    border: 3px solid #f70;
    padding: 40px;
    text-align: center;
    position: relative;
    box-shadow: 0 0 40px rgba(255, 119, 0, 0.2);
}

.boosty-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 119, 0, 0.05) 0%, transparent 50%, rgba(255, 136, 0, 0.05) 100%);
    pointer-events: none;
}

.boosty-description {
    margin-bottom: 30px;
}

.boosty-description p {
    color: var(--text);
    line-height: 2;
    margin-bottom: 15px;
    font-size: 11px;
}

.boosty-perks {
    margin-bottom: 35px;
    text-align: left;
    padding: 0 20px;
}

.boosty-perks h3 {
    color: #ff8800;
    font-size: 12px;
    margin-bottom: 20px;
    text-align: center;
}

.boosty-perks ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.boosty-perks li {
    color: var(--text);
    font-size: 10px;
    padding: 12px 15px;
    border: 2px solid rgba(255, 119, 0, 0.3);
    background: rgba(255, 119, 0, 0.05);
    transition: all 0.3s;
}

.boosty-perks li::before {
    content: '★ ';
    color: #f70;
}

.boosty-perks li:hover {
    border-color: #f70;
    box-shadow: 0 0 15px rgba(255, 119, 0, 0.3);
}

.btn-boosty-large {
    border-color: #f70;
    color: #f70;
    padding: 20px 50px;
    font-size: 12px;
    text-shadow: 0 0 10px rgba(255, 119, 0, 0.5);
    display: inline-flex;
}

.btn-boosty-large:hover {
    background: linear-gradient(135deg, #ff8800, #f70, #ff5500);
    border-color: #ff8800;
    color: var(--bg-dark);
    text-shadow: none;
    box-shadow: 0 0 40px rgba(255, 119, 0, 0.7), 0 0 80px rgba(255, 119, 0, 0.4);
    animation: boosty-glow 0.4s ease-out;
}

@keyframes boosty-glow {
    0% { transform: scale(1); }
    50% { transform: scale(1.08); }
    100% { transform: scale(1); }
}

@media (max-width: 768px) {
    .boosty-card {
        padding: 30px 20px;
    }

    .boosty-perks ul {
        grid-template-columns: 1fr;
    }

    .btn-boosty-large {
        padding: 15px 35px;
        font-size: 10px;
    }
}

.btn-icon {
    font-size: 14px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    font-size: 8px;
    color: var(--text-muted);
    letter-spacing: 1px;
}

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

/* ========================================
   Section Styles
   ======================================== */

section {
    padding: 80px 0;
}

.section-title {
    font-size: clamp(1rem, 3vw, 1.5rem);
    text-align: center;
    margin-bottom: 50px;
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.section-title span:first-child {
    font-size: 1.5em;
}

/* ========================================
   About Section
   ======================================== */

.about {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-card) 100%);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 2;
    color: var(--text);
}

.skills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.skill-tag {
    padding: 10px 20px;
    border: 2px solid var(--purple);
    color: var(--purple-glow);
    font-size: 9px;
    transition: all 0.3s;
}

.skill-tag:hover {
    background: var(--purple);
    color: var(--bg-dark);
    box-shadow: 0 0 20px rgba(157, 78, 221, 0.5);
}

/* ========================================
   Products Section
   ======================================== */

.products {
    background: var(--bg-card);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.product-card {
    background: var(--bg-dark);
    border: 2px solid var(--purple);
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--purple), var(--gold), var(--purple));
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow:
        0 10px 40px rgba(157, 78, 221, 0.3),
        0 0 0 1px var(--purple);
}

.product-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.product-card h3 {
    color: var(--gold);
    margin-bottom: 15px;
    font-size: 1rem;
}

.product-card p {
    color: var(--text-muted);
    font-size: 10px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.product-status {
    display: inline-block;
    padding: 8px 15px;
    background: var(--purple);
    color: var(--bg-dark);
    font-size: 8px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.product-status:hover {
    background: var(--gold);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

/* ========================================
   Support/Crypto Section
   ======================================== */

.support {
    background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-dark) 100%);
}

.support-desc {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 40px;
    font-size: 10px;
}

.crypto-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    max-width: 900px;
    margin: 0 auto;
}

.crypto-card {
    font-family: var(--pixel-font);
    background: var(--bg-dark);
    border: 2px solid var(--text-muted);
    padding: 20px 15px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
}

.crypto-card:hover {
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.crypto-card.copied {
    border-color: #00ff00;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
}

.crypto-icon {
    font-size: 1.5rem;
    color: var(--gold);
}

.crypto-name {
    font-size: 10px;
    color: var(--text);
}

.crypto-address {
    font-size: 7px;
    color: var(--text-muted);
    word-break: break-all;
}

.copy-hint {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 8px;
    color: #00ff00;
    opacity: 0;
    transition: all 0.3s;
}

.crypto-card.copied .copy-hint {
    opacity: 1;
    bottom: -20px;
}

/* ========================================
   Footer
   ======================================== */

.footer {
    background: var(--bg-dark);
    border-top: 2px solid var(--purple);
    padding: 40px 0;
    text-align: center;
}

.footer-logo {
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: 15px;
    text-shadow: 0 0 10px var(--gold);
}

.footer-text {
    color: var(--text-muted);
    font-size: 8px;
}

/* ========================================
   Responsive
   ======================================== */

@media (max-width: 768px) {
    body {
        font-size: 10px;
    }

    .hero {
        min-height: 100svh;
    }

    .social-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 200px;
        justify-content: center;
    }

    .boosty-row .btn-boosty {
        width: 200px;
        padding: 15px 25px;
        font-size: 10px;
    }

    .lang-nav {
        top: 10px;
        right: 10px;
        padding: 8px 12px;
    }

    .crypto-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .crypto-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .crypto-card {
        padding: 15px 10px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Pixel Art Decorations
   ======================================== */

.hero::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image:
        radial-gradient(2px 2px at 20px 30px, var(--purple), transparent),
        radial-gradient(2px 2px at 40px 70px, var(--gold), transparent),
        radial-gradient(2px 2px at 50px 160px, var(--cyan), transparent),
        radial-gradient(2px 2px at 90px 40px, var(--magenta), transparent),
        radial-gradient(2px 2px at 130px 80px, var(--purple), transparent),
        radial-gradient(2px 2px at 160px 120px, var(--gold), transparent);
    background-repeat: repeat;
    background-size: 200px 200px;
    opacity: 0.5;
    animation: sparkle 4s linear infinite;
    pointer-events: none;
}

@keyframes sparkle {
    0% { opacity: 0.5; }
    50% { opacity: 0.3; }
    100% { opacity: 0.5; }
}

/* Selection Color */
::selection {
    background: var(--purple);
    color: var(--bg-dark);
}
