/* ============================================================
   GLOBAL
============================================================ */

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    min-height: 100%;
    background: #000;
    font-family: Arial, sans-serif;
    color: #ddd;
}

/* ============================================================
   LOGIN PAGE
============================================================ */

.login-page * {
    box-sizing: border-box;
}

.login-page .top-header {
    height: 70px;
    width: 100%;
    background: rgba(0,0,0,0.85);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    padding: 0 25px;
}

.login-page .top-header .logo {
    height: 50px;
}

.login-page .btn-signup,
.login-page .btn-login-top {
    background: #63e863;
    border: 1px solid #63e863;
    color: #000;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 6px;
    margin-left: 10px;
}

.login-page .login-banner-image {
    width: 100%;
    height: 160px;
    object-fit: cover;
    object-position: center 30%;
}

.login-page .login-content-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 120px;
    padding: 0 40px;
}

.login-page .login-info-section {
    max-width: 520px;
    color: #ddd;
    padding-right: 40px;
}

.login-page .login-info-section h1 {
    color: #63e863;
    font-weight: 700;
}

.login-page .login-badge {
    background: rgba(0,0,0,0.6);
    padding: 6px 12px;
    border-radius: 6px;
    color: #63e863;
    font-weight: 600;
}

.login-page .login-form-section {
    flex: 0 0 360px;
    background: rgba(20, 30, 30, 0.95);
    padding: 35px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
}

.login-page .form-control {
    background: #1a1a1a;
    border: 1px solid #333;
    color: #eee;
    border-radius: 6px;
    margin-bottom: 12px;
}

.login-page .btn-login {
    width: 100%;
    background: #63e863;
    border: 1px solid #63e863;
    color: #000;
    font-weight: 700;
    padding: 10px;
    border-radius: 6px;
}

/* ============================================================
   GAME PAGE
============================================================ */

.game-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: url('/themes/themeBuilder/images/achtergrond.jpg') no-repeat center center fixed;
    background-size: cover;
    position: relative;
}

/* Cinematic vignette */
.game-page::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle, rgba(0,0,0,0) 40%, rgba(0,0,0,0.75) 100%),
        url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAADUlEQVQIW2NkYGD4DwABBAEAe7YQDgAAAABJRU5ErkJggg==');
    background-size: cover;
    opacity: 0.9;
    pointer-events: none;
    z-index: -1;
}

.game-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
    margin-top: 20px;
}

/* ============================================================
   SIDEBARS (STRIKT & CINEMATIC)
============================================================ */

.side-bar {
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(6px);
    border-radius: 8px;
    padding: 12px 14px;
    border: 1px solid rgba(255,255,255,0.08);
}

/* Card wrapper */
.side-bar .card {
    background: rgba(0,0,0,0.35);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 8px;
    margin-bottom: 14px;
    overflow: hidden;
}

/* Card header */
.side-bar .card-header {
    background: rgba(0,0,0,0.45);
    padding: 10px 14px;
    font-weight: 700;
    color: #63e863;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    letter-spacing: 0.5px;
}

/* Card body */
.side-bar .card-body {
    padding: 10px 14px;
}

/* ============================================================
   GAME AREA
============================================================ */

.game-area {
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    padding: 20px;
    flex-grow: 1;
    max-width: 900px;
}

.game-area .card {
    background: transparent;
    box-shadow: none;
}

/* ============================================================
   NAVIGATION MENU (STRIKT & MODERN)
============================================================ */

.navigation-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.navigation-menu > li {
    margin-bottom: 6px;
}

.navigation-menu > li > a {
    display: block;
    padding: 6px 0;
    font-size: 15px;
    font-weight: 700;
    color: #63e863;
    text-decoration: none;
    letter-spacing: 0.3px;
}

/* Submenu */
.navigation-menu ul {
    margin: 4px 0 8px 0;
    padding-left: 12px;
    border-left: 1px solid rgba(255,255,255,0.08);
}

.navigation-menu ul li a {
    padding: 4px 0;
    font-size: 14px;
    color: #ccc;
    opacity: 0.85;
    transition: 0.15s ease;
}

.navigation-menu ul li a:hover {
    color: #63e863;
    opacity: 1;
    transform: translateX(3px);
}

/* ============================================================
   BUTTONS
============================================================ */

.blue-button {
    background: #63e863;
    color: #000;
    padding: 8px 14px;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
}

.blue-button:hover {
    background: #7bff7b;
}

/* ============================================================
   NEWS TICKER
============================================================ */

.ticker-container {
    width: 100%;
    height: 40px;
    overflow: hidden;
    white-space: nowrap;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(4px);
    border-bottom: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    position: relative;
    margin: 15px 0;
    border-radius: 5px;
}

.ticker-text {
    display: inline-block;
    white-space: nowrap;
    position: absolute;
    left: 100%;
    font-size: 18px;
    color: #27ae60;
    font-weight: bold;
    padding-left: 20px;
    text-shadow: 0 0 6px #27ae60;
    animation: tickerMove 30s linear infinite;
}

@keyframes tickerMove {
    0% { transform: translateX(0); }
    100% { transform: translateX(-2000px); }
}

/* ============================================================
   PLAYER STATS
============================================================ */

.player-stats {
    display: flex;
    gap: 25px;
    align-items: center;
}

.player-stats .stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.player-stats .stat-content {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

/* ============================================================
   RESPONSIVE
============================================================ */

@media (max-width: 992px) {
    .login-page .login-content-wrapper {
        flex-direction: column;
        gap: 40px;
        padding: 0 20px;
    }

    .login-page .login-info-section {
        padding-right: 0;
        text-align: center;
    }
}
