/* NEW MINIMALIST DESIGN - Clean & Simple Layout */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    background: #fafafa;
    color: #222;
    line-height: 1.6;
}

/* Header - Clean & Minimal */
.simple-header {
    background: #ffffff !important;
    border-bottom: 1px solid #e5e7eb !important;
    padding: 0 !important;
}

.navbar {
    background: #ffffff !important;
    padding: 1rem 0 !important;
}

.navbar-brand {
    font-size: 1.8rem !important;
    font-weight: 900 !important;
    color: #111827 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
}

.nav-link {
    color: #6b7280 !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    text-transform: uppercase !important;
    padding: 0.6rem 1.0rem !important;
    letter-spacing: 0.5px !important;
    border: 2px solid transparent !important;
    margin: 0 0.25rem !important;
}

.nav-link:hover,
.nav-link.active {
    color: #7c3aed !important;
    background: transparent !important;
    border-color: transparent !important;
}

/* Hero Section - Simplified */
.hero,
.hero-content {
    background: #ffffff !important;
    padding: 2.5rem 0 !important;
    border-bottom: 1px solid #e5e7eb !important;
}

.hero h1,
.hero-content h1 {
    font-size: 2.5rem !important;
    font-weight: 900 !important;
    color: #000 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    margin-bottom: 1rem !important;
}

.hero p,
.hero-content p,
.lead {
    font-size: 1.1rem !important;
    color: #666 !important;
    font-weight: 600 !important;
}

/* Hero Stats */
.hero-stats {
    display: flex !important;
    gap: 2rem !important;
    margin-top: 2rem !important;
    justify-content: center !important;
}

.hero-stat {
    background: #ffffff !important;
    color: #111827 !important;
    padding: 1rem 2rem !important;
    border: 1px solid #e5e7eb !important;
    text-align: center !important;
}

.hero-stat-number {
    font-size: 2rem !important;
    font-weight: 900 !important;
    display: block !important;
}

.hero-stat-label {
    font-size: 0.8rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}

/* Main Content */
.main-content {
    background: #fafafa;
    padding: 2rem 0;
}

/* Search & Filters */
.search-container,
.filter-section {
    background: #fff;
    border: 2px solid #000;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.form-control,
.form-select {
    border: 2px solid #000 !important;
    border-radius: 0 !important;
    padding: 0.75rem !important;
    font-weight: 600;
}

.form-control:focus,
.form-select:focus {
    border-color: #000 !important;
    box-shadow: none !important;
    outline: 2px solid #000;
    outline-offset: 2px;
}

/* Buttons */
.btn-primary,
.search-btn {
    background: #7c3aed !important;
    color: #fff !important;
    border: 2px solid #7c3aed !important;
    border-radius: 0 !important;
    padding: 0.75rem 1.5rem !important;
    font-weight: 900 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem !important;
    transition: all 0.2s;
}

.btn-primary:hover,
.search-btn:hover {
    background: #6d28d9 !important;
    color: #fff !important;
    transform: none !important;
    box-shadow: none !important;
}

/* GAME CARDS - Clean & Bold */
.game-card,
.card.game-card {
    background: #ffffff !important;
    border: 1px solid rgba(0,0,0,0.04) !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    margin-bottom: 1.25rem !important;
    transition: transform 0.15s ease, box-shadow 0.2s ease !important;
    position: relative !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06) !important;
}

.game-card:hover,
.card.game-card:hover {
    transform: none !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06) !important;
}

/* Card Image */
.game-card .card-img-top,
.game-image-container img {
    width: 100% !important;
    height: 180px !important;
    object-fit: cover !important;
    border: none !important;
    border-bottom: 1px solid #eef2f7 !important;
    border-radius: 0 !important;
    display: block !important;
}

/* Hide extra elements */
.game-image-container,
.floating-play-btn,
.game-info-pills {
    display: contents !important;
}

.floating-play-btn {
    display: none !important;
}

/* Card Body */
.game-card .card-body {
    padding: 0.85rem 0.9rem !important;
    background: #fff !important;
    flex-grow: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    position: relative !important;
    min-height: 110px !important;
}

/* Game Title */
.game-card .game-title,
.game-card .card-title,
.game-card h6 {
    font-size: 0.98rem !important;
    font-weight: 600 !important;
    color: #111827 !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    margin-bottom: 0.35rem !important;
    line-height: 1.35 !important;
    flex-grow: 0 !important;
    display: block !important;
}

/* Category Badge */
.game-type-pill,
.game-card .badge {
    background: #f1f5f9 !important;
    color: #475569 !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 9999px !important;
    padding: 0.2rem 0.5rem !important;
    font-size: 0.68rem !important;
    font-weight: 500 !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    display: inline-block !important;
    position: static !important;
    margin-bottom: 0.35rem !important;
}

/* Big Arrow Button */
.game-card .card-body::after { content: none !important; }

.game-card:hover .card-body::after { content: none !important; }

/* Card Links */
.game-card a {
    text-decoration: none !important;
    color: inherit !important;
}

/* Game Meta */
.game-card .game-meta {
    display: block !important;
    margin-bottom: 4rem !important;
}

.game-type {
    font-size: 0.75rem !important;
    color: #fff !important;
    font-weight: 900 !important;
}

/* Hide default icons */
.play-icon,
.bi-play-fill {
    display: inline-block !important;
    width: 18px !important;
    height: 18px !important;
    color: #7c3aed !important;
    opacity: 0.85 !important;
}

/* Remove large arrow block inside cards */
.floating-action { display: none !important; }

/* Section Headers */
h2 {
    font-size: 1.75rem !important;
    font-weight: 900 !important;
    color: #000 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 4px solid #000;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem !important;
}

.text-gradient {
    background: none !important;
    color: #000 !important;
    -webkit-text-fill-color: unset !important;
}

.badge.bg-primary {
    background: #000 !important;
    color: #fff !important;
    border-radius: 0 !important;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5rem 1rem;
}

/* Pagination */
.pagination {
    gap: 0.5rem;
}

.page-link {
    background: #fff !important;
    color: #000 !important;
    border: 2px solid #000 !important;
    border-radius: 0 !important;
    padding: 0.5rem 1rem !important;
    font-weight: 900 !important;
    transition: all 0.2s;
}

.page-link:hover {
    background: #000 !important;
    color: #fff !important;
    transform: translate(-3px, -3px);
    box-shadow: 3px 3px 0 #000;
}

.page-item.active .page-link {
    background: #000 !important;
    color: #fff !important;
    border-color: #000 !important;
}

.page-item.disabled .page-link {
    background: #f0f0f0 !important;
    color: #999 !important;
    border-color: #ccc !important;
}

/* Footer */
footer {
    background: #fff;
    border-top: 4px solid #000;
    padding: 3rem 0 2rem;
    margin-top: 4rem;
}

.footer-section h5 {
    font-size: 1rem !important;
    font-weight: 900 !important;
    color: #000 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem !important;
    border-bottom: 2px solid #000;
    padding-bottom: 0.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: #666 !important;
    text-decoration: none !important;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.footer-links a:hover {
    color: #000 !important;
    padding-left: 0.5rem;
}

.footer-bottom {
    border-top: 2px solid #e0e0e0;
    margin-top: 2rem;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #666;
    font-size: 0.85rem;
}

/* Social Links */
.social-link {
    width: 45px !important;
    height: 45px !important;
    background: #fff !important;
    border: 2px solid #000 !important;
    border-radius: 0 !important;
    color: #000 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    font-size: 1.2rem !important;
    transition: all 0.2s;
    margin-right: 0.5rem;
}

.social-link:hover {
    background: #000 !important;
    color: #fff !important;
    transform: translate(-3px, -3px);
    box-shadow: 3px 3px 0 #000;
}

/* Content Containers */
.content-container {
    background: #fff;
    border: 2px solid #000;
    padding: 2rem;
    margin-bottom: 2rem;
}

/* Remove all border-radius */
*,
*::before,
*::after {
    border-radius: 0 !important;
}

/* Remove all box-shadows except our custom ones */
.card,
.btn,
button,
input,
select {
    box-shadow: none !important;
}

/* Game Detail Page */
.game-banner {
    background: #000;
    color: #fff;
    padding: 3rem 0;
    text-align: center;
    border-bottom: 4px solid #fff;
}

.game-icon {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 4px solid #fff;
    margin-bottom: 1.5rem;
}

.play-button {
    background: #fff !important;
    color: #000 !important;
    border: 3px solid #fff !important;
    padding: 1rem 2.5rem !important;
    font-size: 1.1rem !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    transition: all 0.2s !important;
    display: inline-block !important;
    text-decoration: none !important;
}

.play-button:hover {
    background: #000 !important;
    color: #fff !important;
    transform: translate(-4px, -4px);
    box-shadow: 4px 4px 0 #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .game-card .card-img-top {
        height: 180px !important;
    }

    .game-card .card-body::after {
        width: 40px !important;
        height: 40px !important;
        font-size: 1.5rem !important;
    }

    .game-card .game-meta {
        margin-bottom: 3rem !important;
        padding-right: 50px !important;
    }

    h2 {
        font-size: 1.5rem !important;
    }
}

@media (max-width: 576px) {
    .game-card .card-img-top {
        height: 160px !important;
    }
}
