/* ============================================
   gPOTATU GAME PORTAL - 2012 Era Style
   Inspired by Aeria Games / Nexon circa 2012
   Dark gamer theme, glossy accents, mega slider
   ============================================ */

/* === RESET === */
html {
    scroll-behavior: smooth;
}

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

/* === BASE === */
body {
    font-family: 'Open Sans', Verdana, Tahoma, sans-serif;
    font-size: 13px;
    color: #ccc;
    background: #1a1a1a;
    min-height: 100vh;
    /* Subtle noise texture via CSS */
    background-image:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(255,255,255,0.008) 2px,
            rgba(255,255,255,0.008) 4px
        );
}

a {
    color: #ff9900;
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: #ffbb44;
}

.container {
    width: 1100px;
    margin: 0 auto;
    padding: 0 15px;
}

/* === TOP BAR === */
#top-bar {
    background: #111;
    border-bottom: 1px solid #2a2a2a;
    height: 32px;
    line-height: 32px;
    font-size: 11px;
}

#top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-left {
    display: flex;
    gap: 0;
}

.top-link {
    color: #888;
    padding: 0 10px;
    font-size: 11px;
    transition: color 0.2s;
}

.top-link:hover {
    color: #ff9900;
}

.top-sep {
    color: #333;
}

.top-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang-picker {
    background: #222;
    border: 1px solid #444;
    color: #aaa;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 3px;
    cursor: pointer;
}

.top-btn {
    display: inline-block;
    padding: 3px 14px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.2s;
}

.top-btn-login {
    background: transparent;
    border: 1px solid #555;
    color: #ccc;
}

.top-btn-login:hover {
    border-color: #ff9900;
    color: #ff9900;
}

.top-btn-register {
    background: linear-gradient(180deg, #ff9900 0%, #e07700 100%);
    border: 1px solid #cc6600;
    color: #fff;
    text-shadow: 0 1px 1px rgba(0,0,0,0.3);
}

.top-btn-register:hover {
    background: linear-gradient(180deg, #ffaa33 0%, #ff9900 100%);
    box-shadow: 0 0 8px rgba(255,153,0,0.4);
}

/* === HEADER === */
#main-header {
    background: linear-gradient(180deg, #222 0%, #1a1a1a 100%);
    border-bottom: 3px solid #ff9900;
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
    position: relative;
    z-index: 100;
}

.header-flex {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-logo img {
    height: 42px;
    width: auto;
    display: block;
    filter: brightness(1.1);
    transition: filter 0.2s;
}

.header-logo:hover img {
    filter: brightness(1.3);
}

/* Search */
.header-search {
    display: flex;
    align-items: center;
    background: #111;
    border: 1px solid #444;
    border-radius: 20px;
    overflow: hidden;
    transition: border-color 0.2s;
}

.header-search:focus-within {
    border-color: #ff9900;
    box-shadow: 0 0 6px rgba(255,153,0,0.2);
}

.search-input {
    background: transparent;
    border: none;
    color: #ccc;
    font-size: 12px;
    padding: 7px 14px;
    width: 200px;
    outline: none;
}

.search-input::placeholder {
    color: #666;
}

.search-btn {
    background: transparent;
    border: none;
    color: #888;
    font-size: 14px;
    padding: 7px 12px;
    cursor: pointer;
    transition: color 0.2s;
}

.search-btn:hover {
    color: #ff9900;
}

/* Main Navigation */
.main-nav {
    display: flex;
    gap: 0;
    margin-left: auto;
}

.main-nav-link {
    display: block;
    padding: 10px 18px;
    color: #ccc;
    font-family: 'Exo 2', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    transition: all 0.2s;
}

.main-nav-link::after {
    content: '';
    position: absolute;
    bottom: -13px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: #ff9900;
    transition: width 0.25s;
}

.main-nav-link:hover,
.main-nav-link.active {
    color: #ff9900;
}

.main-nav-link:hover::after,
.main-nav-link.active::after {
    width: 80%;
}

/* === HERO SLIDER === */
#hero-slider {
    position: relative;
    height: 420px;
    overflow: hidden;
    background: #111;
}

.slider-viewport {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.hero-slide.active {
    opacity: 1;
}

.slide-bg-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 65%;
    height: 100%;
    overflow: hidden;
}

.slide-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        rgba(15,15,15,1) 0%,
        rgba(15,15,15,0.95) 25%,
        rgba(15,15,15,0.7) 45%,
        rgba(15,15,15,0.2) 70%,
        transparent 100%
    );
}

.slide-content {
    position: relative;
    z-index: 10;
    padding-top: 80px;
    max-width: 500px;
}

.slide-badge {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 3px;
    font-family: 'Exo 2', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.badge-live {
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    color: #fff;
    box-shadow: 0 0 10px rgba(76,175,80,0.4);
}

.badge-soon {
    background: linear-gradient(135deg, #FF9800, #E65100);
    color: #fff;
    box-shadow: 0 0 10px rgba(255,152,0,0.4);
}

.slide-title {
    font-family: 'Exo 2', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.1;
    margin-bottom: 12px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

.slide-desc {
    font-size: 14px;
    color: #bbb;
    line-height: 1.6;
    margin-bottom: 25px;
}

.slide-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.btn-play {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(180deg, #ff9900 0%, #e07700 50%, #cc5500 100%);
    border: none;
    border-radius: 5px;
    color: #fff;
    font-family: 'Exo 2', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 1px 2px rgba(0,0,0,0.4);
    cursor: pointer;
    transition: all 0.25s;
    box-shadow: 0 3px 10px rgba(255,153,0,0.3);
}

.btn-play:hover {
    background: linear-gradient(180deg, #ffaa33 0%, #ff9900 50%, #dd6600 100%);
    box-shadow: 0 3px 20px rgba(255,153,0,0.5);
    transform: translateY(-1px);
    color: #fff;
}

.btn-info {
    color: #aaa;
    font-size: 13px;
    font-weight: 600;
    padding: 12px 16px;
    transition: color 0.2s;
}

.btn-info:hover {
    color: #ff9900;
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.6);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    font-size: 22px;
    width: 45px;
    height: 60px;
    cursor: pointer;
    z-index: 20;
    transition: all 0.2s;
    border-radius: 4px;
}

.slider-arrow:hover {
    background: rgba(255,153,0,0.7);
    border-color: #ff9900;
}

.slider-prev {
    left: 15px;
}

.slider-next {
    right: 15px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 20;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
    border: 2px solid rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.25s;
}

.dot.active,
.dot:hover {
    background: #ff9900;
    border-color: #ffbb44;
    box-shadow: 0 0 8px rgba(255,153,0,0.6);
}

/* === GAMES SECTION === */
#games-section {
    padding: 40px 0;
    background: linear-gradient(180deg, #1a1a1a 0%, #1f1f1f 100%);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 12px;
    border-bottom: 2px solid #333;
}

.section-header h2 {
    font-family: 'Exo 2', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.view-all {
    font-size: 12px;
    color: #888;
    font-weight: 600;
}

.view-all:hover {
    color: #ff9900;
}

/* Game Cards Grid */
.games-grid {
    display: flex;
    gap: 20px;
}

.game-card {
    flex: 1;
    background: #222;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
    transition: all 0.3s;
    border: 1px solid #333;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.5);
    border-color: #ff9900;
}

.game-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.game-card-image {
    position: relative;
    height: 160px;
    overflow: hidden;
}

.game-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
}

.game-card:hover .game-card-image img {
    transform: scale(1.08);
}

/* Hover Overlay */
.game-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.game-card:hover .game-card-overlay {
    opacity: 1;
}

.overlay-play {
    font-family: 'Exo 2', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
    padding: 10px 20px;
    border: 2px solid #ff9900;
    border-radius: 5px;
    background: rgba(255,153,0,0.2);
}

/* Status Badge on Card */
.game-status-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 3px 10px;
    border-radius: 3px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
    z-index: 5;
}

.status-online {
    background: #4CAF50;
    box-shadow: 0 0 6px rgba(76,175,80,0.5);
}

.status-dev {
    background: #FF9800;
}

.status-soon {
    background: #666;
}

/* Card Info */
.game-card-info {
    padding: 14px;
}

.game-card-info h3 {
    font-family: 'Exo 2', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.game-tags {
    display: flex;
    gap: 5px;
    margin-bottom: 8px;
}

.tag {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
}

.tag-mmorpg { background: #7B1FA2; }
.tag-moba { background: #C62828; }
.tag-sandbox { background: #2E7D32; }
.tag-free { background: transparent; border: 1px solid #ff9900; color: #ff9900; }

.game-platforms {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.platform {
    font-size: 11px;
    color: #888;
}

/* === INFO SECTION (3 columns) === */
#info-section {
    padding: 40px 0;
    background: #1a1a1a;
}

.info-grid {
    display: flex;
    gap: 25px;
}

.info-col {
    flex: 1;
    background: #222;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #333;
}

.info-col-header {
    background: linear-gradient(180deg, #333 0%, #2a2a2a 100%);
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #ff9900;
}

.info-col-header h3 {
    font-family: 'Exo 2', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1.5px;
}

.more-btn {
    font-size: 11px;
    color: #888;
}

.more-btn:hover {
    color: #ff9900;
}

/* News List */
.news-list {
    list-style: none;
    padding: 0;
}

.news-list li {
    display: flex;
    gap: 10px;
    padding: 10px 14px;
    border-bottom: 1px solid #2a2a2a;
    transition: background 0.15s;
}

.news-list li:last-child {
    border-bottom: none;
}

.news-list li:hover {
    background: #2a2a2a;
}

.news-date {
    flex-shrink: 0;
    width: 45px;
    font-size: 10px;
    font-weight: 700;
    color: #666;
    line-height: 1.8;
    text-align: center;
}

.news-content {
    flex: 1;
}

.news-badge {
    display: inline-block;
    padding: 1px 6px;
    border-radius: 2px;
    font-size: 9px;
    font-weight: 700;
    color: #fff;
    margin-right: 4px;
    vertical-align: middle;
}

.nb-new { background: #f44336; }
.nb-update { background: #ff9800; }
.nb-event { background: #4CAF50; }

.news-content a {
    color: #ccc;
    font-size: 12px;
    line-height: 1.4;
}

.news-content a:hover {
    color: #ff9900;
}

/* Community */
.community-content {
    padding: 10px;
}

.social-row {
    margin-bottom: 8px;
}

.social-big-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 6px;
    color: #fff;
    text-decoration: none;
    transition: all 0.2s;
}

.social-big-btn:hover {
    transform: translateX(3px);
    color: #fff;
}

.social-icon {
    font-size: 20px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    flex-shrink: 0;
}

.social-big-btn strong {
    display: block;
    font-size: 13px;
}

.social-big-btn small {
    color: rgba(255,255,255,0.7);
    font-size: 10px;
}

.social-discord { background: linear-gradient(135deg, #5865F2, #454FBF); }
.social-discord:hover { box-shadow: 0 3px 10px rgba(88,101,242,0.4); }

.social-youtube { background: linear-gradient(135deg, #FF0000, #CC0000); }
.social-youtube:hover { box-shadow: 0 3px 10px rgba(255,0,0,0.4); }

.social-twitter { background: linear-gradient(135deg, #1DA1F2, #0D8ECF); }
.social-twitter:hover { box-shadow: 0 3px 10px rgba(29,161,242,0.4); }

.social-forum { background: linear-gradient(135deg, #666, #444); }
.social-forum:hover { box-shadow: 0 3px 10px rgba(102,102,102,0.4); }

/* Server Status Mini */
.server-status-mini {
    margin-top: 12px;
    padding: 12px;
    background: #1a1a1a;
    border-radius: 6px;
    border: 1px solid #333;
}

.server-status-mini h4 {
    font-family: 'Exo 2', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #888;
    letter-spacing: 1px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.status-line {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 0;
    font-size: 12px;
    color: #aaa;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.dot-online {
    background: #4CAF50;
    box-shadow: 0 0 4px rgba(76,175,80,0.6);
    animation: dotPulse 2s ease-in-out infinite;
}

.dot-dev { background: #FF9800; }
.dot-off { background: #666; }

@keyframes dotPulse {
    0%, 100% { box-shadow: 0 0 4px rgba(76,175,80,0.6); }
    50% { box-shadow: 0 0 10px rgba(76,175,80,0.9); }
}

.status-label {
    margin-left: auto;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 2px 6px;
    border-radius: 2px;
}

.sl-online { background: #4CAF50; color: #fff; }
.sl-dev { background: #FF9800; color: #fff; }
.sl-soon { background: #666; color: #fff; }

/* Downloads */
.downloads-content {
    padding: 10px;
}

.dl-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-bottom: 1px solid #2a2a2a;
}

.dl-card:last-of-type {
    border-bottom: none;
}

.dl-card-icon {
    font-size: 22px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #333;
    border-radius: 6px;
    flex-shrink: 0;
}

.dl-card-info {
    flex: 1;
}

.dl-card-info strong {
    display: block;
    color: #fff;
    font-size: 13px;
}

.dl-meta {
    font-size: 10px;
    color: #888;
}

.dl-btn {
    display: inline-block;
    padding: 6px 14px;
    background: linear-gradient(180deg, #ff9900, #cc5500);
    border-radius: 4px;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.2s;
    flex-shrink: 0;
}

.dl-btn:hover {
    background: linear-gradient(180deg, #ffaa33, #dd6600);
    box-shadow: 0 2px 8px rgba(255,153,0,0.4);
    color: #fff;
}

.dl-btn-disabled {
    background: #444;
    color: #888;
    cursor: default;
}

.dl-btn-disabled:hover {
    background: #444;
    box-shadow: none;
    color: #888;
}

/* Store Promo */
.store-promo {
    margin-top: 10px;
    padding: 12px;
    background: linear-gradient(135deg, #2a1a00, #1a1200);
    border: 1px solid #443300;
    border-radius: 6px;
}

.store-promo h4 {
    font-family: 'Exo 2', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #ff9900;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.store-promo-item {
    padding: 5px 0;
    border-bottom: 1px dotted #443300;
    font-size: 12px;
}

.store-promo-item:last-of-type {
    border-bottom: none;
}

.store-promo-item strong {
    color: #ddd;
    display: block;
    margin-bottom: 2px;
}

.promo-price {
    font-size: 11px;
    color: #888;
}

.promo-price del {
    color: #666;
}

.promo-price em {
    color: #ff5500;
    font-style: normal;
    font-weight: 700;
}

.promo-badge {
    display: inline-block;
    background: #ff3300;
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    padding: 1px 5px;
    border-radius: 2px;
    margin-left: 5px;
}

.store-link {
    display: block;
    text-align: center;
    margin-top: 8px;
    font-size: 11px;
    font-weight: 600;
}

/* === SUPPORT / CONTACT === */
#support-section {
    padding: 40px 0;
    background: linear-gradient(180deg, #1f1f1f 0%, #1a1a1a 100%);
}

.support-grid {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.support-info {
    flex: 1;
    padding-right: 10px;
}

.support-info h3 {
    font-family: 'Exo 2', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.support-info p {
    font-size: 13px;
    color: #999;
    line-height: 1.7;
    margin-bottom: 25px;
}

.support-details {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.support-detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: #222;
    border: 1px solid #333;
    border-radius: 6px;
}

.support-icon {
    font-size: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #333;
    border-radius: 6px;
    flex-shrink: 0;
}

.support-detail-item strong {
    display: block;
    color: #fff;
    font-size: 12px;
    margin-bottom: 2px;
}

.support-detail-item span:not(.support-icon) {
    font-size: 12px;
    color: #888;
}

/* Contact Form */
.contact-form {
    flex: 1.5;
    background: #222;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 25px;
}

.form-row {
    display: flex;
    gap: 15px;
}

.form-row .form-group {
    flex: 1;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-family: 'Exo 2', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #aaa;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: #1a1a1a;
    border: 1px solid #444;
    border-radius: 4px;
    color: #ccc;
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    padding: 10px 12px;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #ff9900;
    box-shadow: 0 0 6px rgba(255,153,0,0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #555;
}

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

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23888' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 30px;
}

.contact-submit {
    display: block;
    width: 100%;
    padding: 13px 30px;
    background: linear-gradient(180deg, #ff9900 0%, #e07700 50%, #cc5500 100%);
    border: none;
    border-radius: 5px;
    color: #fff;
    font-family: 'Exo 2', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s;
    box-shadow: 0 3px 10px rgba(255,153,0,0.3);
    margin-top: 5px;
}

.contact-submit:hover {
    background: linear-gradient(180deg, #ffaa33 0%, #ff9900 50%, #dd6600 100%);
    box-shadow: 0 3px 20px rgba(255,153,0,0.5);
    transform: translateY(-1px);
}

/* === FOOTER === */
#main-footer {
    background: linear-gradient(180deg, #111 0%, #0a0a0a 100%);
    border-top: 3px solid #ff9900;
    padding: 40px 0 0;
    margin-top: 40px;
}

.footer-grid {
    display: flex;
    gap: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #222;
}

.footer-col {
    flex: 1;
}

.footer-col:first-child {
    flex: 1.5;
}

.footer-logo {
    height: 35px;
    width: auto;
    filter: brightness(1.3);
    margin-bottom: 12px;
}

.footer-desc {
    font-size: 12px;
    color: #777;
    line-height: 1.6;
}

.footer-col h4 {
    font-family: 'Exo 2', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.footer-col a {
    display: block;
    color: #777;
    font-size: 12px;
    padding: 3px 0;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: #ff9900;
}

.footer-bottom {
    padding: 15px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 11px;
    color: #555;
}

.footer-disclaimer {
    margin-top: 5px;
    font-size: 10px;
    font-style: italic;
    color: #444;
}

/* === SELECTION === */
::selection {
    background: #ff9900;
    color: #fff;
}

/* === SCROLLBAR === */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #111;
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ff9900;
}

/* ============================================
   GAMES PAGE STYLES
   ============================================ */

/* --- Hero Banner --- */
#games-hero {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, #1a0a00 0%, #0f1923 50%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
    border-bottom: 3px solid #ff9900;
}

#games-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(255,153,0,0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 50%, rgba(255,153,0,0.05) 0%, transparent 60%);
}

.games-hero-title {
    font-family: 'Exo 2', sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
    position: relative;
    z-index: 2;
}

.games-hero-sub {
    font-size: 14px;
    color: #888;
    margin-top: 8px;
    position: relative;
    z-index: 2;
}

/* --- Filter Bar --- */
#games-filter-bar {
    background: #222;
    border-bottom: 1px solid #333;
    padding: 12px 0;
}

.filter-bar-inner {
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-label {
    font-family: 'Exo 2', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #666;
    letter-spacing: 1px;
    margin-right: 8px;
}

.filter-btn {
    background: #333;
    border: 1px solid #444;
    color: #aaa;
    font-family: 'Exo 2', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 6px 16px;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.2s;
}

.filter-btn:hover {
    border-color: #ff9900;
    color: #ff9900;
}

.filter-btn.filter-active {
    background: linear-gradient(180deg, #ff9900, #cc5500);
    border-color: #ff9900;
    color: #fff;
    text-shadow: 0 1px 1px rgba(0,0,0,0.3);
}

/* --- Games List --- */
#games-list {
    padding: 40px 0;
    background: linear-gradient(180deg, #1a1a1a 0%, #1f1f1f 100%);
}

/* --- Game Card (Horizontal) --- */
.gp-game-card {
    display: flex;
    background: #222;
    border: 1px solid #333;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
    margin-bottom: 30px;
    transition: all 0.3s;
}

.gp-game-card:hover {
    border-color: #ff9900;
    box-shadow: 0 8px 30px rgba(0,0,0,0.5), 0 0 15px rgba(255,153,0,0.1);
    transform: translateY(-3px);
}

/* --- Visual / Image Side --- */
.gp-game-card-visual {
    position: relative;
    width: 420px;
    min-height: 280px;
    flex-shrink: 0;
    overflow: hidden;
    perspective: 800px;
}

/* --- 3D Flip Effect --- */
.gp-card-flipper {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
    transform-style: preserve-3d;
}

.gp-game-card-visual:hover .gp-card-flipper {
    transform: rotateY(180deg);
}

.gp-card-front,
.gp-card-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.gp-card-front img,
.gp-card-back img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gp-card-front {
    z-index: 2;
}

.gp-card-back {
    transform: rotateY(180deg);
    z-index: 1;
}

.gp-card-back-label {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(0,0,0,0.7);
    color: #ff9900;
    font-family: 'Exo 2', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 4px 12px;
    border-radius: 3px;
    border: 1px solid rgba(255,153,0,0.3);
}

.gp-game-card-visual .game-status-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10;
}

/* --- Details Side --- */
.gp-game-card-details {
    flex: 1;
    padding: 25px 30px;
    display: flex;
    flex-direction: column;
}

.gp-game-title {
    font-family: 'Exo 2', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.gp-game-desc {
    font-size: 13px;
    color: #999;
    line-height: 1.7;
    margin-bottom: 15px;
}

.gp-game-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
}

/* --- Screenshot Thumbnails --- */
.gp-game-screenshots h4 {
    font-family: 'Exo 2', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #666;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.gp-screenshots-row {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
}

.gp-screenshot-thumb {
    width: 100px;
    height: 60px;
    border-radius: 4px;
    overflow: hidden;
    border: 2px solid #333;
    cursor: pointer;
    transition: all 0.2s;
}

.gp-screenshot-thumb:hover {
    border-color: #ff9900;
    box-shadow: 0 0 8px rgba(255,153,0,0.3);
}

.gp-screenshot-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* --- Action Buttons --- */
.gp-game-actions {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 12px;
}
