/*
Theme Name: Streamr - 和 Edition
Theme URI: https://example.com/streamr
Author: Claude
Description: Ein modernes Gaming & Streaming WordPress Theme mit japanischer Ästhetik
Version: 2.0.0
License: GNU General Public License v2 or later
Text Domain: streamr
*/

/* ========================================
   CSS VARIABLES - LIGHT MODE (Default)
   ======================================== */
:root {
    --color-aka: #aa0b2d;
    --color-sumi: #2f2f2f;
    --color-shiro: #e5e5e5;
    --color-bg: #fafafa;
    --color-bg-dark: #f0f0f0;
    --color-bg-card: #ffffff;
    --color-text: #2f2f2f;
    --color-text-light: #ffffff;
    --color-text-muted: #6b6b6b;
    --color-sakura: #ffb7c5;
    --color-twitch: #9146ff;
    --color-youtube: #ff0000;
    --font-display: 'Zen Dots', 'Orbitron', sans-serif;
    --font-body: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;
    --font-accent: 'Shippori Mincho', 'Noto Serif JP', serif;
    --font-mono: 'JetBrains Mono', monospace;
    --header-height: 70px;
}

/* ========================================
   CSS VARIABLES - DARK MODE
   ======================================== */
[data-theme="dark"] {
    --color-bg: #1a1a1a;
    --color-bg-dark: #141414;
    --color-bg-card: #252525;
    --color-text: #e5e5e5;
    --color-text-muted: #999999;
    --color-shiro: #3a3a3a;
}

/* Auto Dark Mode (System Preference) */
@media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) {
        --color-bg: #1a1a1a;
        --color-bg-dark: #141414;
        --color-bg-card: #252525;
        --color-text: #e5e5e5;
        --color-text-muted: #999999;
        --color-shiro: #3a3a3a;
    }
}

/* ========================================
   RESET & BASE
   ======================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

body.menu-open {
    overflow: hidden;
}

::selection {
    background: var(--color-aka);
    color: var(--color-text-light);
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

ul, ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ========================================
   SAKURA ANIMATION
   ======================================== */
.sakura-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}

.sakura {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--color-sakura);
    border-radius: 50% 0 50% 50%;
    opacity: 0;
    animation: sakuraFall linear infinite;
}

.sakura:nth-child(1) { left: 5%; animation-duration: 14s; animation-delay: 0s; }
.sakura:nth-child(2) { left: 18%; animation-duration: 17s; animation-delay: 2s; width: 8px; height: 8px; }
.sakura:nth-child(3) { left: 32%; animation-duration: 12s; animation-delay: 4s; }
.sakura:nth-child(4) { left: 45%; animation-duration: 16s; animation-delay: 1s; width: 12px; height: 12px; }
.sakura:nth-child(5) { left: 58%; animation-duration: 19s; animation-delay: 3s; }
.sakura:nth-child(6) { left: 72%; animation-duration: 13s; animation-delay: 5s; width: 7px; height: 7px; }
.sakura:nth-child(7) { left: 85%; animation-duration: 15s; animation-delay: 2s; }
.sakura:nth-child(8) { left: 92%; animation-duration: 18s; animation-delay: 4s; width: 9px; height: 9px; }

@keyframes sakuraFall {
    0% { top: -20px; transform: translateX(0) rotate(0deg); opacity: 0; }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { top: 100vh; transform: translateX(100px) rotate(720deg); opacity: 0; }
}

/* ========================================
   LAYOUT
   ======================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 5rem 0;
    position: relative;
}

/* ========================================
   HEADER - RESPONSIVE
   ======================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    background: rgba(47, 47, 47, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    height: var(--header-height);
}

.site-header.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.15);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

/* Logo */
.site-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text-light);
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 1001;
}

.logo-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-mon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border: 2px solid var(--color-aka);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-accent);
    font-size: 1rem;
    color: var(--color-aka);
    transition: all 0.3s ease;
}

/* Logo Image */
.logo-image {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 50%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.site-logo:hover .logo-image {
    transform: scale(1.1);
}

.site-logo:hover .logo-mon {
    background: var(--color-aka);
    color: var(--color-text-light);
}

/* Live Indicator im Header */
.live-indicator {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 12px;
    height: 12px;
    background: #ff0000;
    border-radius: 50%;
    border: 2px solid var(--color-sumi);
    animation: liveIndicatorPulse 1.5s ease-in-out infinite;
}

.logo-wrapper.is-live {
    animation: liveGlow 2s ease-in-out infinite;
}

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

@keyframes liveGlow {
    0%, 100% { filter: drop-shadow(0 0 0 transparent); }
    50% { filter: drop-shadow(0 0 8px rgba(255, 0, 0, 0.5)); }
}

/* Desktop Navigation */
.main-nav {
    display: flex;
    align-items: center;
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.main-nav a {
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0.5rem 0;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-aka);
    transition: width 0.3s ease;
}

.main-nav a:hover {
    color: var(--color-aka);
}

.main-nav a:hover::after {
    width: 100%;
}

/* Nav CTA */
.nav-cta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Dark Mode Toggle */
.dark-mode-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    color: var(--color-text-light);
    transition: all 0.3s ease;
}

.dark-mode-toggle:hover {
    border-color: var(--color-aka);
    color: var(--color-aka);
}

.dark-mode-toggle .icon-sun {
    display: block;
}

.dark-mode-toggle .icon-moon {
    display: none;
}

[data-theme="dark"] .dark-mode-toggle .icon-sun {
    display: none;
}

[data-theme="dark"] .dark-mode-toggle .icon-moon {
    display: block;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    padding: 10px;
    cursor: pointer;
    z-index: 1001;
    background: transparent;
    border: none;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text-light);
    margin: 3px 0;
    transition: all 0.3s ease;
    transform-origin: center;
}

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

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

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

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 2px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.btn--primary {
    background: var(--color-aka);
    color: var(--color-text-light);
    border: 2px solid var(--color-aka);
}

.btn--primary:hover {
    background: transparent;
    color: var(--color-aka);
    transform: translateY(-2px);
}

.btn--outline {
    background: transparent;
    color: var(--color-text);
    border: 2px solid var(--color-text);
}

.btn--outline:hover {
    background: var(--color-text);
    color: var(--color-text-light);
}

.btn--outline-light {
    background: transparent;
    color: var(--color-text-light);
    border: 2px solid var(--color-text-light);
}

.btn--outline-light:hover {
    background: var(--color-text-light);
    color: var(--color-text);
}

.btn--twitch {
    background: var(--color-twitch);
    color: var(--color-text-light);
    border: 2px solid var(--color-twitch);
}

.btn--twitch:hover {
    background: transparent;
    color: var(--color-twitch);
}

.btn--youtube {
    background: var(--color-youtube);
    color: var(--color-text-light);
    border: 2px solid var(--color-youtube);
}

.btn--youtube:hover {
    background: transparent;
    color: var(--color-youtube);
}

.btn--small {
    padding: 0.5rem 1rem;
    font-size: 0.7rem;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: calc(var(--header-height) + 2rem) 1.5rem 2rem;
    background: linear-gradient(180deg, #1a1a1a, var(--color-sumi));
    color: var(--color-text-light);
    position: relative;
    overflow: hidden;
    text-align: center;
}

/* Hero Fade Overlay */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to bottom, transparent, var(--color-bg));
    pointer-events: none;
    z-index: 2;
}

/* Decorative Circles */
.hero::before {
    content: '';
    position: absolute;
    top: 10%;
    right: -20%;
    width: 500px;
    height: 500px;
    border: 1px solid rgba(170, 11, 45, 0.1);
    border-radius: 50%;
    animation: rotate 120s linear infinite;
    pointer-events: none;
}

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

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border: 1px solid var(--color-aka);
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--color-aka);
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

/* Live Status Badge */
.hero-badge.is-live {
    background: var(--color-aka);
    color: var(--color-text-light);
    animation: livePulse 2s ease-in-out infinite;
}

.hero-badge.is-live .live-dot {
    background: var(--color-text-light);
}

@keyframes livePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(170, 11, 45, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(170, 11, 45, 0); }
}

.live-dot {
    width: 8px;
    height: 8px;
    background: var(--color-aka);
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
}

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

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.hero-title .highlight {
    color: var(--color-aka);
}

.hero-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    min-width: 80px;
}

.stat-value {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 0.25rem;
    color: var(--color-text-light);
}

.stat-label {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Scroll Indicator - FIXED SIZE */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-light);
    opacity: 0.5;
    z-index: 3;
    animation: bounce 2s ease-in-out infinite;
}

.scroll-indicator span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-indicator svg {
    width: 24px;
    height: 24px;
    max-width: 24px;
    max-height: 24px;
}

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

/* ========================================
   SECTION HEADERS
   ======================================== */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-label {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--color-aka);
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.section-header p {
    color: var(--color-text-muted);
    max-width: 500px;
    margin: 0 auto;
}

/* ========================================
   TWITCH SECTION
   ======================================== */
.twitch-section {
    background: var(--color-bg);
}

.twitch-embed-wrapper {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.twitch-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.twitch-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ========================================
   YOUTUBE SECTION
   ======================================== */
.youtube-section {
    background: var(--color-bg-dark);
    position: relative;
}

.youtube-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, var(--color-bg), var(--color-bg-dark));
    pointer-events: none;
}

/* YouTube Featured Video (Neuestes Video) */
.youtube-featured-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.youtube-featured {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.youtube-featured iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.youtube-featured-info {
    padding: 1.5rem 0;
    text-align: center;
}

.youtube-featured-info h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.youtube-featured-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* Weitere Videos Section */
.youtube-more-videos {
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.youtube-more-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    text-align: center;
}

.youtube-videos-grid-small {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .youtube-videos-grid-small {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Kleine Video Cards */
.youtube-small-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: var(--color-bg-card);
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--color-shiro);
    transition: all 0.3s ease;
}

.youtube-small-card:hover {
    border-color: var(--color-aka);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.youtube-small-thumb {
    position: relative;
    padding-bottom: 56.25%;
    background: var(--color-sumi);
}

.youtube-small-thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.youtube-small-card:hover .youtube-small-thumb img {
    transform: scale(1.05);
}

.youtube-small-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: rgba(170, 11, 45, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.youtube-small-play svg {
    width: 16px;
    height: 16px;
    color: white;
    margin-left: 2px;
}

.youtube-small-card:hover .youtube-small-play {
    opacity: 1;
}

.youtube-small-info {
    padding: 0.75rem;
}

.youtube-small-info h5 {
    font-size: 0.8rem;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 0.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.youtube-small-info span {
    font-size: 0.7rem;
    color: var(--color-text-muted);
}

/* YouTube Fallback (wenn keine API) */
.youtube-fallback {
    max-width: 600px;
    margin: 0 auto;
}

.youtube-fallback-content {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--color-bg-card);
    border-radius: 12px;
    border: 1px solid var(--color-shiro);
}

.youtube-fallback-content svg {
    margin-bottom: 1.5rem;
}

.youtube-fallback-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.youtube-fallback-content p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

/* About Image Placeholder */
.about-image-placeholder {
    aspect-ratio: 1;
    background: var(--color-bg-card);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-shiro);
    color: var(--color-text-muted);
}

/* Legacy YouTube Grid (Fallback) */
.youtube-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.youtube-main {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.youtube-main iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.youtube-sidebar {
    display: none;
}

.video-card {
    background: var(--color-bg-card);
    border-radius: 8px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid var(--color-shiro);
}

.video-card:hover {
    border-color: var(--color-aka);
    transform: translateY(-3px);
}

.video-card h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.video-card-meta {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about-section {
    background: var(--color-bg);
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, var(--color-bg-dark), var(--color-bg));
    pointer-events: none;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
}

.about-image {
    max-width: 300px;
    margin: 0 auto;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.about-content {
    text-align: center;
}

.about-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.about-content p {
    color: var(--color-text-muted);
    line-height: 1.9;
    margin-bottom: 1rem;
}

.about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.tag {
    padding: 0.4rem 0.8rem;
    background: transparent;
    border: 1px solid var(--color-sumi);
    font-size: 0.75rem;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.tag:hover {
    border-color: var(--color-aka);
    color: var(--color-aka);
}

/* ========================================
   SCHEDULE SECTION - INTERACTIVE
   ======================================== */
.schedule-section {
    background: var(--color-sumi);
    color: var(--color-text-light);
    position: relative;
    overflow: hidden;
}

.schedule-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 0L0 20l20 20 20-20L20 0zm0 8l12 12-12 12-12-12 12-12z' fill='%23ffffff' fill-opacity='0.02'/%3E%3C/svg%3E");
    pointer-events: none;
}

.schedule-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(to top, var(--color-bg), transparent);
    pointer-events: none;
    z-index: 1;
}

.schedule-section .section-title {
    color: var(--color-text-light);
}

.schedule-section .section-header p {
    color: rgba(255,255,255,0.6);
}

.schedule-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

/* Schedule Card - Clickable/Expandable */
.schedule-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    padding: 1.25rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.schedule-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--color-aka);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.schedule-card:hover,
.schedule-card.active {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(170, 11, 45, 0.4);
}

.schedule-card:hover::before,
.schedule-card.active::before {
    transform: scaleY(1);
}

.schedule-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.schedule-day {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--color-aka);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.25rem;
}

.schedule-time {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.schedule-game {
    color: var(--color-shiro);
    opacity: 0.6;
    font-size: 0.85rem;
}

.schedule-toggle {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-aka);
    transition: transform 0.3s ease;
}

.schedule-card.active .schedule-toggle {
    transform: rotate(180deg);
}

/* Schedule Card Expanded Content */
.schedule-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.schedule-card.active .schedule-details {
    max-height: 200px;
    padding-top: 1rem;
    margin-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.schedule-description {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.schedule-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--color-twitch);
    color: var(--color-text-light);
    border-radius: 2px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.schedule-link:hover {
    background: #7c3aed;
    transform: translateY(-2px);
}

.schedule-link svg {
    width: 14px;
    height: 14px;
}

/* ========================================
   SOCIAL CARDS (Über Mich Seite)
   ======================================== */
.social-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: var(--color-bg-card);
    border: 1px solid var(--color-shiro);
    border-radius: 8px;
    padding: 2rem 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-card:hover {
    border-color: var(--color-aka);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.social-card-title {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.25rem;
    color: var(--color-text);
}

.social-card-handle {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
    background: var(--color-sumi);
    color: var(--color-text-light);
    padding: 4rem 0 2rem;
    position: relative;
    z-index: 1;
    margin-top: 0;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: -80px;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to bottom, transparent, var(--color-sumi));
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.footer-brand {
    margin-bottom: 1rem;
}

.footer-brand .site-logo {
    justify-content: center;
    margin-bottom: 1rem;
    display: inline-flex;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 0.6rem;
    justify-content: center;
    flex-wrap: wrap;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.social-link:hover {
    border-color: var(--color-aka);
    color: var(--color-aka);
}

.social-link svg {
    width: 18px;
    height: 18px;
}

/* Footer Navigation Columns */
.footer-nav {
    text-align: center;
}

.footer-nav h4 {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li {
    margin-bottom: 0.5rem;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.footer-nav a:hover {
    color: var(--color-aka);
}

/* Legacy support for footer-column */
.footer-column {
    text-align: center;
}

.footer-column h4 {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.footer-column a:hover {
    color: var(--color-aka);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
}

.footer-legal {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 0.5rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.footer-legal a:hover {
    color: var(--color-aka);
}

/* ========================================
   REVEAL ANIMATIONS
   ======================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-scale.revealed {
    opacity: 1;
    transform: scale(1);
}

/* Stagger Delays */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }

/* ========================================
   TABLET STYLES (768px+)
   ======================================== */
@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }

    .section {
        padding: 6rem 0;
    }

    .hero {
        padding: calc(var(--header-height) + 3rem) 2rem 3rem;
    }

    .hero-title {
        font-size: clamp(2rem, 5vw, 3.5rem);
    }

    .hero-stats {
        gap: 3rem;
    }

    .stat-value {
        font-size: 2rem;
    }

    .scroll-indicator {
        bottom: 3rem;
    }

    .schedule-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .about-grid {
        grid-template-columns: 300px 1fr;
        gap: 3rem;
        text-align: left;
    }

    .about-content {
        text-align: left;
    }

    .about-tags {
        justify-content: flex-start;
    }

    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
        text-align: left;
    }

    .footer-nav {
        text-align: left;
    }

    .footer-brand .site-logo {
        justify-content: flex-start;
    }

    .social-links {
        justify-content: flex-start;
    }

    .youtube-sidebar {
        display: block;
    }

    .youtube-grid {
        grid-template-columns: 2fr 1fr;
    }
}

/* ========================================
   DESKTOP STYLES (1024px+)
   ======================================== */
@media (min-width: 1024px) {
    .menu-toggle {
        display: none !important;
    }

    .main-nav {
        display: flex !important;
        position: static;
        background: transparent;
        width: auto;
        height: auto;
        opacity: 1;
        visibility: visible;
    }

    .main-nav ul {
        flex-direction: row;
        gap: 2.5rem;
    }

    .main-nav a {
        font-size: 0.75rem;
        color: rgba(255,255,255,0.6);
    }

    .hero-buttons {
        flex-wrap: nowrap;
    }

    .schedule-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .about-grid {
        grid-template-columns: 350px 1fr;
        gap: 4rem;
    }

    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }

    .footer-nav {
        text-align: left;
    }
}

/* ========================================
   MOBILE STYLES (< 768px)
   ======================================== */
@media (max-width: 767px) {
    :root {
        --header-height: 60px;
    }

    .site-logo {
        font-size: 1rem;
    }

    .logo-mon {
        width: 34px;
        height: 34px;
        min-width: 34px;
        font-size: 0.9rem;
    }

    /* Mobile Menu Toggle - Show */
    .menu-toggle {
        display: flex;
    }

    /* Hide desktop nav, CTA button on mobile */
    .nav-cta .btn {
        display: none;
    }

    /* Mobile Navigation Overlay */
    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(26, 26, 26, 0.98);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
    }

    .main-nav.active {
        opacity: 1;
        visibility: visible;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .main-nav a {
        font-size: 1.2rem;
        color: var(--color-text-light);
        padding: 0.75rem;
    }

    /* Mobile Hero */
    .hero {
        min-height: auto;
        padding: calc(var(--header-height) + 3rem) 1rem 4rem;
    }

    .hero-badge {
        font-size: 0.65rem;
        padding: 0.4rem 0.8rem;
    }

    .hero-title {
        font-size: 1.6rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .stat-value {
        font-size: 1.3rem;
    }

    .stat-label {
        font-size: 0.6rem;
    }

    /* Mobile Scroll Indicator - FIXED */
    .scroll-indicator {
        bottom: 1.5rem;
    }

    .scroll-indicator span {
        font-size: 0.6rem;
    }

    .scroll-indicator svg {
        width: 20px !important;
        height: 20px !important;
        max-width: 20px !important;
        max-height: 20px !important;
    }

    /* Mobile Sections */
    .section {
        padding: 3.5rem 0;
    }

    .section-title {
        font-size: 1.3rem;
    }

    .section-header p {
        font-size: 0.9rem;
    }

    /* Mobile Schedule */
    .schedule-grid {
        grid-template-columns: 1fr;
    }

    .schedule-time {
        font-size: 1.1rem;
    }

    /* Mobile Buttons */
    .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.7rem;
    }

    /* Mobile Footer */
    .footer-grid {
        gap: 1.5rem;
    }

    .footer-nav {
        display: none;
    }

    .footer-nav:first-child,
    .footer-brand {
        display: block;
    }

    .footer-column {
        display: none;
    }

    .footer-column:first-child {
        display: block;
    }
}

/* ========================================
   PAGE TEMPLATES
   ======================================== */
.page-header {
    background: linear-gradient(180deg, #1a1a1a, var(--color-sumi));
    color: var(--color-text-light);
    padding: calc(var(--header-height) + 3rem) 1.5rem 3rem;
    text-align: center;
}

.page-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 600;
    letter-spacing: 2px;
}

.page-content {
    padding: 3rem 0;
    max-width: 750px;
    margin: 0 auto;
}

.page-content p {
    margin-bottom: 1rem;
    line-height: 1.9;
}

.page-content h2 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
    color: var(--color-aka);
}

/* ========================================
   STREAM COUNTDOWN
   ======================================== */
.stream-countdown {
    text-align: center;
    margin-bottom: 2rem;
}

.countdown-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1rem;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 60px;
}

.countdown-value {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-text-light);
    line-height: 1;
    background: linear-gradient(180deg, var(--color-aka), #ff4d6d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.countdown-unit {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.25rem;
}

.countdown-separator {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--color-aka);
    opacity: 0.5;
    margin-bottom: 1rem;
}

.countdown-info {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

@media (min-width: 768px) {
    .countdown-value {
        font-size: 3.5rem;
    }
    
    .countdown-item {
        min-width: 80px;
    }
}

/* ========================================
   ANIMATED PARTICLES BACKGROUND
   ======================================== */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--color-aka);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 15s infinite;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; animation-delay: 2s; }
.particle:nth-child(3) { left: 30%; animation-delay: 4s; }
.particle:nth-child(4) { left: 40%; animation-delay: 1s; }
.particle:nth-child(5) { left: 50%; animation-delay: 3s; }
.particle:nth-child(6) { left: 60%; animation-delay: 5s; }
.particle:nth-child(7) { left: 70%; animation-delay: 2.5s; }
.particle:nth-child(8) { left: 80%; animation-delay: 4.5s; }
.particle:nth-child(9) { left: 90%; animation-delay: 1.5s; }
.particle:nth-child(10) { left: 15%; animation-delay: 3.5s; }
.particle:nth-child(11) { left: 25%; animation-delay: 0.5s; }
.particle:nth-child(12) { left: 35%; animation-delay: 2.2s; }
.particle:nth-child(13) { left: 45%; animation-delay: 4.2s; }
.particle:nth-child(14) { left: 55%; animation-delay: 1.2s; }
.particle:nth-child(15) { left: 65%; animation-delay: 3.2s; }
.particle:nth-child(16) { left: 75%; animation-delay: 5.2s; }
.particle:nth-child(17) { left: 85%; animation-delay: 2.7s; }
.particle:nth-child(18) { left: 95%; animation-delay: 4.7s; }
.particle:nth-child(19) { left: 5%; animation-delay: 1.7s; }
.particle:nth-child(20) { left: 50%; animation-delay: 3.7s; }

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100px) scale(1);
        opacity: 0;
    }
}

/* ========================================
   CHAT RULES PAGE
   ======================================== */
.rules-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .rules-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .rules-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.rule-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-shiro);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.rule-card:hover {
    border-color: var(--color-aka);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.rule-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--color-aka), #ff4d6d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.rule-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--color-text);
}

.rule-text {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* ========================================
   CLIPS GALLERY
   ======================================== */
.clips-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .clips-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .clips-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.clip-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-shiro);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.clip-card:hover {
    border-color: var(--color-aka);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.clip-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.clip-thumbnail {
    position: relative;
    padding-bottom: 56.25%;
    background: var(--color-sumi);
    overflow: hidden;
}

.clip-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.clip-card:hover .clip-thumbnail img {
    transform: scale(1.05);
}

.clip-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 60px;
    height: 60px;
    background: rgba(145, 70, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.clip-play svg {
    width: 24px;
    height: 24px;
    color: white;
    margin-left: 3px;
}

.clip-card:hover .clip-play {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.clip-views {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 4px;
}

.clip-info {
    padding: 1rem 1.25rem 1.25rem;
}

.clip-title {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.clip-card:hover .clip-title {
    color: var(--color-twitch);
}

.clip-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.clip-creator::after {
    content: '•';
    margin-left: 0.5rem;
}

/* ========================================
   PRELOADER
   ======================================== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-sumi);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-content {
    text-align: center;
}

.preloader-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: preloaderPulse 2s ease-in-out infinite;
}

.preloader-logo img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.preloader-logo span {
    width: 80px;
    height: 80px;
    border: 3px solid var(--color-aka);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-accent);
    font-size: 2rem;
    color: var(--color-aka);
}

@keyframes preloaderPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.preloader-spinner {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
}

.spinner-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid transparent;
    border-radius: 50%;
}

.spinner-ring:nth-child(1) {
    border-top-color: var(--color-aka);
    animation: spinnerRotate 1.5s linear infinite;
}

.spinner-ring:nth-child(2) {
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
    border-right-color: var(--color-aka);
    animation: spinnerRotate 1.2s linear infinite reverse;
}

.spinner-ring:nth-child(3) {
    width: 60%;
    height: 60%;
    top: 20%;
    left: 20%;
    border-bottom-color: var(--color-aka);
    animation: spinnerRotate 0.9s linear infinite;
}

@keyframes spinnerRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.preloader-text {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.5);
    animation: preloaderTextBlink 1s ease-in-out infinite;
}

@keyframes preloaderTextBlink {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}
