@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600&family=Space+Grotesk:wght@500;700;900&display=swap');

:root {
    --bg-base: #010101;
    --line: rgba(255, 255, 255, 0.08);
    --line-strong: rgba(255, 255, 255, 0.15);
    --text-main: #ffffff;
    --text-muted: #8e9bae;
    --text-soft: #cbd5e1;
    --accent-emerald: #00ff66;
    --accent-cyan: #00f0ff;
    --accent-purple: #9d4edd;
    --accent-red: #ff1744;
    --accent-orange: #ff9900;
    --youtube: #ff0000;
    --discord: #5865f2;
    --twitch: #9146ff;
    --instagram: #E1306C;
    --tiktok: #00f2fe;
    --steam: #66c0f4;
    --brand-pirate: #d4ff00;
    --brand-holy: #ff3366;
    --sidebar-width: 340px;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-pill: 999px;
    --font-body: 'Outfit', sans-serif;
    --font-display: 'Space Grotesk', sans-serif;
    --font-console: 'Courier New', Courier, monospace;
    --transition-bounce: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --transition-fast: all 0.2s ease;
}

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

html { 
    scroll-behavior: smooth; 
    scroll-padding-top: 120px;
}

body {
    font-family: var(--font-body);
    background: var(--bg-base);
    color: var(--text-main);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, .section-kicker, .ip-text, .social-name, .giveaway-value-badge, .timeline-text, .partner-badge-neon, .partner-hero-title, .cyber-button, .stream-title {
    font-family: var(--font-display);
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 4vw, 4.2rem); font-weight: 900; line-height: 1.1; letter-spacing: -0.03em; padding-bottom: 0.1em; }
h2 { font-size: clamp(1.4rem, 2vw, 1.8rem); font-weight: 700; line-height: 1.1; }
h3 { font-size: 1.2rem; font-weight: 700; }

.site-background {
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at 50% -10%, rgba(0, 255, 102, 0.05), transparent 50%),
        linear-gradient(rgba(1, 1, 1, 0.7), rgba(1, 1, 1, 0.9)),
        url("assets/background.png") center center / cover no-repeat;
    z-index: -3;
}

.site-background::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 255, 102, 0.02) 50%, transparent 100%);
    background-size: 100% 8px;
    animation: scanlines 6s linear infinite;
    pointer-events: none;
    opacity: 0.2;
}

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

.animated-grid-bg {
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(circle at center, black 10%, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at center, black 10%, transparent 80%);
    z-index: -2;
    pointer-events: none;
}

.site-header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    padding: 8px 12px;
    border-radius: 16px;
    background: rgba(5, 7, 10, 0.7);
    border: 1px solid var(--line-strong);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
    width: max-content;
    transition: var(--transition-bounce);
}

.main-nav { display: flex; gap: 6px; align-items: center; }

.nav-link {
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.nav-link svg { width: 18px; height: 18px; transition: var(--transition-bounce); }

.nav-link::before {
    content: attr(data-title);
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) scale(0.9);
    background: #ffffff;
    color: #000000;
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-bounce);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.15);
}

.nav-link:hover { color: var(--text-main); background: rgba(255, 255, 255, 0.08); }
.nav-link:hover svg { transform: scale(1.15); }
.nav-link:hover::before { opacity: 1; transform: translateX(-50%) scale(1); }

.page-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 140px 32px 80px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) var(--sidebar-width);
    gap: 56px;
    align-items: start;
}

.main-column { display: flex; flex-direction: column; gap: 80px; min-width: 0; }

.sidebar-column {
    position: sticky;
    top: 140px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.minimal-widget {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.icon-kicker { display: flex; align-items: center; gap: 8px; margin-bottom: 2px; padding-left: 4px; }
.section-kicker { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); }

.neon-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; position: relative; }
.neon-dot::after { content: ""; position: absolute; inset: -4px; border-radius: 50%; opacity: 0.4; animation: pulse 2s infinite cubic-bezier(0.4, 0, 0.2, 1); }
.neon-dot.green { background: var(--accent-emerald); box-shadow: 0 0 10px var(--accent-emerald); }
.neon-dot.green::after { background: var(--accent-emerald); }
.neon-dot.purple { background: var(--accent-purple); box-shadow: 0 0 10px var(--accent-purple); }
.neon-dot.purple::after { background: var(--accent-purple); }
.neon-dot.red { background: var(--accent-red); box-shadow: 0 0 10px var(--accent-red); }
.neon-dot.red::after { background: var(--accent-red); }
.neon-dot.orange { background: var(--accent-orange); box-shadow: 0 0 10px var(--accent-orange); }
.neon-dot.orange::after { background: var(--accent-orange); }

@keyframes pulse { 0% { transform: scale(1); opacity: 0.8; } 100% { transform: scale(2.5); opacity: 0; } }

.server-ip-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    height: 52px;
    padding: 0 16px;
    border-radius: var(--radius-md);
    background: #0a0a0c;
    border: 1px solid rgba(0, 255, 102, 0.15);
    transition: var(--transition-bounce);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.server-ip-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,255,102,0.05), transparent);
    opacity: 0;
    transition: var(--transition-fast);
}

.server-ip-box:hover {
    transform: translateY(-2px);
    border-color: var(--accent-emerald);
    box-shadow: 0 6px 15px rgba(0, 255, 102, 0.1);
}

.server-ip-box:hover::before { opacity: 1; }
.ip-text { font-size: 0.95rem; font-weight: 700; color: var(--accent-emerald); letter-spacing: 0.05em; position: relative; z-index: 1; }

.copy-icon-wrapper {
    background: rgba(0, 255, 102, 0.1);
    width: 32px; height: 32px; border-radius: 6px; display: grid; place-items: center; color: var(--accent-emerald); transition: var(--transition-bounce); position: relative; z-index: 1;
}
.server-ip-box:hover .copy-icon-wrapper { background: var(--accent-emerald); color: #000; }
.copy-icon-wrapper svg { width: 16px; height: 16px; }

.twitch-compact-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: var(--radius-md);
    background: #0a0a0c;
    border: 1px solid rgba(145, 70, 255, 0.2);
    transition: var(--transition-bounce);
}

.twitch-compact-card:hover {
    border-color: rgba(145, 70, 255, 0.5);
    box-shadow: 0 6px 15px rgba(145, 70, 255, 0.1);
    transform: translateY(-2px);
}

.twitch-avatar-small { position: relative; width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0; }
.twitch-avatar-small img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; border: 2px solid rgba(145, 70, 255, 0.3); position: relative; z-index: 2; background: #000; transition: var(--transition-bounce); }
.twitch-compact-card:hover .twitch-avatar-small img { border-color: var(--twitch); box-shadow: 0 0 15px rgba(145, 70, 255, 0.5); transform: scale(1.05) rotate(-5deg); }
.live-ring-small { position: absolute; inset: -3px; border-radius: 50%; border: 2px solid var(--twitch); animation: pulse-ring 2s infinite cubic-bezier(0.215, 0.61, 0.355, 1); z-index: 1; }

@keyframes pulse-ring { 0% { transform: scale(0.95); opacity: 1; } 100% { transform: scale(1.4); opacity: 0; } }

.twitch-compact-info { flex: 1; overflow: hidden; position: relative; z-index: 2; }
.twitch-compact-info h3 { font-size: 1rem; margin-bottom: 2px; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; letter-spacing: 0.02em; }
.twitch-compact-info p { font-size: 0.75rem; color: var(--text-muted); margin: 0; }

.cs2-console-widget {
    background: #0a0a0c;
    border: 1px solid rgba(255, 153, 0, 0.3);
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition-bounce);
}

.cs2-console-widget:hover {
    border-color: var(--accent-orange);
    box-shadow: 0 6px 20px rgba(255, 153, 0, 0.15);
    transform: translateY(-2px);
}

.cs2-console-header {
    background: #111;
    padding: 6px 12px;
    font-size: 0.65rem;
    color: #666;
    font-family: var(--font-console);
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255, 153, 0, 0.1);
}

.cs2-console-body {
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-console);
}

.console-arrow { color: #666; font-weight: bold; }
.console-cmd { color: var(--accent-orange); font-weight: 700; font-size: 1rem; flex: 1; letter-spacing: 0.02em; }

.console-copy-btn {
    width: 32px; height: 32px;
    min-width: 32px;
    background: rgba(255, 153, 0, 0.1);
    color: var(--accent-orange);
    border-radius: 6px;
    display: grid;
    place-items: center;
    transition: var(--transition-fast);
}

.cs2-console-widget:hover .console-copy-btn {
    background: var(--accent-orange);
    color: #000;
}

.console-copy-btn svg { width: 16px; height: 16px; }

.discord-full-widget {
    border-radius: var(--radius-md);
    background: #0a0a0c;
    border: 1px solid rgba(88, 101, 242, 0.2);
    padding: 20px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: var(--transition-bounce);
}

.discord-full-widget:hover {
    border-color: rgba(88, 101, 242, 0.5);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 20px rgba(88, 101, 242, 0.15);
    transform: translateY(-2px);
}

.discord-widget-bg {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 140px;
    height: 140px;
    background: var(--discord);
    filter: blur(60px);
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
    transition: var(--transition-fast);
}

.discord-full-widget:hover .discord-widget-bg { opacity: 0.3; }

.discord-widget-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

.discord-logo-badge {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(88, 101, 242, 0.1);
    border: 1px solid rgba(88, 101, 242, 0.3);
    display: grid;
    place-items: center;
    color: var(--discord);
}

.discord-logo-badge svg { width: 24px; height: 24px; }

.discord-online-status {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.03);
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(255,255,255,0.05);
}

.status-dot-green {
    width: 8px;
    height: 8px;
    background: #23a559;
    border-radius: 50%;
    box-shadow: 0 0 8px #23a559;
    animation: pulse-online 2s infinite;
}

@keyframes pulse-online {
    0% { box-shadow: 0 0 0 0 rgba(35, 165, 89, 0.4); }
    70% { box-shadow: 0 0 0 6px rgba(35, 165, 89, 0); }
    100% { box-shadow: 0 0 0 0 rgba(35, 165, 89, 0); }
}

.status-text { font-size: 0.75rem; font-weight: 600; color: var(--text-soft); }
.discord-widget-body { position: relative; z-index: 1; }
.discord-widget-body h3 { font-size: 1.1rem; color: #fff; margin-bottom: 6px; }
.discord-widget-body p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.5; margin: 0; }

.hero-section { display: flex; flex-direction: row; align-items: center; gap: 48px; padding: 16px 0 32px 0; position: relative; z-index: 10; }

.avatar-wrap { position: relative; width: 140px; height: 140px; border-radius: 50%; flex-shrink: 0; }
.avatar-wrap::before { content: ""; position: absolute; inset: -3px; border-radius: 50%; background: linear-gradient(135deg, var(--accent-emerald), var(--accent-cyan)); z-index: 0; box-shadow: 0 0 40px rgba(0, 255, 102, 0.15), inset 0 0 15px rgba(0, 240, 255, 0.3); }
.avatar-ring { position: absolute; inset: -14px; border-radius: 50%; border: 2px dashed rgba(255, 255, 255, 0.15); border-top-color: var(--accent-emerald); border-bottom-color: var(--accent-cyan); border-left-color: transparent; border-right-color: transparent; animation: spin 8s linear infinite; z-index: 0; transform-origin: center; }
.avatar-image, .avatar-fallback { position: relative; z-index: 10; width: 100%; height: 100%; border-radius: 50%; border: 3px solid var(--bg-base); object-fit: cover; background: #050505; }
@keyframes spin { 100% { transform: rotate(360deg); } }

.hero-content { flex: 1; }
.glitch-text { margin-bottom: 8px; background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 50%, var(--accent-cyan) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; text-shadow: 0 4px 20px rgba(0, 240, 255, 0.15); display: inline-block; }
.hero-copy { color: var(--text-soft); font-size: 1.05rem; max-width: 500px; line-height: 1.5; border-left: 2px solid var(--accent-cyan); padding-left: 12px; background: linear-gradient(90deg, rgba(0, 240, 255, 0.05), transparent); }
.hero-buttons-grid { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.section-heading { margin-bottom: 32px; }

.cyber-button {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px; height: 48px; padding: 0 24px; border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15); background: #0a0a0c; color: var(--text-main); font-family: var(--font-display);
    font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; transition: var(--transition-bounce); cursor: pointer; position: relative; overflow: hidden; z-index: 1;
}

.cyber-button::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at center, var(--btn-color, rgba(255,255,255,0.1)) 0%, transparent 80%); opacity: 0; transition: var(--transition-fast); z-index: -1; }
.cyber-button:hover { transform: translateY(-3px) scale(1.02); border-color: var(--btn-color, #fff); box-shadow: 0 10px 20px rgba(0,0,0,0.8), 0 0 20px var(--btn-shadow, rgba(255,255,255,0.1)); }
.cyber-button:hover::before { opacity: 0.2; }

.btn-icon, .btn-icon-right { width: 18px; height: 18px; flex-shrink: 0; transition: var(--transition-bounce); }
.cyber-button:hover .btn-icon-right { transform: translateX(3px); }

.full-width-button { width: 100%; }
.icon-only-btn { padding: 0; width: 48px; height: 48px; border-radius: 8px; }

.youtube-btn { --btn-color: #ff0000; --btn-shadow: rgba(255,0,0,0.3); }
.twitch-btn { --btn-color: #9146ff; --btn-shadow: rgba(145,70,255,0.3); }
.discord-btn { --btn-color: #5865f2; --btn-shadow: rgba(88,101,242,0.3); }
.primary-btn { --btn-color: var(--accent-emerald); --btn-shadow: rgba(0,255,102,0.3); border-color: rgba(0,255,102,0.3); color: var(--accent-emerald); }
.primary-btn:hover { color: #fff; text-shadow: 0 0 5px rgba(255,255,255,0.5); }

.pulse-btn { animation: buttonPulse 2s infinite; }
@keyframes buttonPulse { 0% { box-shadow: 0 0 0 0 rgba(0, 255, 102, 0.4); } 70% { box-shadow: 0 0 0 15px rgba(0, 255, 102, 0); } 100% { box-shadow: 0 0 0 0 rgba(0, 255, 102, 0); } }

.partner-hero-card { display: flex; flex-direction: row; align-items: center; justify-content: space-between; gap: 24px; padding: 40px 48px; border-radius: var(--radius-lg); background: #08090a; border: 1px solid rgba(255, 255, 255, 0.08); border-left: 3px solid var(--accent-emerald); box-shadow: 0 20px 40px rgba(0,0,0,0.6); transition: var(--transition-bounce); overflow: hidden; position: relative; }
.partner-hero-card:hover { transform: translateY(-5px); border-color: rgba(0, 255, 102, 0.3); border-left-color: var(--accent-emerald); box-shadow: 0 25px 50px rgba(0,0,0,0.8), 0 0 30px rgba(0, 255, 102, 0.1); }
.partner-hero-content { position: relative; z-index: 1; flex: 1; max-width: 60%; }
.partner-badge-neon { display: inline-flex; padding: 4px 10px; border-radius: 4px; border: 1px solid rgba(0, 255, 102, 0.4); color: var(--accent-emerald); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 12px; }
.partner-hero-title { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 8px; font-weight: 900; }
.partner-hero-desc { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 24px; line-height: 1.5; }
.partner-hero-benefits { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.benefit-tag { display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; background: #111; border: 1px solid rgba(255,255,255,0.1); border-radius: 6px; font-size: 0.8rem; font-weight: 600; }
.benefit-tag svg { width: 14px; height: 14px; color: var(--accent-emerald); }
.partner-hero-visual { width: 160px; display: flex; justify-content: center; position: relative; z-index: 1; }
.partner-hero-visual img { width: 100%; filter: drop-shadow(0 10px 20px rgba(0, 255, 102, 0.15)); transition: var(--transition-bounce); }
.partner-hero-card:hover .partner-hero-visual img { transform: scale(1.1) rotate(3deg); filter: drop-shadow(0 15px 30px rgba(0, 255, 102, 0.4)); }

.partner-sec-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 24px; }
.partner-sec-card { display: flex; align-items: center; gap: 20px; padding: 20px 24px; border-radius: var(--radius-md); background: #0a0a0c; border: 1px solid rgba(255,255,255,0.08); transition: var(--transition-bounce); }
.partner-sec-logo { width: 64px; height: 64px; flex-shrink: 0; display: grid; place-items: center; border-radius: 8px; background: #111; border: 1px solid rgba(255,255,255,0.1); padding: 8px; transition: var(--transition-bounce); }
.partner-sec-logo img { width: 100%; height: 100%; object-fit: contain; transition: var(--transition-bounce); }
.partner-sec-info { flex: 1; display: flex; flex-direction: column; justify-content: center; }
.partner-sec-info h3 { font-size: 1.2rem; margin-bottom: 4px; transition: var(--transition-fast); }
.partner-sec-info p { color: var(--text-muted); font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; transition: var(--transition-bounce); display: flex; align-items: center; gap: 4px; }

.partner-sec-card:hover { transform: translateY(-4px) scale(1.02); box-shadow: 0 15px 30px rgba(0,0,0,0.8); }
.brand-pirate:hover { border-color: var(--brand-pirate); }
.brand-pirate:hover .partner-sec-logo { border-color: var(--brand-pirate); box-shadow: 0 0 15px rgba(212,255,0,0.2); }
.brand-pirate:hover .partner-sec-info h3 { color: var(--brand-pirate); }
.brand-pirate:hover .partner-sec-info p { color: #fff; transform: translateX(4px); }
.brand-holy:hover { border-color: var(--brand-holy); }
.brand-holy:hover .partner-sec-logo { border-color: var(--brand-holy); box-shadow: 0 0 15px rgba(255,51,102,0.2); }
.brand-holy:hover .partner-sec-info h3 { color: var(--brand-holy); }
.brand-holy:hover .partner-sec-info p { color: #fff; transform: translateX(4px); }

.social-grid-modern { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.social-item { display: flex; align-items: center; gap: 16px; height: 64px; padding: 0 16px; border-radius: 10px; background: #0a0a0c; border: 1px solid rgba(255, 255, 255, 0.08); transition: var(--transition-bounce); }
.social-icon-wrapper { width: 40px; height: 40px; border-radius: 8px; display: grid; place-items: center; background: rgba(255, 255, 255, 0.05); color: var(--text-muted); transition: var(--transition-bounce); }
.social-icon-wrapper svg { width: 20px; height: 20px; }
.social-info { flex: 1; }
.social-name { font-size: 0.95rem; font-weight: 700; color: var(--text-soft); transition: var(--transition-fast); }
.social-arrow { width: 18px; height: 18px; color: var(--text-muted); opacity: 0; transform: translateX(-10px); transition: var(--transition-bounce); }
.social-item:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 10px 20px rgba(0,0,0,0.6); }
.social-item:hover .social-name { color: #fff; }
.social-item:hover .social-arrow { opacity: 1; transform: translateX(0); }

.social-youtube { --s-color: #ff0000; --s-bg: rgba(255,0,0,0.05); }
.social-twitch { --s-color: #9146ff; --s-bg: rgba(145,70,255,0.05); }
.social-discord { --s-color: #5865f2; --s-bg: rgba(88,101,242,0.05); }
.social-instagram { --s-color: #E1306C; --s-bg: rgba(225,48,108,0.05); }
.social-tiktok { --s-color: #00f2fe; --s-bg: rgba(0,242,254,0.05); }
.social-steam { --s-color: #66c0f4; --s-bg: rgba(102,192,244,0.05); }

.social-item:hover { border-color: var(--s-color); background: var(--s-bg); }
.social-item:hover .social-arrow { color: var(--s-color); }
.social-item.social-youtube:hover .social-icon-wrapper { background: var(--s-color); color: #fff; transform: scale(1.1) rotate(-5deg); box-shadow: 0 0 15px var(--s-color); }
.social-item.social-twitch:hover .social-icon-wrapper { background: var(--s-color); color: #fff; transform: scale(1.1) rotate(-5deg); box-shadow: 0 0 15px var(--s-color); }
.social-item.social-discord:hover .social-icon-wrapper { background: var(--s-color); color: #fff; transform: scale(1.1) rotate(-5deg); box-shadow: 0 0 15px var(--s-color); }
.social-item.social-instagram:hover .social-icon-wrapper { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); color: #fff; transform: scale(1.1) rotate(-5deg); box-shadow: 0 0 15px rgba(225, 48, 108, 0.5); }
.social-item.social-tiktok:hover .social-icon-wrapper { background: #010101; color: #fff; border: 1px solid var(--s-color); transform: scale(1.1) rotate(-5deg); box-shadow: -2px 2px 0 #00f2fe, 2px -2px 0 #ff0050; }
.social-item.social-steam:hover .social-icon-wrapper { background: linear-gradient(135deg, #171A21 0%, #1B2838 50%, #2A475E 100%); border: 1px solid #66C0F4; color: #fff; transform: scale(1.1) rotate(-5deg); box-shadow: 0 0 15px rgba(102, 192, 244, 0.4); }

.giveaway-modern-grid { display: flex; flex-direction: column; gap: 20px; }
.giveaway-glass-card { position: relative; display: flex; align-items: center; gap: 24px; padding: 20px; border-radius: var(--radius-md); background: #0a0a0c; border: 1px solid rgba(255, 255, 255, 0.08); transition: var(--transition-bounce); overflow: hidden; }
.giveaway-glass-card::before { content: ''; position: absolute; top: 0; left: 0; bottom: 0; width: 3px; background: rgba(255, 255, 255, 0.1); transition: var(--transition-bounce); z-index: 2; }
.giveaway-glass-card:hover { transform: translateY(-4px) scale(1.01); border-color: rgba(0, 255, 102, 0.3); box-shadow: 0 15px 30px rgba(0,0,0,0.8), 0 0 20px rgba(0, 255, 102, 0.1); background: #0d1116; }
.giveaway-glass-card:hover::before { background: var(--accent-emerald); box-shadow: 0 0 15px var(--accent-emerald); }

.giveaway-image-container { position: relative; width: 180px; height: 120px; flex-shrink: 0; border-radius: 8px; overflow: hidden; background: #111; border: 1px solid rgba(255, 255, 255, 0.05); }
.giveaway-img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition-bounce); }
.giveaway-glass-card:hover .giveaway-img { transform: scale(1.1) rotate(2deg); }
.giveaway-img-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, transparent 60%); }
.giveaway-value-badge { position: absolute; left: 8px; bottom: 8px; padding: 4px 10px; border-radius: 4px; background: var(--accent-emerald); color: #000; font-family: var(--font-display); font-size: 0.8rem; font-weight: 900; letter-spacing: 0.05em; box-shadow: 0 4px 10px rgba(0, 255, 102, 0.3); }

.giveaway-info { flex: 1; display: flex; flex-direction: column; justify-content: center; }
.giveaway-timeline { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.timeline-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent-emerald); box-shadow: 0 0 8px var(--accent-emerald); animation: pulse-live 2s infinite; }
.timeline-text { font-size: 0.75rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.giveaway-info h3 { font-size: 1.4rem; margin-bottom: 6px; color: #fff; transition: var(--transition-fast); }
.giveaway-glass-card:hover .giveaway-info h3 { color: var(--accent-emerald); }
.giveaway-desc { color: var(--text-muted); font-size: 0.95rem; margin: 0; line-height: 1.5; }

.empty-glass-state { min-height: 200px; border-radius: var(--radius-md); border: 2px dashed rgba(255, 255, 255, 0.1); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; text-align: center; padding: 40px; background: #0a0a0c; transition: var(--transition-bounce); }
.empty-glass-state:hover { border-color: rgba(0, 240, 255, 0.3); box-shadow: inset 0 0 30px rgba(0, 240, 255, 0.05); }
.empty-icon { width: 48px; height: 48px; color: var(--accent-cyan); opacity: 0.6; margin-bottom: 8px; transition: var(--transition-fast); }
.empty-glass-state:hover .empty-icon { opacity: 1; filter: drop-shadow(0 0 10px var(--accent-cyan)); transform: scale(1.1); }
.empty-glass-state h3 { font-size: 1.3rem; color: #fff; }
.empty-glass-state p { color: var(--text-muted); font-size: 0.9rem; }

@media (max-width: 1200px) {
    .page-container { grid-template-columns: 1fr; padding: 120px 24px 80px; }
    .sidebar-column { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 900px) {
    .main-column { gap: 64px; }
    .partner-hero-card { flex-direction: column-reverse; gap: 16px; padding: 32px 20px; text-align: center; border-left: 1px solid rgba(255,255,255,0.08); border-top: 3px solid var(--accent-emerald); }
    .partner-hero-content { max-width: 100%; align-items: center; }
    .partner-hero-benefits { justify-content: center; }
    .partner-hero-visual { width: 120px; }
    .partner-sec-grid { grid-template-columns: 1fr; }
    .sidebar-column { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .site-header { width: max-content; padding: 8px 12px; border-radius: 16px; }
    .nav-link { width: 40px; height: 40px; border-radius: 10px; }
    .page-container { padding: 110px 16px 60px; }
    .hero-section { flex-direction: column; align-items: center; text-align: center; gap: 32px; padding: 0; }
    .hero-copy { padding-left: 0; border-left: none; background: none; }
    .hero-buttons-grid { justify-content: center; margin-top: 20px; }
    .social-grid-modern { grid-template-columns: 1fr; }
    .giveaway-glass-card { flex-direction: column; align-items: flex-start; padding: 20px; gap: 16px; }
    .giveaway-image-container { width: 100%; height: 160px; }
}

@media (max-width: 540px) {
    h1 { font-size: 2.2rem; }
    .hero-buttons-grid { flex-direction: column; width: 100%; }
    .hero-buttons-grid .cyber-button { width: 100%; }
    .partner-sec-card { flex-direction: column; text-align: center; padding: 24px 16px; }
    .partner-sec-info p { justify-content: center; }
    .partner-sec-card:hover .partner-sec-info p { transform: translateY(4px); }
    .sidebar-column { display: flex; flex-direction: column; gap: 24px; }
}