/* ═══════════════════════════════════════════════════════════════════════════
   RONINGT - EPIC DARK THEME
   Cyber Ronin Aesthetic - AAA Gaming Brand Design
   ═══════════════════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&family=Rajdhani:wght@300;400;500;600;700&family=Bebas+Neue&display=swap');

:root {
    /* Core Colors */
    --black: #050505;
    --black-rich: #0a0a0a;
    --black-light: #111111;
    --black-lighter: #1a1a1a;
    --black-border: #252525;

    --red: #dc2626;
    --red-bright: #ef4444;
    --red-dark: #991b1b;
    --red-glow: rgba(220, 38, 38, 0.4);
    --red-glow-intense: rgba(220, 38, 38, 0.8);

    --white: #ffffff;
    --white-off: #f5f5f5;
    --white-muted: #a3a3a3;
    --white-dim: #666666;

    --green: #22c55e;
    --green-glow: rgba(34, 197, 94, 0.4);

    /* Typography */
    --font-display: 'Orbitron', sans-serif;
    --font-heading: 'Bebas Neue', sans-serif;
    --font-body: 'Rajdhani', sans-serif;

    /* Layout */
    --container-width: 1400px;
    --header-height: 90px;
    --border-radius: 4px;
    --border-radius-lg: 8px;

    /* Animation */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition: 0.4s var(--ease-out-expo);
    --transition-fast: 0.2s var(--ease-out-expo);
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════════════════════════════════════════ */

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

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--red) var(--black);
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--black);
}

::-webkit-scrollbar-thumb {
    background: var(--red);
    border-radius: 4px;
}

::selection {
    background: var(--red);
    color: var(--white);
}

body {
    font-family: var(--font-body);
    font-weight: 500;
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

a {
    color: var(--red);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--red-bright);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ═══════════════════════════════════════════════════════════════════════════
   UTILITY CLASSES
   ═══════════════════════════════════════════════════════════════════════════ */

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 30px;
}

.text-red { color: var(--red); }
.text-muted { color: var(--white-muted); }

/* Diagonal Clip Path Utility */
.clip-diagonal {
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 40px), 0 100%);
}

.clip-diagonal-reverse {
    clip-path: polygon(0 40px, 100% 0, 100% 100%, 0 100%);
}

/* Glow Effect */
.glow-red {
    box-shadow: 0 0 30px var(--red-glow), 0 0 60px var(--red-glow);
}

/* ═══════════════════════════════════════════════════════════════════════════
   ANIMATED BACKGROUND
   ═══════════════════════════════════════════════════════════════════════════ */

.bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.03;
    background-image:
        linear-gradient(var(--red) 1px, transparent 1px),
        linear-gradient(90deg, var(--red) 1px, transparent 1px);
    background-size: 50px 50px;
}

.bg-noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.015;
    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.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* ═══════════════════════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════════════════════ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 32px;
    background: var(--black-lighter);
    color: var(--white);
    border: 2px solid var(--black-border);
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all var(--transition);
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

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

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

.btn:hover {
    transform: translateY(-3px);
    border-color: var(--red);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.btn-primary {
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    border-color: var(--red);
    box-shadow: 0 0 30px var(--red-glow);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--red-bright) 0%, var(--red) 100%);
    box-shadow: 0 0 50px var(--red-glow), 0 10px 30px rgba(0,0,0,0.3);
}

.btn-outline {
    background: transparent;
    border-color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

.btn-lg {
    padding: 18px 44px;
    font-size: 14px;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 11px;
}

.btn-twitch {
    background: linear-gradient(135deg, #9146ff 0%, #6441a5 100%);
    border-color: #9146ff;
    box-shadow: 0 0 30px rgba(145, 70, 255, 0.3);
}

.btn-kick {
    background: linear-gradient(135deg, #53fc18 0%, #3db813 100%);
    border-color: #53fc18;
    color: var(--black);
    box-shadow: 0 0 30px rgba(83, 252, 24, 0.3);
}

/* ═══════════════════════════════════════════════════════════════════════════
   LIVE BANNER
   ═══════════════════════════════════════════════════════════════════════════ */

.live-banner {
    background: linear-gradient(90deg, var(--red-dark) 0%, var(--red) 50%, var(--red-dark) 100%);
    padding: 14px 0;
    position: relative;
    z-index: 100;
    overflow: hidden;
}

.live-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    to { left: 200%; }
}

.live-banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.live-dot {
    width: 12px;
    height: 12px;
    background: var(--white);
    border-radius: 50%;
    animation: pulse-glow 1.5s ease-in-out infinite;
    box-shadow: 0 0 10px var(--white);
}

@keyframes pulse-glow {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 0 10px var(--white);
    }
    50% {
        opacity: 0.6;
        transform: scale(0.9);
        box-shadow: 0 0 20px var(--white);
    }
}

.live-text {
    color: rgba(255, 255, 255, 0.9);
    font-family: var(--font-body);
    font-size: 15px;
}

.live-btn {
    background: var(--white);
    color: var(--red);
    padding: 10px 24px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 1px;
    clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
    transition: all var(--transition-fast);
}

.live-btn:hover {
    background: var(--black);
    color: var(--white);
}

.live-close {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity var(--transition-fast);
}

.live-close:hover {
    opacity: 1;
}

/* ═══════════════════════════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════════════════════════ */

.site-header {
    position: sticky;
    top: 0;
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--black-border);
    z-index: 90;
}

.site-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--red), transparent);
    opacity: 0.5;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

.site-logo {
    display: flex;
    align-items: center;
    position: relative;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 900;
    color: var(--white);
    letter-spacing: 4px;
    position: relative;
}

.logo-text .text-red {
    color: var(--red);
    text-shadow: 0 0 30px var(--red-glow);
}

/* Glitch effect on hover */
.site-logo:hover .logo-text {
    animation: glitch 0.3s ease;
}

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

.main-nav {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 0;
}

.nav-link {
    display: block;
    padding: 12px 20px;
    color: var(--white-muted);
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    transition: color var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--red);
    transform: translateX(-50%);
    transition: width var(--transition);
    box-shadow: 0 0 10px var(--red-glow);
}

.nav-link:hover {
    color: var(--white);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

.nav-link.active {
    color: var(--white);
}

.header-social {
    display: flex;
    gap: 8px;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black-lighter);
    border: 1px solid var(--black-border);
    color: var(--white-muted);
    font-size: 16px;
    transition: all var(--transition);
    clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
}

.social-icon:hover {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--red-glow);
}

/* Cart Button */
.cart-btn {
    position: relative;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black-lighter);
    border: 1px solid var(--black-border);
    color: var(--white);
    font-size: 18px;
    margin-left: 12px;
    cursor: pointer;
    transition: all var(--transition);
    clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
}

.cart-btn:hover {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--red-glow);
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    background: var(--red);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    box-shadow: 0 2px 10px var(--red-glow);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 100;
}

.mobile-menu-btn span {
    width: 28px;
    height: 2px;
    background: var(--white);
    transition: all var(--transition);
    transform-origin: center;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-nav {
    display: none;
    padding: 30px 0;
    border-top: 1px solid var(--black-border);
    background: var(--black);
}

.mobile-nav-list {
    list-style: none;
}

.mobile-nav-list li a {
    display: block;
    padding: 15px 0;
    color: var(--white-muted);
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-bottom: 1px solid var(--black-border);
    transition: all var(--transition-fast);
}

.mobile-nav-list li a:hover {
    color: var(--red);
    padding-left: 15px;
}

.mobile-social {
    display: flex;
    gap: 15px;
    padding-top: 25px;
    margin-top: 25px;
    border-top: 1px solid var(--black-border);
}

.mobile-social a {
    color: var(--white-muted);
    font-size: 22px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════════════════════ */

.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(220, 38, 38, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(220, 38, 38, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at center, var(--black-light) 0%, var(--black) 100%);
}

/* Animated diagonal lines */
.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 100px,
        rgba(220, 38, 38, 0.03) 100px,
        rgba(220, 38, 38, 0.03) 101px
    );
    animation: diagonal-scroll 20s linear infinite;
}

@keyframes diagonal-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(141px); }
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, var(--black) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 80px 0;
    width: 100%;
}

/* Epic Hero Title */
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(60px, 15vw, 180px);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: 15px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.hero-title .text-red {
    color: var(--red);
    text-shadow:
        0 0 40px var(--red-glow),
        0 0 80px var(--red-glow),
        0 0 120px var(--red-glow);
    animation: title-glow 3s ease-in-out infinite;
}

@keyframes title-glow {
    0%, 100% {
        text-shadow:
            0 0 40px var(--red-glow),
            0 0 80px var(--red-glow),
            0 0 120px var(--red-glow);
    }
    50% {
        text-shadow:
            0 0 60px var(--red-glow-intense),
            0 0 100px var(--red-glow),
            0 0 150px var(--red-glow);
    }
}

/* Decorative lines */
.hero-title::before,
.hero-title::after {
    content: '';
    position: absolute;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--red), transparent);
    width: 120%;
    left: -10%;
}

.hero-title::before {
    top: -30px;
}

.hero-title::after {
    bottom: -30px;
}

.hero-subtitle {
    font-family: var(--font-display);
    font-size: clamp(14px, 2vw, 20px);
    font-weight: 500;
    color: var(--white-muted);
    margin: 50px 0 60px;
    letter-spacing: 8px;
    text-transform: uppercase;
}

.hero-subtitle::before,
.hero-subtitle::after {
    content: '//';
    color: var(--red);
    margin: 0 20px;
}

.hero-actions {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Live Stream Embed */
.live-stream-embed {
    max-width: 1000px;
    margin: 0 auto;
}

.stream-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border: 2px solid var(--red);
    box-shadow:
        0 0 50px var(--red-glow),
        inset 0 0 50px rgba(0,0,0,0.5);
    clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
}

.stream-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.stream-info {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
    padding: 20px;
    background: var(--black-light);
    border-left: 3px solid var(--red);
}

.live-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--red);
    padding: 10px 20px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

/* ═══════════════════════════════════════════════════════════════════════════
   NEXT STREAM BAR
   ═══════════════════════════════════════════════════════════════════════════ */

.next-stream {
    background: var(--black-light);
    padding: 0;
    border-top: 1px solid var(--black-border);
    border-bottom: 1px solid var(--black-border);
    position: relative;
}

.next-stream::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--red);
    box-shadow: 0 0 20px var(--red-glow);
}

.next-stream-card {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 30px 40px;
}

.next-stream-label {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 3px;
    white-space: nowrap;
}

.next-stream-info {
    flex: 1;
}

.next-stream-info h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.next-stream-info p {
    color: var(--white-muted);
    font-size: 15px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   SECTION STYLES
   ═══════════════════════════════════════════════════════════════════════════ */

.section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 900;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 6px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--red);
    box-shadow: 0 0 20px var(--red-glow);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.section-header .section-title {
    text-align: left;
    margin-bottom: 0;
}

.section-header .section-title::after {
    left: 0;
    transform: none;
}

.section-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    color: var(--white-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all var(--transition);
}

.section-link i {
    transition: transform var(--transition);
}

.section-link:hover {
    color: var(--red);
}

.section-link:hover i {
    transform: translateX(5px);
}

/* ═══════════════════════════════════════════════════════════════════════════
   PLATFORMS SECTION
   ═══════════════════════════════════════════════════════════════════════════ */

.platforms-section {
    padding: 120px 0;
    position: relative;
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.platform-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 50px 30px;
    background: linear-gradient(180deg, var(--black-light) 0%, var(--black) 100%);
    border: 1px solid var(--black-border);
    text-align: center;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
}

.platform-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--black-border);
    transition: background var(--transition);
}

.platform-card:hover {
    transform: translateY(-10px);
    border-color: var(--red);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.platform-card:hover::before {
    background: var(--red);
    box-shadow: 0 0 20px var(--red-glow);
}

.platform-card i {
    font-size: 50px;
    transition: transform var(--transition);
}

.platform-card:hover i {
    transform: scale(1.2);
}

.platform-card.twitch i { color: #9146ff; }
.platform-card.kick i { color: #53fc18; }
.platform-card.youtube i { color: #ff0000; }
.platform-card.tiktok i { color: var(--white); }

.platform-card span {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    color: var(--white-muted);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.platform-card:hover span {
    color: var(--white);
}

.platform-live {
    position: absolute;
    top: 15px;
    right: -30px;
    background: var(--red);
    padding: 6px 40px;
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    transform: rotate(45deg);
    box-shadow: 0 0 20px var(--red-glow);
}

/* ═══════════════════════════════════════════════════════════════════════════
   POSTS SECTION
   ═══════════════════════════════════════════════════════════════════════════ */

.recent-posts-section {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--black-light) 0%, var(--black) 100%);
    position: relative;
}

.recent-posts-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--red), transparent);
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.post-card {
    background: var(--black);
    border: 1px solid var(--black-border);
    overflow: hidden;
    transition: all var(--transition);
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
}

.post-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--red);
    transition: height var(--transition);
    z-index: 2;
}

.post-card:hover {
    transform: translateY(-10px);
    border-color: var(--red);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.post-card:hover::before {
    height: 100%;
}

.post-card .post-image {
    display: block;
    aspect-ratio: 16/9;
    overflow: hidden;
    position: relative;
}

.post-card .post-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, var(--black) 100%);
    opacity: 0;
    transition: opacity var(--transition);
}

.post-card:hover .post-image::after {
    opacity: 1;
}

.post-card .post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

.post-card:hover .post-image img {
    transform: scale(1.1);
}

.post-card .post-content {
    padding: 30px;
}

.post-date {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 600;
    color: var(--red);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.post-title {
    font-family: var(--font-body);
    font-size: 22px;
    font-weight: 700;
    margin: 12px 0;
    line-height: 1.3;
}

.post-title a {
    color: var(--white);
    transition: color var(--transition-fast);
}

.post-title a:hover {
    color: var(--red);
}

.post-excerpt {
    color: var(--white-muted);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.post-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    color: var(--red);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.post-link i {
    transition: transform var(--transition);
}

.post-link:hover i {
    transform: translateX(5px);
}

/* ═══════════════════════════════════════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════════════════════════════════════ */

.cta-section {
    padding: 150px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at center, rgba(220, 38, 38, 0.2) 0%, transparent 60%),
        linear-gradient(135deg, var(--black-light) 0%, var(--red-dark) 50%, var(--black-light) 100%);
}

/* Animated background pattern */
.cta-section::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 50px,
        rgba(255,255,255,0.02) 50px,
        rgba(255,255,255,0.02) 51px
    );
    animation: pattern-move 30s linear infinite;
}

@keyframes pattern-move {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 900;
    letter-spacing: 8px;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-shadow: 0 0 50px var(--red-glow);
}

.cta-content p {
    font-size: 18px;
    color: var(--white-muted);
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════════════════════════
   PAGE HERO
   ═══════════════════════════════════════════════════════════════════════════ */

.page-hero {
    padding: 100px 0 80px;
    text-align: center;
    background: linear-gradient(180deg, var(--black-light) 0%, var(--black) 100%);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, var(--red), transparent);
}

.page-title {
    font-family: var(--font-display);
    font-size: clamp(40px, 8vw, 72px);
    font-weight: 900;
    letter-spacing: 8px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.page-title::before,
.page-title::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 60px;
    height: 2px;
    background: var(--red);
}

.page-title::before {
    left: -80px;
}

.page-title::after {
    right: -80px;
}

.page-subtitle {
    color: var(--white-muted);
    margin-top: 15px;
    font-size: 16px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════════════════════════
   PAGE CONTENT
   ═══════════════════════════════════════════════════════════════════════════ */

.page-content {
    padding: 80px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 60px;
}

.rich-content {
    font-size: 17px;
    line-height: 1.9;
}

.rich-content h2 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 2px;
    margin: 40px 0 20px;
    text-transform: uppercase;
}

.rich-content h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 1px;
    margin: 30px 0 15px;
}

.rich-content p {
    margin-bottom: 25px;
    color: var(--white-off);
}

.rich-content ul, .rich-content ol {
    margin: 25px 0;
    padding-left: 30px;
}

.rich-content li {
    margin-bottom: 12px;
}

.rich-content a {
    color: var(--red);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.rich-content strong {
    color: var(--white);
    font-weight: 700;
}

/* ═══════════════════════════════════════════════════════════════════════════
   SIDEBAR
   ═══════════════════════════════════════════════════════════════════════════ */

.sidebar-widget,
.content-sidebar .sidebar-widget {
    background: var(--black-light);
    border: 1px solid var(--black-border);
    padding: 30px;
    margin-bottom: 30px;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%);
}

.sidebar-widget::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--red);
}

.sidebar-widget h3 {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--black-border);
}

/* Social Links List */
.social-links-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-link-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 18px;
    background: var(--black);
    color: var(--white-muted);
    transition: all var(--transition);
    clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.social-link-item:hover {
    background: var(--black-lighter);
    color: var(--white);
    transform: translateX(5px);
}

.social-link-item i {
    width: 20px;
    text-align: center;
    color: var(--red);
}

/* Discord Widget */
.discord-widget {
    background: var(--black-light);
    border: 1px solid var(--black-border);
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%);
}

.discord-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 22px;
    background: #5865f2;
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px;
}

.discord-body {
    padding: 25px;
}

.discord-name {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.discord-online {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white-muted);
    font-size: 14px;
}

.online-dot {
    width: 10px;
    height: 10px;
    background: var(--green);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--green-glow);
}

.discord-join {
    display: block;
    padding: 15px;
    background: #5865f2;
    color: var(--white);
    text-align: center;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 2px;
    transition: background var(--transition);
}

.discord-join:hover {
    background: #4752c4;
    color: var(--white);
}

/* ═══════════════════════════════════════════════════════════════════════════
   SCHEDULE
   ═══════════════════════════════════════════════════════════════════════════ */

.schedule-section {
    padding: 80px 0;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 15px;
}

.schedule-day {
    background: var(--black-light);
    border: 1px solid var(--black-border);
    padding: 25px;
    min-height: 220px;
    position: relative;
    transition: all var(--transition);
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%);
}

.schedule-day::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--black-border);
    transition: background var(--transition);
}

.schedule-day.today {
    border-color: var(--red);
}

.schedule-day.today::before {
    background: var(--red);
    box-shadow: 0 0 20px var(--red-glow);
}

.schedule-day.empty {
    opacity: 0.4;
}

.day-name {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--black-border);
    display: flex;
    align-items: center;
    gap: 10px;
}

.today-badge {
    background: var(--red);
    padding: 3px 10px;
    font-size: 9px;
    letter-spacing: 1px;
    clip-path: polygon(4px 0, 100% 0, 100% calc(100% - 4px), calc(100% - 4px) 100%, 0 100%, 0 4px);
}

.no-shows {
    color: var(--white-dim);
    font-size: 14px;
    font-style: italic;
}

.show-item {
    padding: 18px;
    background: var(--black);
    margin-bottom: 12px;
    border-left: 3px solid var(--red);
    transition: all var(--transition);
}

.show-item:hover {
    transform: translateX(5px);
    background: var(--black-lighter);
}

.show-time {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    color: var(--red);
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.show-name {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
}

.show-description {
    color: var(--white-muted);
    font-size: 13px;
    margin-top: 5px;
}

.schedule-note {
    text-align: center;
    padding: 40px;
    color: var(--white-muted);
    font-size: 15px;
}

.platforms-cta {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(180deg, var(--black-light) 0%, var(--black) 100%);
    position: relative;
}

.platforms-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--red), transparent);
}

.platforms-cta h2 {
    font-family: var(--font-display);
    font-size: 44px;
    font-weight: 900;
    letter-spacing: 4px;
    margin-bottom: 15px;
}

.platforms-cta p {
    color: var(--white-muted);
    margin-bottom: 40px;
}

.platform-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════════════════════════
   BLOG
   ═══════════════════════════════════════════════════════════════════════════ */

.blog-section {
    padding: 80px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 60px;
}

.posts-list {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.post-card.horizontal {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 30px;
}

.post-card.horizontal .post-image {
    aspect-ratio: 4/3;
}

.post-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
}

.post-reading-time {
    color: var(--white-dim);
    font-size: 13px;
}

.search-form {
    display: flex;
    background: var(--black);
    border: 1px solid var(--black-border);
    overflow: hidden;
    clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.search-form input {
    flex: 1;
    padding: 14px 18px;
    background: transparent;
    border: none;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 15px;
}

.search-form input:focus {
    outline: none;
}

.search-form input::placeholder {
    color: var(--white-dim);
}

.search-form button {
    padding: 14px 20px;
    background: var(--red);
    border: none;
    color: var(--white);
    cursor: pointer;
    transition: background var(--transition);
}

.search-form button:hover {
    background: var(--red-bright);
}

.category-list {
    list-style: none;
}

.category-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--black-border);
}

.category-list li:last-child {
    border-bottom: none;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    color: var(--white-muted);
    font-size: 15px;
    transition: all var(--transition-fast);
}

.category-list a:hover {
    color: var(--red);
    padding-left: 10px;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    padding: 8px 15px;
    background: var(--black);
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 600;
    color: var(--white-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all var(--transition);
    clip-path: polygon(5px 0, 100% 0, 100% calc(100% - 5px), calc(100% - 5px) 100%, 0 100%, 0 5px);
}

.tag:hover {
    background: var(--red);
    color: var(--white);
}

.recent-posts-list {
    list-style: none;
}

.recent-posts-list li {
    padding: 15px 0;
    border-bottom: 1px solid var(--black-border);
}

.recent-posts-list li:last-child {
    border-bottom: none;
}

.recent-posts-list a {
    display: block;
    color: var(--white-muted);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 5px;
    transition: color var(--transition-fast);
}

.recent-posts-list a:hover {
    color: var(--white);
}

.recent-posts-list time {
    font-size: 12px;
    color: var(--white-dim);
}

/* Single Post */
.single-post .post-header {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(180deg, var(--black-light) 0%, var(--black) 100%);
}

.post-categories {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 20px;
}

.category-link {
    padding: 8px 18px;
    background: var(--red);
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
    clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
}

.single-post .post-title {
    font-family: var(--font-body);
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 700;
    max-width: 900px;
    margin: 0 auto 25px;
    line-height: 1.2;
}

.single-post .post-meta {
    justify-content: center;
    color: var(--white-muted);
    font-size: 14px;
}

.single-post .post-meta i {
    margin-right: 8px;
    color: var(--red);
}

.post-featured-image {
    max-height: 550px;
    overflow: hidden;
    position: relative;
}

.post-featured-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(transparent, var(--black));
}

.post-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 60px;
    padding: 80px 0;
}

.post-body {
    max-width: 750px;
}

.post-tags {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    padding: 30px 0;
    margin-top: 40px;
    border-top: 1px solid var(--black-border);
}

.post-share {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 30px;
    border-top: 1px solid var(--black-border);
}

.post-share span {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white-muted);
}

.share-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black-light);
    border: 1px solid var(--black-border);
    color: var(--white-muted);
    cursor: pointer;
    transition: all var(--transition);
    clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
}

.share-btn:hover {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
}

.related-posts {
    padding: 80px 0;
    background: var(--black-light);
}

.related-posts h2 {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 900;
    letter-spacing: 4px;
    margin-bottom: 40px;
}

.preview-banner {
    background: var(--red);
    padding: 14px 0;
    text-align: center;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 2px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════════════════════════════ */

.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
}

.contact-form {
    background: var(--black-light);
    border: 1px solid var(--black-border);
    padding: 50px;
    position: relative;
    clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--red);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    color: var(--white-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    background: var(--black);
    border: 1px solid var(--black-border);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 16px;
    transition: all var(--transition);
    clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--red);
    box-shadow: 0 0 20px var(--red-glow);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--white-dim);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23dc2626' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
}

.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-card,
.social-links-card {
    background: var(--black-light);
    border: 1px solid var(--black-border);
    padding: 35px;
    position: relative;
    clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
}

.contact-info-card::before,
.social-links-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--red);
}

.contact-info-card h3,
.social-links-card h3 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 30px;
}

.contact-method {
    display: flex;
    gap: 18px;
    margin-bottom: 28px;
}

.contact-method:last-child {
    margin-bottom: 0;
}

.contact-method i {
    font-size: 26px;
    color: var(--red);
    width: 30px;
}

.contact-method h4 {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
}

.contact-method p {
    color: var(--white-muted);
    font-size: 14px;
}

.social-links-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-link-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: var(--black);
    color: var(--white-muted);
    transition: all var(--transition);
    clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.social-link-btn:hover {
    background: var(--black-lighter);
    color: var(--white);
    transform: translateX(5px);
}

.social-link-btn i {
    width: 22px;
    text-align: center;
    color: var(--red);
}

/* ═══════════════════════════════════════════════════════════════════════════
   ERROR PAGE
   ═══════════════════════════════════════════════════════════════════════════ */

.error-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 30px;
    position: relative;
}

.error-code {
    font-family: var(--font-display);
    font-size: clamp(100px, 20vw, 200px);
    font-weight: 900;
    line-height: 1;
    color: var(--red);
    text-shadow:
        0 0 60px var(--red-glow),
        0 0 120px var(--red-glow);
    animation: error-pulse 2s ease-in-out infinite;
}

@keyframes error-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.error-title {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 4px;
    margin: 25px 0 15px;
}

.error-message {
    color: var(--white-muted);
    margin-bottom: 40px;
    font-size: 17px;
}

.error-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* ═══════════════════════════════════════════════════════════════════════════
   ALERTS
   ═══════════════════════════════════════════════════════════════════════════ */

.alert {
    padding: 18px 25px;
    margin: 25px 0;
    border-left: 4px solid;
    font-weight: 500;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%);
}

.alert-success {
    background: rgba(34, 197, 94, 0.1);
    border-color: var(--green);
    color: var(--green);
}

.alert-error {
    background: rgba(220, 38, 38, 0.1);
    border-color: var(--red);
    color: var(--red);
}

/* ═══════════════════════════════════════════════════════════════════════════
   PAGINATION
   ═══════════════════════════════════════════════════════════════════════════ */

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    padding: 50px 0;
}

.pagination-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--black-lighter);
    border: 1px solid var(--black-border);
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    color: var(--white-muted);
    letter-spacing: 2px;
    transition: all var(--transition);
    clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.pagination-btn:hover {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
}

.pagination-info {
    font-family: var(--font-display);
    font-size: 13px;
    color: var(--white-muted);
    letter-spacing: 1px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════════════ */

.site-footer {
    background: var(--black-rich);
    border-top: 1px solid var(--black-border);
    padding: 80px 0 40px;
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--red), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
}

.footer-brand .logo-text {
    font-size: 24px;
}

.footer-brand .tagline {
    font-family: var(--font-display);
    color: var(--red);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    margin: 15px 0 25px;
    text-transform: uppercase;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black-lighter);
    border: 1px solid var(--black-border);
    color: var(--white-muted);
    transition: all var(--transition);
    clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
}

.footer-social a:hover {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-links h4 {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 25px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--white-muted);
    font-size: 15px;
    transition: all var(--transition-fast);
}

.footer-links a:hover {
    color: var(--red);
    padding-left: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 50px;
    margin-top: 50px;
    border-top: 1px solid var(--black-border);
    color: var(--white-dim);
    font-size: 14px;
}

.footer-tagline {
    font-family: var(--font-display);
    color: var(--red);
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 4px;
    margin-top: 10px;
    text-shadow: 0 0 30px var(--red-glow);
}

/* ═══════════════════════════════════════════════════════════════════════════
   ANIMATIONS & SCROLL REVEALS
   ═══════════════════════════════════════════════════════════════════════════ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.8s var(--ease-out-expo) forwards;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════════════ */

@media (max-width: 1200px) {
    .platforms-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

@media (max-width: 1024px) {
    .schedule-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .content-grid,
    .blog-grid,
    .post-layout,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .content-sidebar,
    .blog-sidebar,
    .post-sidebar,
    .contact-sidebar {
        order: -1;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }

    .container {
        padding: 0 20px;
    }

    .main-nav,
    .header-social {
        display: none;
    }

    .cart-btn {
        margin-left: auto;
        margin-right: 15px;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-nav[x-show="mobileMenuOpen"] {
        display: block !important;
    }

    .hero {
        min-height: 80vh;
    }

    .hero-title {
        letter-spacing: 5px;
    }

    .hero-title::before,
    .hero-title::after {
        display: none;
    }

    .hero-subtitle::before,
    .hero-subtitle::after {
        display: none;
    }

    .platforms-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .platform-card {
        padding: 35px 20px;
    }

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

    .post-card.horizontal {
        grid-template-columns: 1fr;
    }

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

    .next-stream-card {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 35px 25px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .footer-social {
        justify-content: center;
    }

    .section-title {
        letter-spacing: 3px;
    }

    .page-title::before,
    .page-title::after {
        display: none;
    }

    .cta-content h2 {
        letter-spacing: 4px;
    }
}

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

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn-lg {
        width: 100%;
        max-width: 300px;
    }

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

/* ═══════════════════════════════════════════════════════════════════════════
   CART DRAWER
   ═══════════════════════════════════════════════════════════════════════════ */

[x-cloak] {
    display: none !important;
}

.cart-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 9998;
    cursor: pointer;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: -450px;
    width: 420px;
    max-width: 100%;
    height: 100vh;
    background: var(--black-rich);
    border-left: 2px solid var(--red);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5), -5px 0 20px var(--red-glow);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    transition: right 0.4s var(--ease-out-expo);
}

.cart-drawer.open {
    right: 0;
}

.cart-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: var(--black);
    border-bottom: 1px solid var(--black-border);
}

.cart-drawer-header h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    margin: 0;
}

.cart-drawer-header h3 i {
    color: var(--red);
    margin-right: 10px;
}

.cart-drawer-close {
    width: 40px;
    height: 40px;
    background: var(--black-lighter);
    border: 1px solid var(--black-border);
    color: var(--white-muted);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
}

.cart-drawer-close:hover {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
}

.cart-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-drawer-loading,
.cart-drawer-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 200px;
    color: var(--white-muted);
    text-align: center;
    gap: 15px;
}

.cart-drawer-loading i,
.cart-drawer-empty i {
    font-size: 48px;
    color: var(--red);
    opacity: 0.5;
}

.cart-drawer-empty p {
    font-size: 16px;
    margin-bottom: 10px;
}

.cart-drawer-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cart-drawer-item {
    display: grid;
    grid-template-columns: 70px 1fr auto;
    gap: 15px;
    padding: 15px;
    background: var(--black-light);
    border: 1px solid var(--black-border);
    border-radius: var(--border-radius);
    transition: all var(--transition-fast);
}

.cart-drawer-item:hover {
    border-color: var(--red);
    box-shadow: 0 0 15px var(--red-glow);
}

.cart-item-image {
    width: 70px;
    height: 70px;
    background: var(--black-lighter);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    min-width: 0;
}

.cart-item-title {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cart-item-variant {
    font-size: 12px;
    color: var(--white-muted);
    margin: 0;
}

.cart-item-price {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--red);
    margin: 0;
}

.cart-item-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
    gap: 8px;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--black);
    border: 1px solid var(--black-border);
    border-radius: var(--border-radius);
    padding: 4px;
}

.cart-item-qty button {
    width: 24px;
    height: 24px;
    background: var(--black-lighter);
    border: none;
    color: var(--white-muted);
    font-size: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    border-radius: 2px;
}

.cart-item-qty button:hover:not(:disabled) {
    background: var(--red);
    color: var(--white);
}

.cart-item-qty button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.cart-item-qty span {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    min-width: 20px;
    text-align: center;
}

.cart-item-remove {
    background: none;
    border: none;
    color: var(--white-dim);
    font-size: 12px;
    cursor: pointer;
    padding: 5px;
    transition: all var(--transition-fast);
}

.cart-item-remove:hover:not(:disabled) {
    color: var(--red);
}

.cart-item-remove:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.cart-drawer-footer {
    padding: 20px 25px;
    background: var(--black);
    border-top: 1px solid var(--black-border);
}

.cart-subtotal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.cart-subtotal span:first-child {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white-muted);
}

.cart-subtotal span:last-child {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
}

.cart-shipping-note {
    font-size: 12px;
    color: var(--white-dim);
    margin-bottom: 15px;
}

.btn-checkout {
    width: 100%;
    margin-bottom: 10px;
}

.btn-view-cart {
    width: 100%;
    background: transparent;
    border-color: var(--white-dim);
    color: var(--white-muted);
}

.btn-view-cart:hover {
    border-color: var(--white);
    color: var(--white);
    background: var(--black-lighter);
}

@media (max-width: 480px) {
    .cart-drawer {
        width: 100%;
        right: -100%;
    }

    .cart-drawer-item {
        grid-template-columns: 60px 1fr;
        gap: 12px;
    }

    .cart-item-actions {
        grid-column: span 2;
        flex-direction: row;
        justify-content: space-between;
    }
}
