/* ============================================================
   HYBRID VISTA AERO + FRUTIGER AERO THEME
   Upgraded for WinGamer Company
   ============================================================ */

/* Background slideshow */
body {
    animation: bgChange 40s infinite alternate;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    font-family: "Segoe UI", Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;

    /* Frutiger Aero glow */
    box-shadow: inset 0 0 200px rgba(0, 255, 255, 0.15);
}

/* Keyframes */
@keyframes bgChange {
    0%   { background-image: url('https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQwQRk4DefGgVq_JX18ZLdIsfhoqBhyXCW2gICXBVRLjg&s=10'); }
    33%  { background-image: url('https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcT17dF0A-YvGVuy6zJseRIji_W0cLBJW-w7aw27av0y1w&s=10'); }
    66%  { background-image: url('https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTjEoZqFZ28rfSCNhCPWBNPAyTGNRgNkFTSrjWbc6SmRQ&s=10'); }
    100% { background-image: url('https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQ7ni__di-HVzz47tYMVHUfhSmbzw3UPM31y3F58lP8Fw&s=10'); }
}

/* ============================================================
   GLASS PANELS (Login, Register, Content Boxes)
   ============================================================ */

.login-box,
.content-box {
    background: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(14px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.45);

    /* Vista + Frutiger glow */
    box-shadow:
        0 0 25px rgba(255, 255, 255, 0.4),
        0 0 40px rgba(0, 255, 255, 0.15),
        inset 0 0 20px rgba(255, 255, 255, 0.2);

    border-radius: 14px;
    padding: 30px;
    margin: 40px auto;
    width: 80%;
    color: #000;
}

/* Login box is smaller */
.login-box {
    width: 320px;
    margin-top: 100px;
    color: white;
}

/* ============================================================
   INPUTS — Gel Style
   ============================================================ */

.login-box input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;

    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 10px;

    /* Gel inner glow */
    box-shadow:
        inset 0 0 8px rgba(255, 255, 255, 0.6),
        0 0 8px rgba(0, 255, 255, 0.2);

    color: white;
    font-size: 16px;
}

.login-box input:focus {
    outline: none;
    box-shadow:
        inset 0 0 10px rgba(255, 255, 255, 0.8),
        0 0 12px rgba(0, 200, 255, 0.6);
}

/* ============================================================
   BUTTONS — Vista Gel Buttons
   ============================================================ */

.login-box button {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 25px;

    background: linear-gradient(to bottom, #ffffff, #d0d7e2);
    color: #5a2fff;
    font-weight: bold;
    cursor: pointer;

    box-shadow:
        0 0 10px rgba(255, 255, 255, 0.6),
        inset 0 0 6px rgba(255, 255, 255, 0.8);

    transition: 0.3s;
}

.login-box button:hover {
    background: linear-gradient(to bottom, #e8e8ff, #c0c8ff);
    transform: scale(1.05);
}

/* ============================================================
   NAVBAR — Vista Glass + Frutiger Glow
   ============================================================ */

.navbar {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.45);

    box-shadow:
        0 0 20px rgba(255, 255, 255, 0.4),
        0 0 40px rgba(0, 255, 255, 0.2);

    padding: 12px;
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    border-radius: 10px;
}

.navbar a {
    color: white;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.navbar a:hover {
    text-shadow: 0 0 8px cyan;
    transform: scale(1.15);
}

/* Logout button */
.logout-btn {
    background: linear-gradient(to bottom, #ff6b6b, #c0392b);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 8px;
    cursor: pointer;

    box-shadow: 0 0 10px rgba(255, 0, 0, 0.4);
}

.logout-btn:hover {
    filter: brightness(1.2);
}

/* ============================================================
   BANNER — Vista Glass + Reflection
   ============================================================ */

.banner {
    position: relative;
    background: linear-gradient(
        to bottom right,
        rgba(111,179,224,0.45),
        rgba(58,123,213,0.45)
    );
    padding: 40px;
    color: white;

    border-radius: 12px;
    backdrop-filter: blur(14px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.45);

    box-shadow:
        0 0 25px rgba(255, 255, 255, 0.5),
        0 0 40px rgba(0, 255, 255, 0.2);
}

/* Shine strip */
.banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 45%;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
    border-radius: 12px 12px 0 0;
    pointer-events: none;
}

/* Reflection */
.banner h1 {
    font-size: 48px;
    position: relative;
}

.banner h1::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    transform: scaleY(-1);
    opacity: 0.35;
    background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
    -webkit-mask-image: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
}

/* ============================================================
   TITLEBAR BUTTONS — Enhanced Vista Style
   ============================================================ */

.titlebar {
    position: absolute;
    top: 8px;
    right: 10px;
    display: flex;
    gap: 6px;
}

.titlebar button {
    width: 26px;
    height: 26px;
    border: none;
    border-radius: 6px;

    background: linear-gradient(to bottom, #ffffff, #b0c4de);
    box-shadow:
        inset 0 0 4px rgba(255,255,255,0.8),
        0 0 4px rgba(0,0,0,0.4);

    cursor: pointer;
}

.titlebar .close {
    background: linear-gradient(to bottom, #ff7b7b, #c0392b);
}

.titlebar .maximize {
    background: linear-gradient(to bottom, #7bff7b, #2e8b57);
}

.titlebar .minimize {
    background: linear-gradient(to bottom, #ffd27b, #b8860b);
}

.titlebar button:hover {
    filter: brightness(1.25);
}

/* ============================================================
   GLOBAL TRANSITIONS
   ============================================================ */

* {
    transition: 0.25s ease;
}

