:root {
    --primary: #E62B2B;
    --primary-glow: rgba(230, 43, 43, 0.3);
    --accent: #FF4444;
    --gold: #D4A847;
    --bg-dark: #0a0a0f;
    --bg-card: #12121a;
    --bg-card-hover: #1a1a28;
    --bg-section: #0e0e16;
    --text: #e8e8f0;
    --text-muted: #8888a0;
    --border: rgba(255,255,255,0.06);
    --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-dark);
    color: var(--text);
    overflow-x: hidden;
}

/* ===== NAVBAR ===== */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    padding: 0 2rem;
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 65px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--white);
}

.nav-logo img {
    height: 42px;
    width: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
    box-shadow: 0 0 12px var(--primary-glow);
}

.nav-logo span {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0.25rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--white);
    background: rgba(230, 43, 43, 0.15);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 26px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: 0.3s;
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 5rem 2rem 3rem;
    background: url('images/bannerjpg.jpg') center center / cover no-repeat;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 15, 0.75);
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, transparent, var(--bg-section));
    z-index: 0;
}

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

.hero-logo {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary);
    box-shadow: 0 0 40px var(--primary-glow), 0 0 80px rgba(230, 43, 43, 0.1);
    margin-bottom: 2rem;
    animation: pulse-glow 3s ease-in-out infinite alternate;
}

@keyframes pulse-glow {
    0% { box-shadow: 0 0 30px var(--primary-glow), 0 0 60px rgba(230, 43, 43, 0.08); }
    100% { box-shadow: 0 0 50px var(--primary-glow), 0 0 100px rgba(230, 43, 43, 0.15); }
}

.hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    line-height: 1.2;
}

.hero h1 .red { color: var(--primary); }

.hero .tagline {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--gold);
    margin-bottom: 1.2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero p {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 580px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.hero-buttons { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

.btn {
    display: inline-block;
    padding: 0.75rem 1.8rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(230, 43, 43, 0.4);
    background: var(--accent);
}

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

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* ===== SECTIONS SHARED ===== */
.section { padding: 4rem 2rem; }
.section-dark { background: var(--bg-section); }
.section-inner { max-width: 1100px; margin: 0 auto; }

.section-title {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-title h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.4rem;
}

.section-title .accent { color: var(--primary); }

.section-title p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* ===== CARD SHOWCASE ===== */
.card-showcase {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

.card-group {
    text-align: center;
}

.card-group h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.card-fan {
    display: flex;
    justify-content: center;
    position: relative;
    height: 280px;
    width: 320px;
}

.card-fan img {
    position: absolute;
    width: 180px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.5);
    transition: all 0.4s ease;
    object-fit: cover;
}

.card-fan img:nth-child(1) {
    transform: rotate(-12deg) translateX(-50px);
    z-index: 1;
}

.card-fan img:nth-child(2) {
    transform: rotate(0deg);
    z-index: 2;
}

.card-fan img:nth-child(3) {
    transform: rotate(12deg) translateX(50px);
    z-index: 1;
}

.card-fan:hover img:nth-child(1) {
    transform: rotate(-18deg) translateX(-80px) translateY(-5px);
    z-index: 1;
}

.card-fan:hover img:nth-child(2) {
    transform: rotate(0deg) translateY(-10px) scale(1.05);
    z-index: 3;
}

.card-fan:hover img:nth-child(3) {
    transform: rotate(18deg) translateX(80px) translateY(-5px);
    z-index: 1;
}

.card-fan img:hover {
    z-index: 10 !important;
    transform: rotate(0deg) scale(1.15) !important;
    box-shadow: 0 12px 40px rgba(230, 43, 43, 0.3) !important;
}

/* ===== PRODUCT SHOWCASE (Warhammer/D&D) ===== */
.product-showcase {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.product-group {
    text-align: center;
}

.product-group h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

/* Photo showcase cards */
.photo-showcase-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.photo-showcase-row.single-card {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
}

.photo-showcase-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.4s ease;
}

.photo-showcase-card img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.photo-showcase-card:hover img {
    transform: scale(1.05);
}

.photo-showcase-card:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 30px var(--primary-glow);
}

.photo-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 1rem 1rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.photo-card-title {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
    color: var(--white);
}

.photo-card-sub {
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}

/* Showcase divider */
.showcase-divider {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
    margin: 2rem auto;
}

@media (max-width: 768px) {
    .card-fan { height: 220px; width: 260px; }
    .card-fan img { width: 140px; }
    .card-showcase { gap: 1.5rem; }
    .photo-showcase-card img { height: 250px; }
    .photo-showcase-row { grid-template-columns: 1fr; gap: 1rem; }
    .photo-card-title { font-size: 0.85rem; }
}

/* ===== BUY/SELL ===== */
.buy-sell-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.bs-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.bs-card:hover {
    border-color: rgba(230, 43, 43, 0.3);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.bs-card .card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.bs-card .icon { font-size: 2rem; }

.bs-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
}

.bs-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.bs-card ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.bs-card ul li {
    padding: 0.3rem 0.75rem;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 6px;
    background: rgba(230, 43, 43, 0.1);
    color: var(--accent);
    border: 1px solid rgba(230, 43, 43, 0.2);
}

/* ===== EVENTS ===== */
.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}

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

.event-card:hover {
    border-color: rgba(230, 43, 43, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.event-header {
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid var(--border);
}

.event-header .icon { font-size: 1.8rem; }

.event-header h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
}

.event-body {
    padding: 1rem 1.25rem;
}

.event-body p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.event-tag {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    border-radius: 5px;
    font-size: 0.75rem;
    font-weight: 700;
    margin: 0.15rem;
}

.tag-weekly { background: rgba(230, 43, 43, 0.12); color: var(--accent); }
.tag-monthly { background: rgba(212, 168, 71, 0.12); color: var(--gold); }
.tag-special { background: rgba(78, 203, 113, 0.12); color: #4ECB71; }

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-card);
    border-radius: 10px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: rgba(230, 43, 43, 0.2);
    background: var(--bg-card-hover);
}

.contact-item .icon { font-size: 1.5rem; min-width: 35px; text-align: center; }

.contact-item h4 {
    font-family: 'Orbitron', sans-serif;
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 0.15rem;
    letter-spacing: 0.5px;
}

.contact-item p, .contact-item a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
}

.contact-item a:hover { color: var(--primary); }

.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--bg-card);
    color: var(--text-muted);
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

.social-links a:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px var(--primary-glow);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-form h3 {
    font-family: 'Orbitron', sans-serif;
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: var(--bg-card);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    transition: border-color 0.3s ease;
}

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea { height: 100px; resize: vertical; }

.contact-form .btn-primary { align-self: flex-start; }

/* ===== MAP ===== */
.map-container {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 1rem;
    border: 1px solid var(--border);
}

.map-container iframe {
    width: 100%;
    height: 200px;
    border: none;
    filter: grayscale(0.8) invert(0.92) contrast(0.9);
}

/* ===== FOOTER ===== */
footer {
    background: var(--bg-dark);
    text-align: center;
    padding: 1.5rem 2rem;
    color: var(--text-muted);
    font-size: 0.85rem;
    border-top: 1px solid var(--border);
}

footer a {
    color: var(--primary);
    text-decoration: none;
}

footer a:hover { color: var(--accent); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .events-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .hamburger { display: flex; }

    .nav-links {
        display: none;
        position: absolute;
        top: 65px;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 15, 0.98);
        flex-direction: column;
        padding: 1rem;
        border-bottom: 1px solid var(--border);
    }

    .nav-links.active { display: flex; }
    .nav-links a { padding: 0.8rem 1rem; text-align: center; }
    .hero h1 { font-size: 1.8rem; }
    .hero .tagline { font-size: 0.9rem; }
    .section-title h2 { font-size: 1.5rem; }
    .contact-grid { grid-template-columns: 1fr; }
    .buy-sell-grid { grid-template-columns: 1fr; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .hero-logo { width: 220px; height: 220px; }
}

/* ===== GALLERY ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    border-color: rgba(230,43,43,0.4);
    transform: scale(1.03);
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}

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

.gallery-item .caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.6rem 0.8rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    font-size: 0.8rem;
    color: var(--text);
    font-weight: 600;
}

.gallery-empty {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--text-muted);
    border: 2px dashed var(--border);
    border-radius: 12px;
}

.gallery-empty .icon { font-size: 3rem; margin-bottom: 0.75rem; }

/* ===== LIGHTBOX ===== */
.lightbox {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.92);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 2rem;
}

.lightbox.active { display: flex; }

.lightbox img {
    max-width: 90vw;
    max-height: 80vh;
    border-radius: 10px;
    box-shadow: 0 0 50px rgba(0,0,0,0.5);
}

.lightbox .lb-caption {
    color: var(--text);
    margin-top: 1rem;
    font-size: 0.95rem;
    font-weight: 600;
}

.lightbox .lb-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s;
}

.lightbox .lb-close:hover { background: rgba(255,255,255,0.1); }

.lightbox .lb-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.lightbox .lb-nav:hover { background: var(--primary); border-color: var(--primary); }
.lb-prev { left: 1.5rem; }
.lb-next { right: 1.5rem; }

/* ===== ADMIN PANEL ===== */
.admin-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.85);
    z-index: 10000;
    overflow-y: auto;
    padding: 2rem;
}

.admin-overlay.active { display: block; }

.admin-panel {
    max-width: 700px;
    margin: 2rem auto;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
}

.admin-panel h2 {
    font-family: 'Orbitron', sans-serif;
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.admin-panel h2 .close-admin {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
}

.admin-panel h2 .close-admin:hover { color: var(--white); }

.drop-zone {
    border: 2px dashed rgba(230,43,43,0.3);
    border-radius: 12px;
    padding: 2.5rem 1rem;
    text-align: center;
    color: var(--text-muted);
    transition: all 0.3s;
    cursor: pointer;
    margin-bottom: 1.5rem;
}

.drop-zone:hover, .drop-zone.dragover {
    border-color: var(--primary);
    background: rgba(230,43,43,0.05);
    color: var(--white);
}

.drop-zone .icon { font-size: 2.5rem; margin-bottom: 0.5rem; }
.drop-zone p { font-size: 0.9rem; }
.drop-zone .small { font-size: 0.75rem; margin-top: 0.3rem; opacity: 0.6; }

.admin-caption-input {
    width: 100%;
    padding: 0.7rem 1rem;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: var(--bg-dark);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.admin-caption-input:focus { outline: none; border-color: var(--primary); }

.admin-photos-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 0.75rem;
    margin-top: 1rem;
}

.admin-photo-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1;
    border: 1px solid var(--border);
}

.admin-photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.admin-photo-item .delete-photo {
    position: absolute;
    top: 4px;
    right: 4px;
    background: rgba(230,43,43,0.9);
    color: white;
    border: none;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    cursor: pointer;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.admin-photo-item .photo-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.3rem 0.5rem;
    background: rgba(0,0,0,0.7);
    font-size: 0.7rem;
    color: var(--text);
}

.admin-btn {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    border: none;
    margin-right: 0.5rem;
    transition: all 0.2s;
}

.admin-btn-red { background: var(--primary); color: var(--white); }
.admin-btn-red:hover { background: var(--accent); }
.admin-btn-outline { background: transparent; color: var(--text-muted); border: 1px solid var(--border); }
.admin-btn-outline:hover { border-color: var(--text); color: var(--white); }

/* Admin tabs */
.admin-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.admin-tab {
    padding: 0.7rem 1.5rem;
    background: none;
    border: none;
    color: var(--text-muted);
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
}

.admin-tab:hover { color: var(--text); }
.admin-tab.active { color: var(--primary); border-bottom-color: var(--primary); }

.admin-tab-content { display: none; }
.admin-tab-content.active { display: block; }

/* Event editor */
.event-form-group {
    margin-bottom: 0.75rem;
}

.event-form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-form-group input,
.event-form-group textarea,
.event-form-group select {
    width: 100%;
    padding: 0.6rem 0.8rem;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: var(--bg-dark);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
}

.event-form-group input:focus,
.event-form-group textarea:focus,
.event-form-group select:focus {
    outline: none;
    border-color: var(--primary);
}

.event-form-group textarea {
    resize: vertical;
    min-height: 60px;
}

.event-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.admin-event-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.admin-event-item {
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 0.85rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.admin-event-item .ae-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.admin-event-item .ae-info {
    flex: 1;
    min-width: 0;
}

.admin-event-item .ae-info h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
    color: var(--white);
    margin-bottom: 0.2rem;
}

.admin-event-item .ae-info p {
    font-size: 0.75rem;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.admin-event-item .ae-actions {
    display: flex;
    gap: 0.4rem;
    flex-shrink: 0;
}

.ae-btn {
    width: 30px;
    height: 30px;
    border-radius: 6px;
    border: 1px solid var(--border);
    background: none;
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    transition: all 0.2s;
}

.ae-btn:hover { border-color: var(--primary); color: var(--primary); }
.ae-btn-del:hover { border-color: #ff4444; color: #ff4444; }

/* Event date styling */
.event-date {
    font-size: 0.75rem;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.admin-key-hint {
    text-align: center;
    margin-top: 0.75rem;
    font-size: 0.75rem;
    color: var(--text-muted);
}

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

/* ===== FACEBOOK SECTION ===== */
.facebook-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.facebook-info {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    flex: 1;
}

.facebook-icon {
    color: #1877F2;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.facebook-info h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.facebook-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.facebook-join-btn {
    display: inline-block;
    background: #1877F2 !important;
    border-color: #1877F2 !important;
}

.facebook-join-btn:hover {
    background: #1464D8 !important;
    border-color: #1464D8 !important;
}

.facebook-qr {
    text-align: center;
    flex-shrink: 0;
}

.facebook-qr > p:first-child {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.facebook-qr-img {
    width: 160px;
    height: 160px;
    border-radius: 12px;
    background: white;
    padding: 10px;
    box-shadow: 0 0 20px rgba(24, 119, 242, 0.2);
}

.facebook-qr-hint {
    color: var(--text-muted);
    font-size: 0.75rem;
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .facebook-banner {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .facebook-info {
        flex-direction: column;
        align-items: center;
    }

    .facebook-qr-img {
        width: 140px;
        height: 140px;
    }
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== FLOATING CHARACTERS BACKGROUND ===== */
.floating-chars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.floating-char {
    position: absolute;
    opacity: 0;
    filter: drop-shadow(0 0 8px rgba(230, 43, 43, 0.3));
    animation: floatDrift linear infinite;
    will-change: transform, opacity;
}

.floating-char img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Multiple drift keyframes for variety — brighter opacity */
@keyframes floatDrift1 {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 0;
    }
    5% { opacity: 0.35; }
    25% {
        transform: translate(80px, -60px) rotate(10deg) scale(1.05);
    }
    50% {
        transform: translate(-40px, -120px) rotate(-5deg) scale(0.95);
        opacity: 0.45;
    }
    75% {
        transform: translate(60px, -40px) rotate(8deg) scale(1.02);
    }
    95% { opacity: 0.3; }
    100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 0;
    }
}

@keyframes floatDrift2 {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 0;
    }
    5% { opacity: 0.38; }
    20% {
        transform: translate(-70px, -80px) rotate(-12deg) scale(1.08);
    }
    45% {
        transform: translate(50px, 40px) rotate(6deg) scale(0.92);
        opacity: 0.48;
    }
    70% {
        transform: translate(-30px, -50px) rotate(-8deg) scale(1.04);
    }
    95% { opacity: 0.32; }
    100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 0;
    }
}

@keyframes floatDrift3 {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 0;
    }
    5% { opacity: 0.36; }
    30% {
        transform: translate(100px, 50px) rotate(15deg) scale(1.1);
    }
    55% {
        transform: translate(-60px, -90px) rotate(-10deg) scale(0.9);
        opacity: 0.44;
    }
    80% {
        transform: translate(40px, 30px) rotate(5deg) scale(1.05);
    }
    95% { opacity: 0.3; }
    100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 0;
    }
}

@keyframes floatDrift4 {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 0;
    }
    5% { opacity: 0.37; }
    35% {
        transform: translate(-90px, 70px) rotate(-18deg) scale(0.95);
    }
    60% {
        transform: translate(70px, -60px) rotate(12deg) scale(1.08);
        opacity: 0.46;
    }
    85% {
        transform: translate(-20px, 40px) rotate(-3deg) scale(1);
    }
    95% { opacity: 0.3; }
    100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 0;
    }
}

@keyframes floatDrift5 {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 0;
    }
    5% { opacity: 0.35; }
    15% {
        transform: translate(50px, 80px) rotate(8deg) scale(1.06);
    }
    40% {
        transform: translate(-80px, -30px) rotate(-14deg) scale(0.93);
        opacity: 0.47;
    }
    65% {
        transform: translate(30px, -70px) rotate(10deg) scale(1.03);
    }
    90% {
        transform: translate(-40px, 20px) rotate(-6deg) scale(0.98);
    }
    95% { opacity: 0.32; }
    100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 0;
    }
}

/* Space Marines — bright glow, no darkening */
.floating-char.space-marine {
    filter: drop-shadow(0 0 15px rgba(230, 43, 43, 0.5)) brightness(1.2);
}

/* Pokemon — bright warm glow */
.floating-char.pokemon {
    filter: drop-shadow(0 0 15px rgba(212, 168, 71, 0.4)) brightness(1.1);
}

@media (max-width: 768px) {
    .floating-char {
        max-width: 60px !important;
        max-height: 60px !important;
    }
}

/* ===== DISCORD SECTION ===== */
.discord-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.discord-info {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    flex: 1;
}

.discord-icon {
    color: #5865F2;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.discord-info h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.discord-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.discord-join-btn {
    display: inline-block;
    background: #5865F2 !important;
    border-color: #5865F2 !important;
}

.discord-join-btn:hover {
    background: #4752C4 !important;
    border-color: #4752C4 !important;
}

.discord-qr {
    text-align: center;
    flex-shrink: 0;
}

.discord-qr > p:first-child {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.discord-qr-img {
    width: 160px;
    height: 160px;
    border-radius: 12px;
    background: white;
    padding: 10px;
    box-shadow: 0 0 20px rgba(88, 101, 242, 0.2);
}

.discord-qr-hint {
    color: var(--text-muted);
    font-size: 0.75rem;
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .discord-banner {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .discord-info {
        flex-direction: column;
        align-items: center;
    }

    .discord-qr-img {
        width: 140px;
        height: 140px;
    }
}
