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

:root {
    --primary: #000000;
    --dark: #1a1a1a;
    --darker: #0d0d0d;
    --text: #ffffff;
    --text-muted: #cccccc;
    --accent: #333333;
    --danger: #ff0000;
}

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

body {
    font-family: 'Pixelify Sans', sans-serif;
    background: #ffffff;
    color: #000000;
    line-height: 1.6;
    font-size: 14px;
    position: relative;
}

/* Vignette effect */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.1);
    z-index: 9999;
}

/* ========== HERO SECTION ========== */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 4px solid #000000;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-family: 'Press Start 2P', sans-serif;
    font-size: 120px;
    color: #000000;
    text-shadow: none;
    margin-bottom: 20px;
    letter-spacing: 8px;
    animation: none;
}

.hero-subtitle {
    font-size: 24px;
    color: #333333;
    margin-bottom: 40px;
    text-shadow: none;
}

.hero-stats {
    display: flex;
    gap: 40px;
    justify-content: center;
    margin: 60px 0;
    flex-wrap: wrap;
}

.stat-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 30px;
    background: #f5f5f5;
    border: 2px solid #000000;
    border-radius: 0;
}

.stat-number {
    font-size: 32px;
    color: #000000;
    font-weight: 700;
    text-shadow: none;
}

.stat-label {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cta-button {
    padding: 15px 50px;
    font-family: 'Pixelify Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    background: #000000;
    border: 2px solid #000000;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    box-shadow: 5px 5px 0px rgba(0, 0, 0, 0.3);
    position: relative;
}

.cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 8px 8px 0px rgba(0, 0, 0, 0.4);
    background: #333333;
}

.cta-button:active {
    transform: translateY(0);
    box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.3);
}

.cta-button-large {
    padding: 20px 60px;
    font-size: 20px;
}

.hero-decoration {
    position: absolute;
    bottom: 40px;
    display: flex;
    gap: 20px;
    animation: float 3s ease-in-out infinite;
}

.pixel-block {
    width: 30px;
    height: 30px;
    background: #000000;
    border: 2px solid #000000;
    animation: bounce 2s infinite;
}

.pixel-block:nth-child(2) {
    animation-delay: 0.2s;
}

.pixel-block:nth-child(3) {
    animation-delay: 0.4s;
}

#pixelCanvas {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.3;
}

/* ========== FEATURES SECTION ========== */
.features-section {
    padding: 80px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Press Start 2P', sans-serif;
    font-size: 48px;
    color: #000000;
    text-align: center;
    margin-bottom: 60px;
    text-shadow: none;
    letter-spacing: 2px;
}

.feature-item {
    background: #f5f5f5;
    border: 2px solid #000000;
    padding: 30px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.feature-item:hover {
    background: #e8e8e8;
    transform: translateX(10px);
    box-shadow: 5px 5px 0px rgba(0, 0, 0, 0.2);
}

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

.feature-item h3 {
    font-size: 20px;
    color: #000000;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-item p {
    color: #666666;
    font-size: 14px;
    line-height: 1.8;
}

/* ========== CTA SECTION ========== */
.cta-section {
    padding: 80px 40px;
    text-align: center;
    background: linear-gradient(135deg, #f0f0f0, #e8e8e8);
    border-top: 4px solid #000000;
    border-bottom: 4px solid #000000;
    position: relative;
    overflow: hidden;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
}

.cta-section h2 {
    font-family: 'Press Start 2P', sans-serif;
    font-size: 48px;
    color: #000000;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
}

.cta-section p {
    font-size: 18px;
    color: #666666;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

/* ========== TAHOST CTA BUTTONS ========== */
.tahost-cta-free,
.tahost-cta-premium {
    padding: 25px 50px;
    font-family: 'Pixelify Sans', sans-serif;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    min-width: 280px;
    position: relative;
    overflow: hidden;
}

.tahost-cta-free {
    background: #000000;
    color: #ffffff;
    border: 4px solid #000000;
}

.tahost-cta-free:hover {
    background: #ffffff;
    color: #000000;
    border: 4px solid #000000;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.tahost-cta-premium {
    background: #ffffff;
    color: #000000;
    border: 4px solid #000000;
}

.tahost-cta-premium:hover {
    background: #000000;
    color: #ffffff;
    border: 4px solid #000000;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.tahost-cta-free:active,
.tahost-cta-premium:active {
    transform: translateY(-2px);
}

/* ========== FOOTER ========== */
.footer {
    padding: 60px 40px;
    text-align: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    border-top: 4px solid #000000;
    color: #cccccc;
    font-size: 14px;
    position: relative;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section {
    margin-bottom: 40px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-section h4 {
    font-family: 'Press Start 2P', sans-serif;
    font-size: 14px;
    color: #ffffff;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-section a {
    color: #66ccff;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
    margin: 5px 0;
    font-size: 12px;
}

.footer-section a:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 2px solid #333333;
    padding-top: 20px;
    margin-top: 20px;
    font-size: 11px;
    color: #999999;
}

.footer a {
    color: #66ccff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer a:hover {
    color: #ffffff;
    text-decoration: underline;
}

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

@keyframes glitch {
    0%, 100% {
        text-shadow: 0 0 20px var(--accent), -2px 2px 0 var(--danger);
    }
    50% {
        text-shadow: 0 0 20px var(--primary), 2px -2px 0 var(--accent);
    }
}

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

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

/* ========== SCROLL PIN EFFECT ========== */
.scroll-pin-container {
    height: 300vh;
    position: relative;
}

.pin-content {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 60px;
        letter-spacing: 4px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .section-title {
        font-size: 28px;
    }

    .feature-item {
        padding: 20px;
    }

    .cta-button {
        padding: 12px 35px;
        font-size: 12px;
    }
}
