@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Teko:wght@400;600;700&display=swap');

:root {
    --primary: #ff1f1f;
    --primary-dark: #cc0000;
    --primary-glow: rgba(255, 31, 31, 0.4);
    --bg-main: #050505;
    --bg-secondary: #0f0f0f;
    --bg-tertiary: #1a1a1a;
    --text-white: #ffffff;
    --text-gray: #888888;
    --text-light-gray: #aaaaaa;
    --border-color: rgba(255, 255, 255, 0.1);
    --border-color-light: rgba(255, 255, 255, 0.15);
    --glow: 0 0 20px rgba(255, 31, 31, 0.3);
    --glow-strong: 0 0 40px rgba(255, 31, 31, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-main);
    color: var(--text-white);
    font-family: 'Plus Jakarta Sans', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

.bg-noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: -1;
}

.bg-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 31, 31, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -2;
    filter: blur(100px);
    animation: glow-pulse 8s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.top-left {
    top: -200px;
    left: -200px;
}

.bottom-right {
    bottom: -200px;
    right: -200px;
    background: radial-gradient(circle, rgba(100, 50, 255, 0.08) 0%, transparent 70%);
    animation-delay: 4s;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

header {
    padding: 25px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 15px 0;
    background: rgba(5, 5, 5, 0.98);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Teko', sans-serif;
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.logo:hover {
    transform: scale(1.05);
}

.dot {
    color: var(--primary);
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.nav-links {
    display: flex;
    gap: 50px;
    list-style: none;
}

.nav-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-white);
}

.nav-socials {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-cta {
    background: var(--primary);
    color: var(--text-white);
    padding: 10px 24px;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: var(--glow);
}

.nav-cta:hover {
    background: var(--primary-dark);
    box-shadow: var(--glow-strong);
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-white);
}

.hero {
    padding-top: 200px;
    padding-bottom: 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    width: 100%;
    align-items: center;
}

h1 {
    font-family: 'Teko', sans-serif;
    font-size: 110px;
    line-height: 0.9;
    font-weight: 700;
    margin-bottom: 30px;
    text-transform: uppercase;
    animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.text-outlined {
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.3);
    color: transparent;
}

.text-filled {
    color: var(--text-white);
    text-shadow: 0 0 30px var(--primary-glow);
}

.hero-content p {
    color: var(--text-light-gray);
    font-size: 18px;
    max-width: 500px;
    margin-bottom: 50px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 70px;
}

.btn {
    padding: 18px 36px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    font-size: 14px;
    border-radius: 4px;
    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: var(--primary);
    color: var(--text-white);
    box-shadow: var(--glow);
    border: 2px solid var(--primary);
    position: relative;
}

.btn-primary:hover {
    background: var(--primary-dark);
    box-shadow: var(--glow-strong);
    transform: translateY(-3px);
}

.btn-secondary {
    border: 2px solid var(--border-color-light);
    color: var(--text-white);
    background: transparent;
}

.btn-secondary:hover {
    border-color: var(--text-white);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-3px);
}

.btn-large {
    padding: 22px 50px;
    font-size: 16px;
}

.stats-mini {
    display: flex;
    gap: 40px;
    align-items: center;
}

.stat-box {
    display: flex;
    flex-direction: column;
}

.stat-box .val {
    font-family: 'Teko', sans-serif;
    font-size: 42px;
    line-height: 1;
    font-weight: 700;
    background: linear-gradient(135deg, var(--text-white) 0%, var(--text-gray) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-box .lbl {
    font-size: 12px;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.stat-divider {
    width: 2px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, var(--border-color), transparent);
}

.stream-wrapper {
    position: relative;
    animation: slideInRight 1s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.stream-frame {
    position: relative;
    padding: 15px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.stream-frame:hover {
    border-color: var(--border-color-light);
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.frame-corner {
    position: absolute;
    width: 25px;
    height: 25px;
    border: 3px solid var(--primary);
    transition: all 0.3s ease;
    z-index: 10;
}

.frame-corner.top-left {
    top: -2px;
    left: -2px;
    border-bottom: none;
    border-right: none;
}

.frame-corner.top-right {
    top: -2px;
    right: -2px;
    border-bottom: none;
    border-left: none;
}

.frame-corner.bottom-left {
    bottom: -2px;
    left: -2px;
    border-top: none;
    border-right: none;
}

.frame-corner.bottom-right {
    bottom: -2px;
    right: -2px;
    border-top: none;
    border-left: none;
}

.stream-frame:hover .frame-corner {
    width: 35px;
    height: 35px;
}

.video-container {
    aspect-ratio: 16/9;
    background: #000;
    width: 100%;
    overflow: hidden;
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.live-tag {
    position: absolute;
    top: 30px;
    right: 30px;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    color: var(--primary);
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 2px solid var(--primary);
    z-index: 20;
    letter-spacing: 1.5px;
    box-shadow: var(--glow);
}

.pulse-circle {
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.3;
        transform: scale(0.8);
    }
}

.videos-section {
    padding: 100px 0;
    background: var(--bg-main);
}

.section-header-center {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-center .section-label {
    color: var(--primary);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
}

.section-header-center h2 {
    font-family: 'Teko', sans-serif;
    font-size: 90px;
    line-height: 0.9;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.video-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    text-decoration: none;
    color: inherit;
}

.video-card:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.videos-cta {
    text-align: center;
}

.about-section {
    padding: 80px 0 120px;
    background: linear-gradient(180deg, transparent 0%, var(--bg-secondary) 50%, transparent 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: start;
}

.about-content h2 {
    font-family: 'Teko', sans-serif;
    font-size: 90px;
    line-height: 0.9;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
}

.about-content p {
    color: var(--text-light-gray);
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.social-links-large {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 50px;
}

.social-btn {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    padding: 18px 24px;
    text-decoration: none;
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.social-btn i {
    font-size: 24px;
}

.social-btn.twitch:hover { background: #9146ff; transform: translateY(-3px); }
.social-btn.tiktok:hover { background: #000000; border-color: #ff0050; transform: translateY(-3px); }
.social-btn.youtube:hover { background: #ff0000; transform: translateY(-3px); }
.social-btn.discord:hover { background: #5865f2; transform: translateY(-3px); }

.achievements {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.achievement-card {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.achievement-card:hover {
    border-color: var(--primary);
    transform: translateX(10px);
}

.achievement-icon {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 15px;
}

.achievement-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.achievement-card p {
    color: var(--text-gray);
    font-size: 14px;
}

.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(255, 31, 31, 0.05) 0%, transparent 100%);
    text-align: center;
}

.cta-content h2 {
    font-family: 'Teko', sans-serif;
    font-size: 64px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.cta-content p {
    color: var(--text-light-gray);
    font-size: 20px;
    margin-bottom: 40px;
}

footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-left p {
    color: var(--text-gray);
    margin-top: 10px;
    font-size: 14px;
}

.footer-socials {
    display: flex;
    gap: 20px;
}

.footer-socials a {
    width: 45px;
    height: 45px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 20px;
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    color: var(--text-gray);
    font-size: 14px;
}

@media (max-width: 1024px) {
    .container { padding: 0 30px; }
    .hero-grid { grid-template-columns: 1fr; gap: 60px; }
    h1 { font-size: 80px; }
    .about-grid { grid-template-columns: 1fr; gap: 60px; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    h1 { font-size: 60px; }
    .hero-actions { flex-direction: column; }
    .videos-grid { grid-template-columns: 1fr; }
}

.youtube-latest-frame {
    width: 100%;
    aspect-ratio: 16/9;
    border: none;
    background: #000;
}