* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --background: #020b1c;
    --navy: #071d4b;
    --panel: #08285f;
    --blue: #087dff;
    --cyan: #00e5ff;
    --text: #ffffff;
    --muted: #9bb9e9;
    --border: rgba(0, 157, 255, 0.75);
}

body {
    min-height: 100vh;
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
    background-color: var(--background);

    background-image:
        linear-gradient(rgba(0, 130, 255, 0.13) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 130, 255, 0.13) 1px, transparent 1px),
        radial-gradient(circle at center, rgba(0, 84, 255, 0.22), transparent 48%);

    background-size:
        48px 48px,
        48px 48px,
        100% 100%;
}

/* NAVBAR */

.navbar {
    min-height: 66px;
    width: 100%;
    padding: 0 38px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: rgba(5, 27, 70, 0.96);
    border-bottom: 1px solid rgba(0, 157, 255, 0.8);
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;

    color: white;
    text-decoration: none;
    font-size: 24px;
    font-weight: 800;
}

.brand b,
.intro-brand b,
.intro-panel h1 span,
.form-panel h2 span {
    color: var(--cyan);
}

.brand-icon {
    width: 43px;
    height: 43px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #00aaff;
    border-radius: 12px;

    background: linear-gradient(145deg, #087fff, #063b9c);
    box-shadow: 0 0 20px rgba(0, 151, 255, 0.45);

    font-size: 24px;
}

.nav-menu {
    display: flex;
    gap: 48px;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    transition: 0.3s;
}

.nav-menu a:hover {
    color: var(--cyan);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 9px;
}

.language,
.theme-button {
    min-width: 42px;
    height: 37px;

    border: 1px solid #1478d8;
    border-radius: 10px;

    color: white;
    background: transparent;

    font-weight: bold;
    cursor: pointer;
}

.language.active {
    background: linear-gradient(135deg, #159cff, #1769e8);
}

.theme-button {
    font-size: 22px;
}

/* HALAMAN */

.page-container {
    min-height: calc(100vh - 66px);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 64px 24px;
}

/* KARTU LOGIN */

.login-wrapper {
    width: 1090px;
    max-width: 100%;

    display: grid;
    grid-template-columns: 1fr 1fr;

    overflow: hidden;

    border: 1px solid #00aaff;
    border-radius: 22px;

    background: #061d4a;
    box-shadow:
        0 0 25px rgba(0, 116, 255, 0.25),
        0 0 80px rgba(0, 83, 255, 0.2);
}

/* PANEL KIRI */

.intro-panel {
    position: relative;
    padding: 38px 34px;

    text-align: center;

    background:
        linear-gradient(135deg, rgba(0, 130, 255, 0.95), rgba(6, 49, 133, 0.9)),
        repeating-linear-gradient(
            135deg,
            transparent 0,
            transparent 24px,
            rgba(255, 255, 255, 0.06) 25px,
            transparent 26px
        );
}

.intro-brand {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;

    font-size: 23px;
    font-weight: 800;
}

.gamepad-image {
    margin: 32px auto 12px;

    width: 230px;
    height: 130px;

    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 100px;

    filter:
        drop-shadow(0 0 10px #00d9ff)
        drop-shadow(0 0 25px #008cff);
}

.intro-panel h1 {
    font-size: 40px;
    margin-top: 12px;
}

.intro-subtitle {
    margin-top: 8px;
    font-size: 17px;
    color: #e2f2ff;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 24px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;

    text-align: left;

    padding: 12px 15px;

    border: 1px solid rgba(0, 207, 255, 0.65);
    border-radius: 13px;

    background: rgba(5, 102, 220, 0.55);
}

.feature-icon {
    width: 42px;
    height: 42px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: linear-gradient(145deg, #0dbbff, #0875ef);
    font-size: 23px;
}

.feature-item h3 {
    font-size: 14px;
    margin-bottom: 5px;
}

.feature-item p {
    color: #d5eaff;
    font-size: 12px;
}

/* PANEL KANAN */

.form-panel {
    padding: 58px 45px;
    background: linear-gradient(145deg, #092b66, #041738);
}

.form-logo {
    width: 51px;
    height: 51px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #00baff;
    border-radius: 13px;

    background: linear-gradient(145deg, #078dff, #063e9e);
    box-shadow: 0 0 20px rgba(0, 165, 255, 0.35);

    font-size: 27px;
    margin-bottom: 17px;
}

.form-panel h2 {
    font-size: 29px;
    margin-bottom: 7px;
}

.form-description {
    color: #a8c7f5;
    font-size: 14px;
    margin-bottom: 28px;
}

form label {
    display: block;
    margin-bottom: 9px;

    font-size: 14px;
    font-weight: bold;
}

.input-group {
    display: flex;
    align-items: center;
    gap: 12px;

    height: 50px;
    margin-bottom: 17px;
    padding: 0 15px;

    border: 1px solid #087bdc;
    border-radius: 12px;

    background: rgba(3, 32, 83, 0.8);

    transition: 0.3s;
}

.input-group:focus-within {
    border-color: var(--cyan);
    box-shadow: 0 0 13px rgba(0, 215, 255, 0.25);
}

.input-group > span {
    color: #b9d8ff;
    font-size: 20px;
}

.input-group input {
    width: 100%;
    min-width: 0;

    border: none;
    outline: none;

    color: white;
    background: transparent;

    font-size: 14px;
}

.input-group input::placeholder {
    color: #83a8df;
}

.show-password {
    border: none;
    color: #b9d8ff;
    background: transparent;
    cursor: pointer;
    font-size: 18px;
}

/* OPSI FORM */

.form-options {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 12px;
    margin: 3px 0 26px;
}

.remember {
    display: flex;
    align-items: center;
    gap: 8px;

    color: #c8dcfa;
    font-size: 13px;
    font-weight: normal;
    margin: 0;
}

.remember input {
    width: 18px;
    height: 18px;
    accent-color: #079cff;
}

.forgot-password,
.register-text a {
    color: var(--cyan);
    text-decoration: underline;
    font-size: 13px;
}

/* TOMBOL LOGIN */

.login-button {
    width: 100%;
    height: 52px;

    border: none;
    border-radius: 12px;

    color: white;
    background: linear-gradient(100deg, #09b7f5, #1466f5);

    font-size: 15px;
    font-weight: bold;

    cursor: pointer;

    box-shadow: 0 8px 20px rgba(0, 119, 255, 0.28);
    transition: 0.3s;
}

.login-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(0, 187, 255, 0.45);
}

/* PEMBATAS */

.divider {
    display: flex;
    align-items: center;
    gap: 14px;

    margin: 27px 0;
    color: #9db8e1;
    font-size: 14px;
}

.divider::before,
.divider::after {
    content: "";
    height: 1px;
    flex: 1;
    background: rgba(129, 169, 226, 0.4);
}

.register-text {
    color: #b9d0f2;
    text-align: center;
    font-size: 14px;
}

/* RESPONSIVE */

@media (max-width: 900px) {
    .navbar {
        padding: 0 20px;
    }

    .nav-menu {
        gap: 18px;
    }

    .login-wrapper {
        grid-template-columns: 1fr;
        max-width: 560px;
    }

    .intro-panel {
        padding: 30px 25px;
    }

    .gamepad-image {
        margin-top: 20px;
        height: 90px;
        font-size: 75px;
    }

    .intro-panel h1 {
        font-size: 32px;
    }

    .form-panel {
        padding: 38px 30px;
    }
}

@media (max-width: 600px) {
    .navbar {
        min-height: auto;
        padding: 14px 16px;
        flex-wrap: wrap;
        gap: 14px;
    }

    .brand {
        font-size: 20px;
    }

    .brand-icon {
        width: 38px;
        height: 38px;
        font-size: 20px;
    }

    .nav-menu {
        order: 3;
        width: 100%;
        justify-content: center;
    }

    .nav-actions {
        margin-left: auto;
    }

    .page-container {
        padding: 25px 14px;
    }

    .login-wrapper {
        border-radius: 15px;
    }

    .intro-panel,
    .form-panel {
        padding: 28px 22px;
    }

    .form-panel h2 {
        font-size: 25px;
    }

    .form-options {
        align-items: flex-start;
        flex-direction: column;
    }

    .forgot-password {
        align-self: flex-end;
    }
}/* REGISTER */

.form-panel form {
    width: 100%;
}

.form-panel form input {
    font-family: Arial, Helvetica, sans-serif;
}

.form-panel form button {
    font-family: Arial, Helvetica, sans-serif;
}

.form-panel h2 span {
    color: #00e5ff;
}

.form-panel a {
    color: #00e5ff;
}

.form-panel a:hover {
    color: #ffffff;
}

@media (max-width: 900px) {
    .login-wrapper {
        grid-template-columns: 1fr;
    }

    .intro-panel {
        display: block;
    }
}/* HALAMAN VERIFIKASI EMAIL */

.verify-page {
    min-height: calc(100vh - 66px);
    padding: 60px 20px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.verify-card {
    width: 480px;
    max-width: 100%;

    padding: 42px 38px;

    text-align: center;

    border: 1px solid #008cff;
    border-radius: 22px;

    background:
        linear-gradient(
            145deg,
            rgba(9, 43, 102, 0.98),
            rgba(3, 20, 51, 0.98)
        );

    box-shadow:
        0 0 25px rgba(0, 128, 255, 0.18),
        inset 0 0 25px rgba(0, 128, 255, 0.04);
}

.verify-icon {
    width: 76px;
    height: 76px;

    margin: 0 auto 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #00bfff;
    border-radius: 20px;

    font-size: 38px;

    background: linear-gradient(145deg, #078fff, #063c91);

    box-shadow: 0 0 20px rgba(0, 174, 255, 0.3);
}

.verify-card h1 {
    margin-bottom: 12px;

    color: #ffffff;
    font-size: 32px;
    font-weight: 800;
}

.verify-card h1 span {
    color: #00e5ff;
}

.verify-description {
    margin-bottom: 24px;

    color: #b8d7ff;
    font-size: 15px;
    line-height: 1.6;
}

.verify-info {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 25px;
    padding: 13px 15px;

    text-align: left;

    border: 1px solid rgba(0, 174, 255, 0.35);
    border-radius: 12px;

    background: rgba(0, 116, 255, 0.09);
}

.verify-info span {
    font-size: 22px;
}

.verify-info p {
    color: #c7e3ff;
    font-size: 13px;
    line-height: 1.5;
}

.verify-info strong {
    color: #00e5ff;
}

.verify-card form {
    text-align: left;
}

.verify-card label {
    display: block;
    margin-bottom: 9px;

    color: #ffffff;
    font-size: 14px;
    font-weight: bold;
}

.otp-input {
    width: 100%;
    height: 62px;

    padding: 0 15px;

    border: 1px solid #078cff;
    border-radius: 12px;

    outline: none;

    color: #ffffff;
    background: #031b45;

    font-size: 25px;
    font-weight: bold;
    letter-spacing: 9px;
    text-align: center;

    transition: 0.2s;
}

.otp-input::placeholder {
    color: #7197c9;
    font-size: 14px;
    letter-spacing: 0;
    font-weight: normal;
}

.otp-input:focus {
    border-color: #00e5ff;
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.25);
}

.verify-button {
    width: 100%;
    height: 52px;

    margin-top: 20px;

    border: none;
    border-radius: 12px;

    color: #ffffff;
    background: linear-gradient(100deg, #08b8f5, #1468f5);

    font-size: 15px;
    font-weight: bold;

    cursor: pointer;

    transition: 0.2s;
}

.verify-button:hover {
    transform: translateY(-2px);

    box-shadow:
        0 8px 20px rgba(0, 128, 255, 0.35);
}

.verify-help,
.back-login {
    margin-top: 22px;

    color: #b9d5f5;
    font-size: 14px;
}

.back-login {
    margin-top: 12px;
}

.verify-card a {
    color: #00e5ff;
    text-decoration: none;
    font-weight: bold;
}

.verify-card a:hover {
    color: #ffffff;
    text-decoration: underline;
}

@media (max-width: 600px) {
    .verify-page {
        padding: 30px 15px;
    }

    .verify-card {
        padding: 32px 22px;
    }

    .verify-card h1 {
        font-size: 27px;
    }

    .otp-input {
        letter-spacing: 6px;
    }
}.home-page {
    min-height: calc(100vh - 66px);
    padding: 70px 20px;

    display: flex;
    justify-content: center;
    align-items: center;
}

.welcome-card {
    width: 900px;
    max-width: 100%;

    padding: 45px;

    text-align: center;

    border: 1px solid #008cff;
    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            rgba(9, 48, 112, 0.98),
            rgba(3, 20, 51, 0.98)
        );

    box-shadow:
        0 0 30px rgba(0, 140, 255, 0.22),
        inset 0 0 30px rgba(0, 140, 255, 0.04);
}

.welcome-icon {
    width: 90px;
    height: 90px;

    margin: 0 auto 24px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #00c8ff;
    border-radius: 22px;

    font-size: 45px;

    background: linear-gradient(145deg, #078fff, #063c91);

    box-shadow: 0 0 25px rgba(0, 190, 255, 0.3);
}

.welcome-card h1 {
    color: #ffffff;
    font-size: 34px;
    margin-bottom: 15px;
}

.welcome-card h1 span {
    color: #00e5ff;
}

.welcome-card p {
    color: #bcd9ff;
    line-height: 1.6;
}

.user-email {
    display: inline-block;
    margin-top: 8px;

    color: #00e5ff;
    font-size: 18px;
}

.game-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;

    margin-top: 35px;
}

.feature-box {
    padding: 24px 15px;

    border: 1px solid rgba(0, 174, 255, 0.5);
    border-radius: 15px;

    background: rgba(0, 120, 255, 0.1);
}

.feature-box span {
    font-size: 30px;
}

.feature-box h3 {
    color: #ffffff;
    margin: 12px 0 8px;
}

.feature-box p {
    margin: 0;
    font-size: 13px;
}

.logout-button {
    display: inline-block;

    padding: 10px 17px;

    border: 1px solid #00bfff;
    border-radius: 9px;

    color: #ffffff;
    background: #0879df;

    text-decoration: none;
    font-weight: bold;
}

.logout-button:hover {
    background: #00a9f5;
}

@media (max-width: 700px) {
    .welcome-card {
        padding: 30px 20px;
    }

    .welcome-card h1 {
        font-size: 27px;
    }

    .game-features {
        grid-template-columns: 1fr;
    }
}.btn-logout {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(135deg, #08bdfd, #1769ff);
    color: white;
    text-decoration: none;
    border: 1px solid #00bfff;
    border-radius: 10px;
    font-weight: 700;
    transition: 0.3s;
}

.btn-logout:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(0, 191, 255, 0.6);
}