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

:root {
    --bg-dark: #07080d;
    --bg-card: #0f111a;
    --bg-input: #05060a;
    --text-main: #f5f5f7;
    --text-muted: #c5a880;
    --text-desc: #8f9cae;
    --primary: #6c5ce7;
    --primary-glow: rgba(108, 92, 231, 0.4);
    --secondary: #00cec9;
    --secondary-glow: rgba(0, 206, 201, 0.3);
    --accent: #ff7675;
    --accent-glow: rgba(255, 118, 117, 0.3);
    --glass: rgba(15, 17, 26, 0.75);
    --glass-border: rgba(255, 255, 255, 0.05);
    --font-outfit: 'Outfit', sans-serif;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 10px 20px -3px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 20px 30px -5px rgba(0, 0, 0, 0.6);
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-outfit);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a {
    color: inherit;
    text-decoration: none;
}

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

/* --- AD CONTAINERS & RAW CODE INJECTION --- */
.ad-slot {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin: 2.5rem auto;
    padding: 0.75rem;
    border-radius: 12px;
    text-align: center;
    position: relative;
    max-width: 100%;
    height: auto;
    min-height: 50px;
    overflow: visible;
    background-color: rgba(255, 255, 255, 0.01);
    border: 1px dashed rgba(255, 255, 255, 0.05);
}

.ad-slot::before {
    content: "ADVERTISEMENT";
    position: absolute;
    top: -20px;
    left: 8px;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--text-desc);
    letter-spacing: 2px;
    opacity: 0.6;
}

.ad-sidebar {
    width: 100%;
    max-width: 300px;
    height: auto;
    min-height: 250px;
    margin: 1.5rem 0;
}

/* --- HEADER --- */
.site-header {
    background: var(--glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.9rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--text-main);
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--primary);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 15px rgba(0, 206, 201, 0.2);
}

.logo-icon {
    font-size: 1.8rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-menu a {
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.nav-menu a:hover {
    color: var(--secondary);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--secondary);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 8px var(--secondary);
}

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

.mobile-icons {
    display: none;
}

.mobile-menu-btn {
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.8rem;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background: var(--bg-card);
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 1.5rem;
    gap: 1rem;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
}

/* --- HERO INTRO --- */
.hero-intro {
    max-width: 1200px;
    margin: 3rem auto 2rem;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, var(--text-main) 30%, var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    color: var(--text-desc);
    margin-bottom: 1.25rem;
    font-size: 1.15rem;
    font-weight: 400;
}

.hero-visual img {
    border-radius: 20px;
    box-shadow: 0 0 35px rgba(108, 92, 231, 0.25);
    border: 1px solid rgba(108, 92, 231, 0.15);
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hero-visual img:hover {
    transform: translateY(-8px) scale(1.02);
}

/* --- SEARCH & CATEGORIES --- */
.filter-bar {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.category-tags {
    display: flex;
    gap: 0.85rem;
    flex-wrap: wrap;
}

.category-tag {
    background-color: var(--bg-card);
    border: 1px solid var(--glass-border);
    padding: 0.6rem 1.4rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-tag:hover, .category-tag.active {
    background-color: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 5px 15px var(--primary-glow);
    color: white;
}

.search-box {
    position: relative;
    max-width: 320px;
    width: 100%;
}

.search-box input {
    width: 100%;
    background-color: var(--bg-input);
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    padding: 0.7rem 1rem 0.7rem 2.8rem;
    border-radius: 30px;
    font-family: var(--font-outfit);
    outline: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.search-box input:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 15px var(--secondary-glow);
}

.search-box i {
    position: absolute;
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-desc);
    pointer-events: none;
}

/* --- SECTION GRID --- */
.featured-games {
    max-width: 1200px;
    margin: 2.5rem auto;
    padding: 0 1.5rem;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 1rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.section-desc {
    color: var(--text-desc);
    font-size: 1rem;
    margin-top: 0.35rem;
}

.view-all {
    color: var(--secondary);
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s ease;
}

.view-all:hover {
    transform: translateX(6px);
}

.game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
    gap: 1.75rem;
}

.game-item {
    background-color: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.25rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.game-item:hover {
    transform: translateY(-8px);
    border-color: var(--secondary);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.5), 0 0 15px rgba(0, 206, 201, 0.2);
}

.game-icon {
    width: 96px;
    height: 96px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 1rem;
    background-color: var(--bg-dark);
    position: relative;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.game-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.game-item:hover .game-icon img {
    transform: scale(1.12);
}

.game-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-main);
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    width: 100%;
}

.game-category {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--secondary);
    margin-top: 0.4rem;
    background-color: rgba(0, 206, 201, 0.1);
    padding: 0.2rem 0.6rem;
    border-radius: 30px;
    border: 1px solid rgba(0, 206, 201, 0.15);
}

.featured-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--accent);
    color: white;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 6px rgba(255, 118, 117, 0.3);
}

/* --- GAME DETAILS PLAY PAGE --- */
.game-play-layout {
    max-width: 1200px;
    margin: 2rem auto 4rem;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2.5rem;
}

.game-stage-container {
    background-color: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.game-stage-header {
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--glass-border);
}

.game-stage-header h2 {
    font-size: 1.4rem;
    font-weight: 800;
}

.game-controls-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.game-controls-btn:hover {
    box-shadow: 0 5px 15px var(--primary-glow);
    background-color: #5b4bc4;
}

.game-iframe-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    background-color: #000;
}

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

.pre-game-ad-screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(7, 8, 13, 0.97);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10;
    padding: 2rem;
    text-align: center;
}

.pre-game-ad-screen h3 {
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    color: var(--secondary);
    font-weight: 800;
    text-shadow: 0 0 10px rgba(0, 206, 201, 0.2);
}

.countdown-text {
    font-size: 1.15rem;
    color: var(--text-desc);
    margin-top: 1.5rem;
}

.ad-skip-btn {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 0.8rem 2.2rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
    display: none;
}

.ad-skip-btn:hover {
    transform: scale(1.04);
    box-shadow: 0 0 20px var(--primary-glow);
}

.game-info-tabs {
    margin-top: 2rem;
}

.tab-nav {
    display: flex;
    border-bottom: 1px solid var(--glass-border);
    gap: 2rem;
}

.tab-link {
    background: none;
    border: none;
    color: var(--text-desc);
    padding: 0.9rem 0.5rem;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    font-family: var(--font-outfit);
    position: relative;
    transition: color 0.3s ease;
}

.tab-link.active {
    color: var(--text-main);
}

.tab-link.active::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    bottom: -2px;
    left: 0;
    background-color: var(--primary);
    box-shadow: 0 0 8px var(--primary);
}

.tab-content {
    padding: 2rem 0;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.tab-panel h4 {
    margin-bottom: 0.75rem;
    color: var(--secondary);
    font-size: 1.25rem;
    font-weight: 700;
}

.tab-panel p {
    color: var(--text-desc);
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
}

/* --- BLOG SECTION --- */
.blog-section {
    max-width: 1200px;
    margin: 3.5rem auto 2.5rem;
    padding: 0 1.5rem;
}

.blog-layout {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2.5rem;
}

.blog-feature {
    background-color: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 420px;
    box-shadow: var(--shadow-md);
    cursor: pointer;
}

.blog-feature img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.35);
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.blog-feature:hover img {
    transform: scale(1.04);
}

.blog-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem;
    background: linear-gradient(transparent, rgba(7, 8, 13, 0.98));
}

.blog-tag {
    background-color: var(--secondary);
    color: #000;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.25rem 0.7rem;
    border-radius: 6px;
    letter-spacing: 0.75px;
    display: inline-block;
    margin-bottom: 1rem;
}

.blog-feature h3 {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 0.75rem;
}

.blog-feature p {
    color: var(--text-desc);
    font-size: 1rem;
}

.blog-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.blog-item {
    display: flex;
    gap: 1.5rem;
    background-color: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.blog-item:hover {
    border-color: var(--primary);
    transform: translateX(8px);
    box-shadow: 0 5px 15px rgba(108, 92, 231, 0.1);
}

.blog-item img {
    width: 150px;
    height: 100%;
    min-height: 120px;
    object-fit: cover;
}

.blog-info {
    padding: 1.25rem 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-item h4 {
    font-size: 1.15rem;
    font-weight: 800;
    line-height: 1.35;
    margin-bottom: 0.4rem;
}

.blog-item p {
    color: var(--text-desc);
    font-size: 0.9rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* --- FOOTER --- */
.site-footer {
    background-color: #030406;
    border-top: 1px solid var(--glass-border);
    padding: 4rem 1.5rem 2rem;
    margin-top: auto;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 0.9fr;
    gap: 3.5rem;
}

.footer-col h3 {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--secondary);
    letter-spacing: 0.75px;
    text-transform: uppercase;
}

.footer-left p {
    color: var(--text-desc);
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
}

.footer-logo span {
    color: var(--primary);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.footer-col ul li {
    margin-bottom: 0.85rem;
    font-size: 0.95rem;
}

.footer-col ul li a {
    color: var(--text-desc);
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--text-main);
}

.footer-center li {
    color: var(--text-desc);
    position: relative;
    padding-left: 1.4rem;
}

.footer-center li::before {
    content: "•";
    color: var(--accent);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.footer-bottom {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid var(--glass-border);
    text-align: center;
    color: var(--text-desc);
    font-size: 0.85rem;
}

/* --- STATS / PAGES --- */
.page-layout {
    max-width: 800px;
    margin: 3.5rem auto;
    padding: 0 1.5rem;
}

.page-layout h1 {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--secondary);
}

.page-content {
    background-color: var(--bg-card);
    border: 1px solid var(--glass-border);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.page-content h2, .page-content h3 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: var(--secondary);
}

.page-content p {
    color: var(--text-desc);
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
}

.page-content ul {
    margin-left: 1.75rem;
    margin-bottom: 1.25rem;
    color: var(--text-desc);
}

/* --- ADMIN PANEL LAYOUT & monospaced textareas --- */
.admin-login-body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: var(--bg-dark);
}

.admin-login-card {
    background-color: var(--bg-card);
    border: 1px solid var(--glass-border);
    padding: 3rem;
    border-radius: 20px;
    max-width: 420px;
    width: 100%;
    box-shadow: var(--shadow-lg);
}

.admin-login-card h2 {
    font-size: 2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
    color: var(--text-desc);
}

.form-control {
    width: 100%;
    background-color: var(--bg-input);
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    padding: 0.8rem 1.1rem;
    border-radius: 10px;
    font-family: var(--font-outfit);
    outline: none;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary);
}

/* Code area design for code insertions */
textarea.form-control {
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 0.9rem;
    background-color: #050608;
    color: #79ffe1;
    border-color: rgba(255, 255, 255, 0.08);
}
textarea.form-control:focus {
    border-color: var(--secondary);
}

.btn-primary {
    width: 100%;
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: var(--font-outfit);
}

.btn-primary:hover {
    box-shadow: 0 5px 15px var(--primary-glow);
    background-color: #5b4bc4;
}

.admin-container {
    display: grid;
    grid-template-columns: 260px 1fr;
    min-height: 100vh;
}

.admin-sidebar {
    background-color: #030406;
    border-right: 1px solid var(--glass-border);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.admin-nav {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.admin-nav-link {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.8rem 1.1rem;
    border-radius: 10px;
    color: var(--text-desc);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
}

.admin-nav-link:hover, .admin-nav-link.active {
    background-color: var(--bg-card);
    color: var(--text-main);
    border-left: 4px solid var(--primary);
}

.admin-content {
    padding: 2.5rem 3.5rem;
    overflow-y: auto;
}

.admin-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
}

.admin-card-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.75rem;
    margin-bottom: 2.5rem;
}

.stat-card {
    background-color: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
}

.stat-title {
    color: var(--text-desc);
    font-size: 0.95rem;
    margin-bottom: 0.6rem;
}

.stat-val {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--secondary);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    overflow: hidden;
}

.admin-table th, .admin-table td {
    padding: 1.1rem 1.25rem;
    text-align: left;
    border-bottom: 1px solid var(--glass-border);
}

.admin-table th {
    background-color: #030406;
    font-weight: 700;
    color: var(--secondary);
}

.admin-table tr:hover {
    background-color: rgba(255, 255, 255, 0.015);
}

.action-btns {
    display: flex;
    gap: 0.6rem;
}

.btn-sm {
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.8rem;
    border: none;
    font-weight: 700;
    cursor: pointer;
    font-family: var(--font-outfit);
}

.btn-edit {
    background-color: var(--secondary);
    color: #000;
}

.btn-delete {
    background-color: var(--accent);
    color: white;
}

.alert {
    padding: 1.1rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    font-weight: 600;
}

.alert-success {
    background-color: rgba(46, 204, 113, 0.12);
    border: 1px solid #2ecc71;
    color: #2ecc71;
}

.alert-danger {
    background-color: rgba(231, 76, 60, 0.12);
    border: 1px solid #e74c3c;
    color: #e74c3c;
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .hero-intro {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    .hero-content h1 {
        font-size: 2.4rem;
    }
    .game-play-layout {
        grid-template-columns: 1fr;
    }
    .blog-layout {
        grid-template-columns: 1fr;
    }
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .admin-container {
        grid-template-columns: 1fr;
    }
    .admin-sidebar {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    .mobile-icons {
        display: block;
    }
    .filter-bar {
        flex-direction: column;
        align-items: stretch;
    }
    .search-box {
        max-width: 100%;
    }
    .blog-item {
        flex-direction: column;
    }
    .blog-item img {
        width: 100%;
        height: 160px;
    }
}
