/* ===== Variables & Reset ===== */
:root {
    --bg-dark: #0a0a12;
    --bg-card: rgba(18, 18, 30, 0.85);
    --accent: #00d4ff;
    --accent-glow: rgba(0, 212, 255, 0.35);
    --accent-dim: rgba(0, 212, 255, 0.1);
    --purple: #9146ff;
    --discord: #5865f2;
    --discord-glow: rgba(88, 101, 242, 0.4);
    --live: #ff2d55;
    --live-glow: rgba(255, 45, 85, 0.55);
    --text: #e8e8f0;
    --text-muted: #8888a0;
    --border: rgba(0, 212, 255, 0.15);
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Rajdhani', sans-serif;
    --radius: 12px;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--bg-dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

.background-overlay {
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(145, 70, 255, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(0, 212, 255, 0.06) 0%, transparent 50%),
        linear-gradient(180deg, #0a0a12 0%, #12121f 100%);
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.accent {
    color: var(--accent);
}

.skip-link {
    position: absolute;
    left: -999px;
    top: 8px;
    z-index: 3000;
    background: var(--accent);
    color: #000;
    padding: 8px 14px;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    text-decoration: none;
    border-radius: 6px;
}

.skip-link:focus {
    left: 12px;
}

/* ===== Navigation ===== */
nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 40px;
    background: rgba(10, 10, 18, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5), 0 1px 15px rgba(0, 212, 255, 0.1);
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: transform 0.2s;
}

.logo-link:hover {
    transform: scale(1.02);
}

.site-logo {
    height: 42px;
    width: 42px;
    object-fit: contain;
    border-radius: 10px;
    filter: drop-shadow(0 0 8px rgba(75, 44, 128, 0.65));
}

.logo {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.2rem;
    letter-spacing: 2.5px;
    color: var(--text);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.nav-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 45, 85, 0.12);
    border: 1px solid var(--live);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 0 16px var(--live-glow);
}

.nav-live-badge[hidden] {
    display: none !important;
}

.live-dot,
.offline-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.live-dot {
    background: var(--live);
    box-shadow: 0 0 8px var(--live);
    animation: livePulse 1.4s infinite;
}

.offline-dot {
    background: var(--text-muted);
}

@keyframes livePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.45; transform: scale(0.82); }
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 36px;
    margin-left: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 12px;
}

.nav-links a {
    position: relative;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--text-muted);
    padding: 10px 18px;
    border-radius: 6px;
    border: 1px solid transparent;
    transition: all 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent);
    background: rgba(0, 212, 255, 0.08);
    border-color: rgba(0, 212, 255, 0.25);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.15);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    font-size: 1.15rem;
    color: var(--text);
    background: var(--bg-card);
    border: 1px solid var(--border);
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-icon:hover {
    transform: translateY(-3px);
}

.social-icon.twitch:hover {
    box-shadow: 0 4px 20px rgba(145, 70, 255, 0.45);
    color: var(--purple);
    border-color: var(--purple);
}

.social-icon.youtube:hover {
    box-shadow: 0 4px 20px rgba(255, 0, 0, 0.45);
    color: #ff3333;
    border-color: #ff3333;
}

.social-icon.discord:hover {
    box-shadow: 0 4px 20px var(--discord-glow);
    color: var(--discord);
    border-color: var(--discord);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}

.menu-toggle .bar {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--accent);
    transition: transform 0.3s, opacity 0.3s;
}

.menu-toggle.is-active .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-active .bar:nth-child(2) { opacity: 0; }
.menu-toggle.is-active .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Hero ===== */
.hero-section {
    padding: 72px 0 56px;
}

.hero-status-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 16px;
    margin-bottom: 18px;
}

.status-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--bg-card);
    font-family: var(--font-heading);
    font-size: 0.68rem;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.status-chip.live {
    border-color: var(--live);
    color: #fff;
    background: rgba(255, 45, 85, 0.12);
}

.status-chip[hidden] {
    display: none !important;
}

.hero-next {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.hero-highlights {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin: 0 0 28px;
    padding: 0;
    color: var(--text-muted);
    font-size: 0.98rem;
}

.hero-highlights i {
    color: var(--accent);
    margin-right: 6px;
}

.btn-discord-outline {
    background: transparent;
    color: var(--discord);
    border: 1px solid var(--discord);
}

.btn-discord-outline:hover {
    background: rgba(88, 101, 242, 0.12);
    box-shadow: 0 6px 24px var(--discord-glow);
}

.hero-frame {
    position: relative;
    z-index: 1;
}

.hero-live-ring {
    display: none;
}

body.is-live .hero-live-ring {
    display: block;
    position: absolute;
    inset: -6px;
    border-radius: 16px;
    border: 2px solid var(--live);
    box-shadow: 0 0 24px var(--live-glow);
    pointer-events: none;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.subtitle {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    letter-spacing: 4px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.glitch-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    letter-spacing: 3px;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 0 30px var(--accent-glow);
}

.description {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-twitch {
    background: var(--purple);
    color: #fff;
}

.btn-twitch:hover {
    box-shadow: 0 6px 24px rgba(145, 70, 255, 0.45);
}

.btn-setup {
    background: transparent;
    color: var(--accent);
    border: 1px solid var(--accent);
}

.btn-setup:hover {
    background: rgba(0, 212, 255, 0.1);
    box-shadow: 0 6px 24px var(--accent-glow);
}

.btn-sm {
    padding: 6px 12px;
    font-size: 0.75rem;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.img-glow {
    position: absolute;
    inset: 10%;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    filter: blur(40px);
    z-index: 0;
}

.hero-image img {
    position: relative;
    z-index: 1;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    border: 2px solid var(--border);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    display: block;
}

/* ===== Sections ===== */
section {
    padding: 80px 0;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    letter-spacing: 3px;
    text-align: center;
    margin-bottom: 12px;
}

.section-desc {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 48px;
}

/* ===== Gallery Styles ===== */
.gallery-section {
    padding: 60px 0;
}

.gallery-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 24px;
}

.gallery-user-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.user-profile-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 6px 14px;
    border-radius: 20px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
}

.user-profile-badge img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid var(--accent);
}

.latest-images-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.latest-images-grid .gallery-card {
    height: 220px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

.gallery-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    height: 250px;
    cursor: pointer;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.gallery-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 8px 25px var(--accent-glow);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-card:hover img {
    transform: scale(1.08);
}

.gallery-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(10, 10, 18, 0.95) 0%, rgba(10, 10, 18, 0.2) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-card:hover .gallery-card-overlay {
    opacity: 1;
}

.gallery-card-title {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: #fff;
}

.gallery-card-stats {
    display: flex;
    gap: 14px;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 6px;
}

.album-filter-bar {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.album-chip {
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-muted);
    padding: 8px 18px;
    border-radius: 20px;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.2s;
}

.album-chip:hover, .album-chip.active {
    background: rgba(0, 212, 255, 0.15);
    border-color: var(--accent);
    color: var(--accent);
    box-shadow: 0 0 12px var(--accent-glow);
}

/* Modal Windows (По-големи размери) */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(5, 5, 10, 0.9);
    backdrop-filter: blur(12px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: 14px;
    max-width: 1200px; /* По-голям прозорец */
    width: 95%;
    height: 92vh;     /* По-висок прозорец */
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 50px rgba(0, 212, 255, 0.25);
}

.modal-content.modal-sm {
    max-width: 450px;
    height: auto;
    padding: 24px;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 22px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    color: var(--text);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.modal-close:hover {
    color: var(--accent);
    border-color: var(--accent);
}

.modal-body {
    display: grid;
    grid-template-columns: 2fr 1fr; /* По-голямо пространство за снимката */
    height: 100%;
}

.modal-image-wrap {
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    overflow: hidden;
    padding: 10px;
}

.modal-image-wrap img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 6px;
}

.modal-sidebar {
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    background: var(--bg-card);
    border-left: 1px solid var(--border);
    height: 100%;
    overflow-y: auto;
}

.btn-like {
    background: rgba(145, 70, 255, 0.15);
    border: 1px solid var(--purple);
    color: #fff;
    padding: 12px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-family: var(--font-heading);
    transition: all 0.2s;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-like:hover, .btn-like.liked {
    background: var(--purple);
    box-shadow: 0 0 15px rgba(145, 70, 255, 0.5);
}

.comments-list {
    flex-grow: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 200px;
    padding-right: 4px;
}

.comment-item {
    background: rgba(0, 0, 0, 0.35);
    padding: 12px;
    border-radius: 8px;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.comment-author {
    font-family: var(--font-heading);
    color: var(--accent);
    font-weight: 700;
}

.cyber-form .form-group {
    margin-bottom: 16px;
}

.cyber-form label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    margin-bottom: 6px;
    color: var(--text-muted);
}

.cyber-form input, #comment-input {
    width: 100%;
    padding: 12px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border);
    color: #fff;
    border-radius: 6px;
    font-family: var(--font-body);
}

#comment-input {
    resize: vertical;
    min-height: 80px;
}

.section-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.section-heading .section-title {
    margin-bottom: 0;
}

.section-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(255, 45, 85, 0.14);
    border: 1px solid var(--live);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    letter-spacing: 2px;
}

.section-live-badge[hidden] {
    display: none !important;
}

.stream-stage {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    background: rgba(8, 8, 16, 0.7);
    min-height: 280px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.stream-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 280px;
    color: var(--text-muted);
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

.stream-loading[hidden] {
    display: none !important;
}

#twitch-embed {
    border-radius: 0;
    overflow: hidden;
    border: none;
    box-shadow: none;
}

#twitch-embed[hidden] {
    display: none !important;
}

.offline-panel[hidden] {
    display: none !important;
}

.offline-visual {
    position: relative;
    min-height: 420px;
}

.offline-visual img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    filter: grayscale(0.35) brightness(0.38);
}

.offline-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 32px 24px;
    background: linear-gradient(180deg, rgba(10, 10, 18, 0.2), rgba(10, 10, 18, 0.82));
}

.offline-overlay h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    letter-spacing: 1px;
    margin: 16px 0 10px;
}

.offline-overlay p {
    color: var(--text-muted);
    margin-bottom: 24px;
    max-width: 520px;
    line-height: 1.5;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.game-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 22px;
    transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.game-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
    box-shadow: 0 10px 30px var(--accent-glow);
}

.game-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 16px;
    color: var(--accent);
    font-size: 1.4rem;
    background: var(--accent-dim);
    border: 1px solid var(--border);
}

.game-card h3 {
    font-family: var(--font-heading);
    font-size: 0.92rem;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.game-card p {
    color: var(--text-muted);
    font-size: 0.98rem;
}

/* ===== Schedule ===== */
.schedule-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 12px;
}

.day-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s, border-color 0.2s;
}

.day-card.active-day:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
}

.day-card.highlight-day {
    border-color: rgba(0, 212, 255, 0.45);
}

.day-card.is-today {
    border-color: var(--accent);
    box-shadow: 0 0 24px var(--accent-glow);
    transform: translateY(-4px);
}

.day-card.is-today .day-header {
    background: rgba(0, 212, 255, 0.18);
}

.day-card.is-off {
    opacity: 0.55;
}

.today-tag {
    display: inline-block;
    margin-left: 6px;
    font-size: 0.58rem;
    letter-spacing: 1px;
    color: #000;
    background: var(--accent);
    border-radius: 4px;
    padding: 1px 5px;
    vertical-align: middle;
}

.schedule-next {
    text-align: center;
    color: var(--text-muted);
    margin: -24px 0 32px;
    font-size: 1.05rem;
}

.schedule-next strong,
.countdown-value {
    color: var(--accent);
}

.day-header {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-align: center;
    padding: 10px;
    background: rgba(0, 212, 255, 0.08);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
}

.day-content {
    padding: 16px 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.day-content .time {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
}

.day-content .game {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.day-content .off {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    letter-spacing: 1px;
    color: var(--text-muted);
}

/* ===== Specs ===== */
.specs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.spec-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 32px 20px;
    text-align: center;
    transition: transform 0.2s, border-color 0.2s;
}

.spec-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
}

.spec-card.highlight {
    border-color: var(--accent);
    background: rgba(0, 212, 255, 0.08);
}

.spec-card .icon {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 16px;
}

.spec-card.highlight .icon {
    color: var(--accent);
}

.spec-card h3 {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.spec-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ===== Support ===== */
.support-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 700px;
    margin: 0 auto;
}

.support-card {
    display: block;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 36px 24px;
    text-align: center;
    text-decoration: none;
    color: var(--text);
    transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.support-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
    box-shadow: 0 8px 30px var(--accent-glow);
}

.support-card .icon {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 16px;
}

.support-card h3 {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.support-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ===== Discord Section ===== */
.discord-section {
    padding: 80px 0;
}

.discord-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 32px;
    align-items: center;
    max-width: 850px;
    margin: 0 auto;
    padding: 36px 44px;
    background: linear-gradient(135deg, rgba(18, 18, 32, 0.95) 0%, rgba(25, 25, 45, 0.9) 100%);
    border: 1px solid rgba(88, 101, 242, 0.35);
    border-radius: 16px;
    box-shadow: 0 12px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(88, 101, 242, 0.15);
    backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.discord-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--discord), transparent);
}

.discord-card:hover {
    border-color: rgba(88, 101, 242, 0.6);
    box-shadow: 0 16px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(88, 101, 242, 0.25);
}

.discord-icon-wrap {
    width: 76px;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, rgba(88, 101, 242, 0.25) 0%, rgba(88, 101, 242, 0.08) 100%);
    border: 1px solid rgba(88, 101, 242, 0.4);
    border-radius: 20px;
    font-size: 2.4rem;
    color: var(--discord);
    box-shadow: 0 0 20px rgba(88, 101, 242, 0.2);
    animation: pulse-glow 3s infinite alternate;
}

@keyframes pulse-glow {
    0% { box-shadow: 0 0 15px rgba(88, 101, 242, 0.2); }
    100% { box-shadow: 0 0 30px rgba(88, 101, 242, 0.5); }
}

.discord-info h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    letter-spacing: 1.5px;
    margin-bottom: 6px;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.discord-info p {
    color: var(--text-muted);
    font-size: 0.98rem;
    margin-bottom: 18px;
}

.discord-stats {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.discord-stat {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    background: rgba(0, 0, 0, 0.3);
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.discord-stat .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #43b581;
    box-shadow: 0 0 10px rgba(67, 181, 129, 0.8);
    animation: pulse 2s infinite;
}

.discord-stat .dot.offline {
    background: var(--text-muted);
    box-shadow: none;
    animation: none;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.85); }
}

.discord-stat strong {
    color: #fff;
    font-weight: 700;
}

.btn-discord {
    background: linear-gradient(135deg, #5865f2 0%, #4752c4 100%);
    color: #fff;
    white-space: nowrap;
    padding: 14px 30px;
    font-size: 0.85rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 20px rgba(88, 101, 242, 0.35);
    transition: all 0.25s ease;
}

.btn-discord:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #6975f3 0%, #5865f2 100%);
    box-shadow: 0 8px 30px rgba(88, 101, 242, 0.6);
}

.discord-members-preview {
    display: flex;
    gap: 14px;
    margin-top: 36px;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    flex-wrap: wrap;
    justify-content: center;
}

.discord-member {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: var(--bg-card);
    border: 1px solid rgba(88, 101, 242, 0.2);
    border-radius: 25px;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.discord-member:hover {
    border-color: var(--discord);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.2);
}

.discord-member img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.discord-member .status {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #43b581;
    box-shadow: 0 0 6px rgba(67, 181, 129, 0.6);
}

/* ===== IP Page ===== */
.page-hero {
    padding: 60px 0 40px;
    text-align: center;
}

.page-hero .glitch-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.ip-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.ip-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 28px;
    transition: border-color 0.2s;
}

.ip-card:hover {
    border-color: var(--accent);
}

.ip-card.highlight-ip {
    grid-column: 1 / -1;
    text-align: center;
    border-color: var(--accent);
    background: rgba(0, 212, 255, 0.05);
}

.ip-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.ip-card-header .icon {
    font-size: 1.4rem;
    color: var(--accent);
}

.ip-card-header h3 {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.ip-value {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--accent);
    word-break: break-all;
}

.ip-card.highlight-ip .ip-value {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
}

.ip-detail {
    font-size: 1.05rem;
    color: var(--text);
}

.ip-detail.loading {
    color: var(--text-muted);
    font-style: italic;
}

.ip-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ip-detail-row:last-child {
    border-bottom: none;
}

.ip-detail-row .label {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.ip-detail-row .value {
    font-weight: 600;
    text-align: right;
    max-width: 60%;
    word-break: break-word;
}

.ip-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.btn-copy {
    background: transparent;
    color: var(--accent);
    border: 1px solid var(--accent);
}

.btn-copy:hover {
    background: rgba(0, 212, 255, 0.1);
}

.btn-copy.copied {
    background: rgba(67, 181, 129, 0.2);
    border-color: #43b581;
    color: #43b581;
}

.ip-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== Footer ===== */
.site-footer {
    margin-top: 24px;
    border-top: 1px solid var(--border);
    background: rgba(8, 8, 14, 0.9);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 36px;
    padding: 56px 24px 36px;
}

.footer-brand p {
    color: var(--text-muted);
    margin-top: 14px;
    max-width: 320px;
}

.footer-logo {
    margin-bottom: 4px;
}

.footer-col h3 {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
    color: var(--accent);
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-col a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--accent);
}

.footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.footer-bottom {
    text-align: center;
    padding: 18px 24px 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.9rem;
}

.site-footer-compact {
    padding: 0;
}

.footer-compact-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 14px 24px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-compact-row a {
    color: var(--accent);
    text-decoration: none;
}

.ranked-section {
    background: rgba(0, 0, 0, 0.3);
}

.ranked-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.ranked-grid .spec-card {
    flex: 1 1 250px;
    max-width: 350px;
}

.ranked-emblem img {
    width: 96px;
    height: 96px;
    object-fit: contain;
    filter: drop-shadow(0 0 12px rgba(0, 0, 0, 0.6));
}

.rank-tier {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent);
    margin-top: 5px;
}

.rank-details {
    font-size: 0.9rem;
    color: #ccc;
}

.rank-winrate {
    font-size: 0.85rem;
    color: #888;
}

.empty-state {
    color: var(--text-muted);
    text-align: center;
    padding: 20px;
    grid-column: 1 / -1;
}

/* Админ бутон за изтриване */
.btn-delete-img {
    background: rgba(255, 51, 51, 0.2);
    border: 1px solid #ff3333;
    color: #ff3333;
    padding: 10px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    width: 100%;
    margin-top: 10px;
    transition: all 0.2s;
}

.btn-delete-img:hover {
    background: #ff3333;
    color: #fff;
    box-shadow: 0 0 15px rgba(255, 51, 51, 0.5);
}

/* Бутон за споделяне / копиране на линк */
.btn-share-img {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 10px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    width: 100%;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s;
}

.btn-share-img:hover {
    background: var(--accent);
    color: #000;
    box-shadow: 0 0 15px var(--accent-glow);
}

.btn-share-img.copied {
    background: rgba(67, 181, 129, 0.2);
    border-color: #43b581;
    color: #43b581;
}

/* ===== MATCH HISTORY STYLES ===== */
.match-history-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.match-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    max-height: none;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Свито състояние - побира точно първите 5 мача (5 карти по 60px + 4 отстъпа по 10px = 340px) */
.match-list.collapsed {
    max-height: 345px; 
}

/* Без замъгляване (премахнато по желание) */
.match-list.collapsed::after {
    display: none;
}

.match-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(25, 25, 35, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0 20px 0 0;
    border-radius: 8px;
    overflow: hidden;
    min-height: 60px;
    box-sizing: border-box;
    transition: transform 0.2s, border-color 0.2s;
}

.match-card:hover {
    transform: translateY(-2px);
    border-color: var(--accent);
}

.match-card.win {
    border-left: 4px solid #2ecc71;
}

.match-card.loss {
    border-left: 4px solid #e74c3c;
}

.match-info {
    display: flex;
    align-items: center;
    height: 100%;
}

.match-champ-img {
    width: 60px;
    height: 60px;
    border-radius: 0;
    object-fit: cover;
    border: none;
    margin-right: 15px;
    flex-shrink: 0;
}

.match-role-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    vertical-align: middle;
    margin-right: 6px;
    filter: drop-shadow(0 0 4px rgba(0,0,0,0.5));
    flex-shrink: 0;
}

.match-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.match-details h4 {
    font-size: 1rem;
    margin: 0;
    color: #fff;
    font-family: 'Orbitron', sans-serif;
    display: flex;
    align-items: center;
}

.match-details p {
    font-size: 0.85rem;
    margin: 2px 0 0 0;
    color: #aaa;
}

.match-stats {
    text-align: right;
    padding-right: 5px;
}

.match-stats .kda {
    font-weight: bold;
    font-size: 1rem;
    color: #fff;
}

.match-stats .result {
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 600;
}

.match-card.win .result { 
    color: #2ecc71; 
}

.match-card.loss .result { 
    color: #e74c3c; 
}

.expand-matches-btn {
    display: block;
    width: 100%;
    margin-top: 20px;
    padding: 12px;
    background: rgba(0, 212, 255, 0.12);
    border: 1px solid var(--accent);
    color: #fff;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    text-align: center;
}

.expand-matches-btn:hover {
    background: var(--accent);
    color: #000;
    transform: translateY(-1px);
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .hero-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-status-row,
    .hero-highlights,
    .cta-buttons {
        justify-content: center;
    }

    .hero-image {
        order: -1;
    }

    .hero-image img {
        max-width: 320px;
    }

    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .latest-images-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .schedule-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .discord-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 32px 24px;
    }

    .discord-icon-wrap {
        margin: 0 auto;
    }

    .discord-stats {
        justify-content: center;
    }

    .discord-card .btn-discord {
        justify-content: center;
        width: 100%;
    }

    .ip-grid {
        grid-template-columns: 1fr;
    }

    .modal-body {
        grid-template-columns: 1fr;
        overflow-y: auto;
    }

    .modal-content {
        height: 95vh;
    }

    .modal-image-wrap {
        height: 50vh;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 14px 20px;
    }

    .menu-toggle {
        display: flex;
        margin-left: auto;
    }

    .nav-menu {
        position: fixed;
        top: 65px;
        left: 0;
        right: 0;
        margin-left: 0;
        flex-direction: column;
        gap: 24px;
        padding: 24px;
        background: rgba(10, 10, 18, 0.98);
        border-bottom: 1px solid var(--border);
        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.3s, opacity 0.3s;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
    }

    .nav-links a {
        display: block;
        text-align: center;
        padding: 12px;
    }

    .social-links {
        justify-content: center;
    }

    .schedule-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .support-grid {
        grid-template-columns: 1fr;
    }

    .games-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-compact-row {
        flex-direction: column;
        text-align: center;
    }

    .nav-live-badge {
        font-size: 0.6rem;
        padding: 5px 8px;
    }
}

@media (max-width: 480px) {
    .schedule-grid {
        grid-template-columns: 1fr;
    }

    .specs-grid {
        grid-template-columns: 1fr;
    }

    .latest-images-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .games-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== Quotes wall ===== */
.quotes-wall {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 28px;
}

.quote-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-left: 3px solid var(--accent);
    border-radius: 10px;
    padding: 20px 18px;
    margin: 0;
}

.quote-card p {
    font-size: 1.05rem;
    line-height: 1.5;
    margin-bottom: 12px;
}

.quote-card footer {
    color: var(--accent);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    letter-spacing: 1px;
}

.quote-form {
    display: grid;
    gap: 10px;
    max-width: 560px;
    margin: 0 auto;
}

.quote-form input,
.quote-form textarea {
    width: 100%;
    padding: 12px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border);
    color: #fff;
    border-radius: 6px;
    font-family: var(--font-body);
}

.quote-form textarea {
    min-height: 80px;
    resize: vertical;
}

.community-hint {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.community-hint a {
    color: var(--accent);
}

.pending-box {
    background: rgba(0, 212, 255, 0.05);
    border: 1px dashed var(--border);
    border-radius: 12px;
    padding: 20px;
    margin: 24px 0;
}

.pending-box h3 {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 14px;
    color: var(--accent);
}

.pending-row,
.pending-card {
    display: flex;
    gap: 14px;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.pending-card img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 8px;
}

.pending-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

/* ===== Leaderboard ===== */
.lb-toolbar {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.leaderboard-list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.lb-row {
    display: grid;
    grid-template-columns: 40px 40px 1fr auto auto;
    gap: 12px;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 10px 16px;
}

.lb-row:nth-child(1) { border-color: var(--accent); box-shadow: 0 0 16px var(--accent-glow); }
.lb-rank {
    font-family: var(--font-heading);
    color: var(--accent);
    font-weight: 700;
}
.lb-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}
.lb-name { font-weight: 700; }
.lb-points { color: var(--accent); font-family: var(--font-heading); font-size: 0.85rem; }
.lb-presence { color: var(--text-muted); font-size: 0.85rem; }

/* ===== LoL extras ===== */
.streak-banner {
    max-width: 720px;
    margin: 0 auto 32px;
    padding: 16px 22px;
    text-align: center;
    background: linear-gradient(90deg, rgba(255, 45, 85, 0.16), rgba(0, 212, 255, 0.12));
    border: 1px solid var(--live);
    border-radius: 12px;
    font-size: 1.15rem;
    letter-spacing: 0.5px;
}

.streak-banner i { color: var(--live); margin-right: 8px; }

.lol-insight-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.insight-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 22px;
}

.insight-card h3,
.mastery-block h3 {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.fav-role {
    display: flex;
    align-items: center;
    gap: 14px;
}

.fav-role img {
    width: 56px;
    height: 56px;
}

.fav-role strong {
    display: block;
    font-size: 1.3rem;
}

.fav-role p { color: var(--text-muted); margin: 0; }

#lp-chart {
    width: 100%;
    height: 220px;
    display: block;
}

.mastery-block { margin-bottom: 48px; }

.mastery-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.mastery-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px 10px;
    text-align: center;
}

.mastery-card img {
    width: 72px;
    height: 72px;
    border-radius: 10px;
    margin: 8px 0;
}

.mastery-place {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    color: var(--accent);
}

.mastery-card h4 { font-size: 0.9rem; margin-bottom: 4px; }
.mastery-card p { color: var(--text-muted); font-size: 0.85rem; margin: 0; }
.mastery-points { color: var(--accent) !important; }

/* ===== Lightbox ===== */
.modal-image-wrap {
    position: relative;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    cursor: pointer;
    z-index: 5;
}

.lightbox-nav:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.lightbox-nav.prev { left: 12px; }
.lightbox-nav.next { right: 12px; }

.lightbox-counter {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 4px 12px;
    font-family: var(--font-heading);
    font-size: 0.75rem;
}

/* ===== Easter egg ===== */
.egg-unlocked .site-logo {
    animation: eggSpin 1.2s ease-in-out infinite;
    filter: drop-shadow(0 0 16px #d9cba3) drop-shadow(0 0 8px #4b2c80);
}

.egg-unlocked .background-overlay {
    animation: eggFlash 0.8s ease-in-out 3;
}

@keyframes eggSpin {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(-8deg) scale(1.12); }
}

@keyframes eggFlash {
    0%, 100% { filter: none; }
    50% { filter: hue-rotate(40deg) saturate(1.4); }
}

.egg-toast {
    position: fixed;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: #3d246b;
    color: #d9cba3;
    border: 1px solid #d9cba3;
    border-radius: 10px;
    padding: 12px 22px;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    letter-spacing: 1px;
    opacity: 0;
    pointer-events: none;
    z-index: 4000;
    transition: opacity 0.3s, transform 0.3s;
}

.egg-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

@media (max-width: 992px) {
    .quotes-wall,
    .mastery-row,
    .lol-insight-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .lb-row {
        grid-template-columns: 28px 32px 1fr;
        grid-template-rows: auto auto;
    }
    .lb-points, .lb-presence { grid-column: 3; }
    .mastery-row { grid-template-columns: repeat(2, 1fr); }
}
