/* ===== COPYREND — STYLESHEET ===== */
/* Font: Ubuntu | Colors: white + #75b6f0  */

:root {
    --blue: #75b6f0;
    --blue-light: #b3d9f8;
    --blue-dark: #3a97e0;
    --blue-xlight: #eaf5ff;
    --blue-glow: rgba(117,182,240,0.25);
    --white: #ffffff;
    --off-white: #f4f9ff;
    --light-gray: #e4f1fc;
    --mid-gray: #c0d9ef;
    --text-dark: #0d1b2a;
    --text-mid: #2d5577;
    --text-light: #6090b0;
    --radius: 18px;
    --radius-sm: 12px;
    --radius-xs: 8px;
    --shadow: 0 4px 20px rgba(117,182,240,0.18);
    --shadow-lg: 0 12px 44px rgba(117,182,240,0.22);
    --transition: 0.2s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Ubuntu', sans-serif; background: var(--white); color: var(--text-dark); line-height: 1.65; font-size: 16px; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
h1,h2,h3,h4,h5 { font-family: 'Ubuntu', sans-serif; font-weight: 700; line-height: 1.2; color: var(--text-dark); }

/* ===== NAVBAR ===== */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(255,255,255,0.93); backdrop-filter: blur(16px); border-bottom: 2px solid var(--light-gray); transition: box-shadow 0.3s; }
.navbar.scrolled { box-shadow: 0 4px 24px rgba(117,182,240,0.12); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 2rem; display: flex; align-items: center; justify-content: space-between; height: 68px; }
.nav-logo { display: flex; align-items: center; gap: 0.5rem; font-weight: 700; font-size: 1.4rem; color: var(--text-dark); }
.logo-icon { color: var(--blue); font-size: 1.5rem; animation: spin-logo 10s linear infinite; display: inline-block; }
@keyframes spin-logo { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.nav-links { display: flex; align-items: center; gap: 0.1rem; list-style: none; }
.nav-links a { padding: 0.45rem 0.9rem; border-radius: 50px; font-weight: 500; font-size: 0.92rem; color: var(--text-mid); transition: background var(--transition), color var(--transition); }
.nav-links a:hover, .nav-links a.active { background: var(--blue-xlight); color: var(--blue-dark); }
.nav-tiktok { background: var(--blue) !important; color: white !important; border-radius: 50px !important; font-weight: 700 !important; }
.nav-tiktok:hover { background: var(--blue-dark) !important; opacity: 1 !important; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2.5px; background: var(--text-dark); border-radius: 3px; transition: all var(--transition); }

/* ===== LAYOUT ===== */
.page-wrap { padding-top: 68px; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 4rem 0; }
.section-alt { background: var(--off-white); }
.section-header { text-align: center; max-width: 580px; margin: 0 auto 2.5rem; }
.section-header h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); margin-bottom: 0.6rem; }
.section-header p { color: var(--text-light); }
.page-header { background: linear-gradient(135deg, var(--off-white), var(--blue-xlight)); border-bottom: 2px solid var(--light-gray); padding: 3.5rem 0 2.5rem; }
.page-header h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 0.5rem; }
.page-header p { color: var(--text-light); font-size: 1.05rem; max-width: 560px; }

/* ===== LABELS / TAGS ===== */
.section-label { display: inline-block; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--blue-dark); background: var(--blue-xlight); border: 1.5px solid var(--blue-light); padding: 0.25rem 0.8rem; border-radius: 50px; margin-bottom: 0.8rem; }
.tag { display: inline-flex; align-items: center; font-size: 0.72rem; font-weight: 700; padding: 0.2rem 0.65rem; border-radius: 50px; background: var(--blue-xlight); color: var(--blue-dark); border: 1.5px solid var(--blue-light); text-transform: uppercase; letter-spacing: 0.5px; }
.tag-event { background: #fff3e0; color: #b84900; border-color: #ffd0a0; }
.tag-giveaway { background: #e8fdf0; color: #1a7a40; border-color: #9fefc3; }
.tag-challenge { background: #f3e8ff; color: #6b21a8; border-color: #d5b0ff; }
.device-tag { font-size: 0.7rem; padding: 0.15rem 0.55rem; border-radius: 6px; background: var(--off-white); color: var(--text-light); border: 1.5px solid var(--light-gray); font-weight: 500; }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.7rem 1.5rem; border-radius: 50px; font-family: 'Ubuntu', sans-serif; font-weight: 700; font-size: 0.95rem; cursor: pointer; border: none; transition: all var(--transition); text-decoration: none; }
.btn-primary { background: var(--blue); color: white; box-shadow: 0 4px 18px var(--blue-glow); }
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 6px 24px var(--blue-glow); color: white; }
.btn-outline { background: transparent; color: var(--blue-dark); border: 2px solid var(--blue-light); }
.btn-outline:hover { background: var(--blue-xlight); border-color: var(--blue); color: var(--blue-dark); }
.btn-sm { padding: 0.45rem 1.1rem; font-size: 0.85rem; }
.btn-xs { padding: 0.3rem 0.8rem; font-size: 0.78rem; }

/* ===== HERO ===== */
.hero { min-height: 90vh; display: flex; align-items: center; background: linear-gradient(135deg, #f0f8ff 0%, #e2f2ff 60%, #cce8ff 100%); position: relative; overflow: hidden; padding: 5rem 0 3rem; }
.hero::before { content: ''; position: absolute; width: 700px; height: 700px; background: radial-gradient(circle, rgba(117,182,240,0.2) 0%, transparent 65%); top: -200px; right: -150px; border-radius: 50%; pointer-events: none; }
.hero-inner { max-width: 1200px; margin: 0 auto; padding: 0 2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; position: relative; z-index: 1; }
.hero-badge { display: inline-flex; align-items: center; gap: 0.4rem; background: var(--blue-xlight); color: var(--blue-dark); font-size: 0.8rem; font-weight: 700; padding: 0.35rem 0.9rem; border-radius: 50px; border: 1.5px solid var(--blue-light); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1.2rem; animation: fadeUp 0.5s ease both; }
.hero h1 { font-size: clamp(2.8rem, 5.5vw, 4.2rem); font-weight: 700; letter-spacing: -1.5px; line-height: 1.08; margin-bottom: 1.1rem; animation: fadeUp 0.5s 0.08s ease both; }
.hero h1 .hl { color: var(--blue); }
.hero p { font-size: 1.1rem; color: var(--text-mid); max-width: 480px; margin-bottom: 2rem; animation: fadeUp 0.5s 0.16s ease both; }
.hero-btns { display: flex; gap: 0.8rem; flex-wrap: wrap; animation: fadeUp 0.5s 0.24s ease both; }
.hero-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; animation: fadeIn 0.8s 0.3s ease both; }
.hero-stat-card { background: white; border: 2px solid var(--light-gray); border-radius: var(--radius); padding: 1.3rem; text-align: center; box-shadow: var(--shadow); transition: all var(--transition); }
.hero-stat-card:nth-child(2), .hero-stat-card:nth-child(4) { transform: translateY(16px); }
.hero-stat-card:hover { border-color: var(--blue); box-shadow: var(--shadow-lg); }
.hsc-num { font-size: 2rem; font-weight: 700; color: var(--blue); line-height: 1; }
.hsc-label { font-size: 0.78rem; color: var(--text-light); margin-top: 0.3rem; font-weight: 500; }

/* ===== GAME CARDS (list page) ===== */
.game-card { background: white; border: 2px solid var(--light-gray); border-radius: var(--radius); overflow: hidden; transition: all var(--transition); display: flex; flex-direction: column; }
.game-card:hover { border-color: var(--blue); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.game-card-img { position: relative; aspect-ratio: 16/9; overflow: hidden; background: var(--blue-xlight); }
.game-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.game-card:hover .game-card-img img { transform: scale(1.06); }
.game-card-img .img-fallback { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 3.5rem; background: linear-gradient(135deg, var(--blue-xlight), var(--blue-light)); }
.game-card-body { padding: 0.9rem 1.1rem; flex: 1; display: flex; flex-direction: column; gap: 0.25rem; }
.game-card-name { font-size: 0.98rem; font-weight: 700; line-height: 1.3; }
.game-card-creator { font-size: 0.8rem; color: var(--text-light); font-weight: 500; }
.game-card-footer { padding: 0.75rem 1.1rem; border-top: 1.5px solid var(--light-gray); display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; }

/* ===== GAME DETAIL PAGE ===== */
.game-detail-hero { background: linear-gradient(135deg, var(--off-white), var(--blue-xlight)); padding: 3rem 0 2rem; border-bottom: 2px solid var(--light-gray); }
.game-detail-inner { max-width: 1000px; margin: 0 auto; padding: 0 2rem; display: grid; grid-template-columns: 340px 1fr; gap: 2.5rem; align-items: start; }
.game-detail-img { border-radius: var(--radius); overflow: hidden; border: 2px solid var(--light-gray); box-shadow: var(--shadow-lg); aspect-ratio: 16/9; background: var(--blue-xlight); display: flex; align-items: center; justify-content: center; font-size: 5rem; }
.game-detail-img img { width: 100%; height: 100%; object-fit: cover; }
.game-detail-info h1 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); letter-spacing: -0.5px; margin-bottom: 0.3rem; }
.game-detail-meta { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 0.8rem 0; }
.game-detail-section { max-width: 1000px; margin: 0 auto; padding: 2.5rem 2rem; }
.game-detail-section h2 { font-size: 1.3rem; margin-bottom: 1rem; }
.game-detail-section p { color: var(--text-mid); line-height: 1.8; font-size: 1rem; }
.info-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 1rem; margin-top: 1.5rem; }
.info-box { background: white; border: 2px solid var(--light-gray); border-radius: var(--radius-sm); padding: 1rem; }
.info-box .ib-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-light); font-weight: 700; margin-bottom: 0.3rem; }
.info-box .ib-value { font-size: 0.95rem; font-weight: 700; color: var(--text-dark); }

/* ===== EVENTS ===== */
.events-list { display: flex; flex-direction: column; gap: 1rem; max-width: 800px; margin: 0 auto; }
.event-item { display: flex; gap: 1.2rem; align-items: flex-start; background: white; border: 2px solid var(--light-gray); border-radius: var(--radius); padding: 1.3rem; transition: all var(--transition); }
.event-item:hover { border-color: var(--blue-light); box-shadow: var(--shadow); }
.event-date { min-width: 58px; text-align: center; background: var(--blue-xlight); border: 2px solid var(--blue-light); border-radius: var(--radius-sm); padding: 0.6rem 0.5rem; flex-shrink: 0; }
.ed-day { font-size: 1.5rem; font-weight: 700; color: var(--blue-dark); line-height: 1; }
.ed-mon { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--blue); margin-top: 2px; }
.event-info { flex: 1; }
.event-info h3 { font-size: 1rem; margin-bottom: 0.3rem; }
.event-info p { font-size: 0.88rem; color: var(--text-light); }

/* ===== GRID LAYOUTS ===== */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 1.25rem; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 1.5rem; }

/* ===== CARD (generic - for projects/events) ===== */
.card { background: white; border: 2px solid var(--light-gray); border-radius: var(--radius); overflow: hidden; transition: all var(--transition); display: flex; flex-direction: column; }
.card:hover { border-color: var(--blue-light); box-shadow: var(--shadow); transform: translateY(-3px); }
.card-img { height: 170px; background: linear-gradient(135deg, var(--blue-xlight), var(--blue-light)); display: flex; align-items: center; justify-content: center; font-size: 3rem; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 1.2rem; flex: 1; display: flex; flex-direction: column; gap: 0.4rem; }
.card-body h3 { font-size: 1rem; }
.card-body p { font-size: 0.88rem; color: var(--text-light); flex: 1; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.card-footer-row { padding: 0.9rem 1.2rem; border-top: 1.5px solid var(--light-gray); display: flex; align-items: center; justify-content: space-between; font-size: 0.82rem; color: var(--text-light); }
.card-tag { display: inline-flex; font-size: 0.72rem; font-weight: 700; padding: 0.18rem 0.6rem; border-radius: 50px; background: var(--blue-xlight); color: var(--blue-dark); border: 1.5px solid var(--blue-light); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 0.4rem; }
.card-link { font-size: 0.85rem; font-weight: 700; color: var(--blue-dark); background: var(--blue-xlight); padding: 0.3rem 0.8rem; border-radius: 50px; transition: all var(--transition); }
.card-link:hover { background: var(--blue); color: white; }

/* ===== ABOUT ===== */
.about-grid { display: grid; grid-template-columns: 260px 1fr; gap: 3.5rem; align-items: start; max-width: 900px; margin: 0 auto; }
.about-avatar { border-radius: var(--radius); background: linear-gradient(135deg, var(--blue-xlight), var(--blue-light)); aspect-ratio: 1; display: flex; align-items: center; justify-content: center; font-size: 5rem; border: 2px solid var(--blue-light); }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; margin: 1.5rem 0; }
.about-stat { padding: 1rem; background: var(--blue-xlight); border-radius: var(--radius-sm); border: 1.5px solid var(--blue-light); text-align: center; }
.about-stat .as-num { font-size: 1.7rem; font-weight: 700; color: var(--blue-dark); }
.about-stat .as-label { font-size: 0.78rem; color: var(--text-light); font-weight: 500; }

/* ===== COLLAB ===== */
.collab-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.2rem; margin-bottom: 3rem; }
.collab-card { background: white; border: 2px solid var(--light-gray); border-radius: var(--radius); padding: 1.8rem 1.4rem; text-align: center; transition: all var(--transition); }
.collab-card:hover { border-color: var(--blue); box-shadow: var(--shadow); transform: translateY(-3px); }
.collab-icon { width: 52px; height: 52px; background: var(--blue-xlight); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; font-size: 1.5rem; }
.collab-card h3 { font-size: 1rem; margin-bottom: 0.4rem; }
.collab-card p { font-size: 0.88rem; color: var(--text-light); }

/* ===== FILTER BAR ===== */
.filter-bar { display: flex; gap: 0.75rem; align-items: center; flex-wrap: wrap; margin-bottom: 2rem; }
.filter-input { flex: 1; min-width: 200px; padding: 0.65rem 1.1rem; border: 2px solid var(--light-gray); border-radius: 50px; font-family: 'Ubuntu', sans-serif; font-size: 0.92rem; outline: none; transition: border-color var(--transition); background: white; }
.filter-input:focus { border-color: var(--blue); }
.filter-select { padding: 0.65rem 1.1rem; border: 2px solid var(--light-gray); border-radius: 50px; font-family: 'Ubuntu', sans-serif; font-size: 0.9rem; background: white; color: var(--text-mid); font-weight: 700; cursor: pointer; outline: none; transition: border-color var(--transition); }
.filter-select:focus { border-color: var(--blue); }

/* ===== FORM ===== */
.contact-form { max-width: 560px; margin: 0 auto; background: white; border: 2px solid var(--light-gray); border-radius: var(--radius); padding: 2.2rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: 0.88rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.4rem; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 0.72rem 1rem; border: 2px solid var(--light-gray); border-radius: var(--radius-xs); font-family: 'Ubuntu', sans-serif; font-size: 0.95rem; color: var(--text-dark); background: white; transition: border-color var(--transition); outline: none; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--blue); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* ===== ALERTS ===== */
.alert { padding: 0.9rem 1.2rem; border-radius: var(--radius-xs); margin-bottom: 1.2rem; font-size: 0.92rem; font-weight: 500; }
.alert-error { background: #fef2f2; color: #b91c1c; border: 1.5px solid #fecaca; }
.alert-success { background: #f0fdf4; color: #15803d; border: 1.5px solid #86efac; }
.alert-info { background: var(--blue-xlight); color: var(--blue-dark); border: 1.5px solid var(--blue-light); }

/* ===== PAGINATION ===== */
.pagination { display: flex; gap: 0.4rem; justify-content: center; margin-top: 2.5rem; flex-wrap: wrap; }
.page-btn { padding: 0.5rem 1rem; border-radius: var(--radius-xs); border: 2px solid var(--light-gray); background: white; color: var(--text-mid); font-size: 0.9rem; cursor: pointer; font-family: 'Ubuntu', sans-serif; font-weight: 700; transition: all var(--transition); text-decoration: none; display: inline-block; }
.page-btn:hover, .page-btn.active { background: var(--blue); color: white; border-color: var(--blue); }

/* ===== EMPTY STATE ===== */
.empty-state { text-align: center; padding: 4rem 2rem; color: var(--text-light); }
.empty-state .es-icon { font-size: 3rem; margin-bottom: 1rem; }
.empty-state h3 { color: var(--text-mid); font-size: 1.1rem; margin-bottom: 0.5rem; }

/* ===== FOOTER ===== */
.footer { background: var(--text-dark); color: rgba(255,255,255,0.55); padding: 4rem 0 0; }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 2rem 3rem; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-brand .logo-text { color: white; }
.footer-brand .logo-icon { color: var(--blue); }
.footer-brand p { font-size: 0.88rem; margin-top: 0.7rem; max-width: 280px; }
.footer-links h4 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.3); margin-bottom: 1rem; font-weight: 700; }
.footer-links a { display: block; font-size: 0.9rem; color: rgba(255,255,255,0.55); padding: 0.25rem 0; transition: color var(--transition); }
.footer-links a:hover { color: var(--blue); }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding: 1.5rem 2rem; font-size: 0.82rem; text-align: center; color: rgba(255,255,255,0.2); }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ===== ADMIN ===== */
.admin-body { background: var(--off-white); }
.admin-login-wrap { display: flex; align-items: center; justify-content: center; min-height: 100vh; padding: 2rem; }
.admin-login-card { background: white; border: 2px solid var(--light-gray); border-radius: var(--radius); padding: 2.5rem; width: 100%; max-width: 420px; box-shadow: var(--shadow-lg); }
.admin-layout { display: flex; min-height: 100vh; }
.admin-sidebar { width: 240px; min-height: 100vh; background: #0d1b2a; display: flex; flex-direction: column; position: fixed; left: 0; top: 0; bottom: 0; z-index: 10; }
.sidebar-logo { padding: 1.5rem; display: flex; align-items: center; gap: 0.5rem; font-weight: 700; font-size: 1.1rem; color: white; border-bottom: 1px solid rgba(255,255,255,0.07); }
.sidebar-nav { padding: 1rem; flex: 1; }
.sidebar-section { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 1.2px; color: rgba(255,255,255,0.2); padding: 0.8rem 0.5rem 0.3rem; font-weight: 700; }
.sidebar-link { display: flex; align-items: center; gap: 0.6rem; padding: 0.6rem 0.8rem; border-radius: var(--radius-xs); color: rgba(255,255,255,0.55); font-size: 0.9rem; font-weight: 500; transition: all var(--transition); text-decoration: none; margin-bottom: 0.1rem; }
.sidebar-link:hover, .sidebar-link.active { background: rgba(117,182,240,0.15); color: var(--blue); }
.sidebar-bottom { padding: 1rem; border-top: 1px solid rgba(255,255,255,0.07); }
.admin-main { margin-left: 240px; flex: 1; display: flex; flex-direction: column; min-height: 100vh; }
.admin-topbar { background: white; border-bottom: 2px solid var(--light-gray); padding: 1rem 2rem; display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 5; }
.admin-topbar h1 { font-size: 1.2rem; font-weight: 700; }
.admin-content { padding: 2rem; flex: 1; }
.admin-stats { display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 1rem; margin-bottom: 2rem; }
.admin-stat { background: white; border: 2px solid var(--light-gray); border-radius: var(--radius); padding: 1.3rem; }
.admin-stat .as-icon { font-size: 1.5rem; margin-bottom: 0.3rem; }
.admin-stat .as-num { font-size: 1.8rem; font-weight: 700; color: var(--blue-dark); line-height: 1; }
.admin-stat .as-label { font-size: 0.8rem; color: var(--text-light); margin-top: 0.2rem; }
.admin-table-wrap { background: white; border: 2px solid var(--light-gray); border-radius: var(--radius); overflow: hidden; }
.admin-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.admin-table th { text-align: left; padding: 0.85rem 1.2rem; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.8px; color: var(--text-light); border-bottom: 2px solid var(--light-gray); background: var(--off-white); font-weight: 700; }
.admin-table td { padding: 0.85rem 1.2rem; border-bottom: 1px solid var(--light-gray); color: var(--text-dark); vertical-align: middle; }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: var(--off-white); }
.admin-form-card { background: white; border: 2px solid var(--light-gray); border-radius: var(--radius); padding: 2rem; max-width: 700px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.action-btns { display: flex; gap: 0.4rem; }
.flash-msg { padding: 0.85rem 1.2rem; border-radius: var(--radius-xs); margin-bottom: 1.2rem; font-size: 0.9rem; font-weight: 500; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-cards { max-width: 420px; }
    .about-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .game-detail-inner { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .nav-links { display: none; position: fixed; top: 68px; left: 0; right: 0; background: white; flex-direction: column; padding: 1rem; border-bottom: 2px solid var(--light-gray); gap: 0.2rem; z-index: 99; box-shadow: var(--shadow); }
    .nav-links.open { display: flex; }
    .nav-links a { padding: 0.7rem 1rem; border-radius: var(--radius-sm); }
    .nav-toggle { display: flex; }
    .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
    .grid-3 { grid-template-columns: 1fr 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .admin-sidebar { display: none; }
    .admin-main { margin-left: 0; }
}
@media (max-width: 480px) {
    .grid-3 { grid-template-columns: 1fr; }
}
