﻿@import url('https://fonts.googleapis.com/css2?family=Ancizar+Serif:ital,wght@0,300..900;1,300..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

/* body */
body.login-page, body.register-page, body.forgot-page, body.change-page-n, body.role-change-view{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-image: url('img/bkg.jpg');
    background-size: cover;
    background-position: center;
}
body.home-page, body.myaccount-page, body.games-page{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f8f9fa;
    color: #1a1a1a;
    line-height: 1.6;
    flex-direction: column;
    margin: 0;
    overflow-x: hidden;
}








/* general wrapper/bar */
.wrapper-login, .wrapper-register, .wrapper-forgot, .wrapper-change-password, .wrapper-change{
    width: 420px;
    background: transparent;
    color: white;
    border-radius: 10px;
    padding: 30px 40px;
}

/* Override width for change page only (adjusts width, not height) */
.wrapper-change{
    width: 520px;
}
.wrapper-home, .wrapper-myaccount{
    width: 420px;
    background: transparent;
    color: black;
    border-radius: 10px;
    padding: 30px 40px;
}
/* h1 */
.wrapper-login h1, .wrapper-register h1{
    font-size: 36px;
    text-align: center;
}
/* general input-box */
.wrapper-login .input-box, .wrapper-register .input-box, .wrapper-forgot .input-box, .wrapper-change-password .input-box{
    position: relative;
    margin: 10px 0;
    width: 100%;
    height: 50px;
    margin: 30px 0;
}
/* input-box inside selectors */
.input-box input{
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    outline: none;
    border: 2px solid rgb(255,255,255, .2);
    border-radius: 40px;
    font-size: 16px;
    color: white;
    padding: 20px 45px 20px 20px;
}
.input-box input::placeholder{
    color: white;
}
.input-box i{
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
}
/* remember-forgot selectors */
.wrapper-login .remember-forgot{
    display: flex;
    justify-content: space-between;
    font-size: 14.5px;
    margin: -15px 0 15px;
}
.remember-forgot .remember{
    accent-color: white;
    cursor: pointer;
}
.remember-forgot label input{
    accent-color: white;
    margin-right: 3px;
}
.remember-forgot a{
    color: white;
    text-decoration: none;
}
.remember-forgot a:hover{
    text-decoration: underline;
}
/* buttons */
.wrapper-login .btn, .wrapper-register .btn, .wrapper-forgot .btn, .wrapper-change-password .btn{
    width: 100%;
    height: 45px;
    background: white;
    border: none;
    outline: none;
    border-radius: 40px;
    box-shadow: 0 0 10px rgb(0,0,0, .1);
    cursor: pointer;
    font-size: 16px;
    color: #333;
    font-weight: 600;
}
.wrapper-home .btn{
    width: 45%;
    height: 45px;
    background: white;
    border: none;
    outline: none;
    border-radius: 40px;
    box-shadow: 0 0 10px rgb(0,0,0, .1);
    cursor: pointer;
    font-size: 16px;
    color: black;
    font-weight: 600;
}
/* specific buttons */
.wrapper-myaccount .btn-home, .wrapper-myaccount .btn-logout{
    width: 35%;
    height: 45px;
    background: white;
    border: none;
    outline: none;
    border-radius: 40px;
    box-shadow: 0 0 10px rgb(0,0,0, .1);
    cursor: pointer;
    font-size: 16px;
    color: black;
    font-weight: 600;
}
.bar .btn-home, .bar .btn-logout, .bar .btn-myaccount{
    width: 100px;
    height: 35px;
    background: transparent;
    border: none;
    outline: none;
    border-radius: 40px;
    box-shadow: 0 0 10px rgb(0,0,0, .1);
    cursor: pointer;
    font-size: 14px;
    color: black;
    font-weight: 600;
}
.wrapper-myaccount .password .btn-show, .wrapper-myaccount .password .btn-change{
    width: 50%;
    height: 30px;
    background: white;
    border: none;
    outline: none;
    border-radius: 40px;
    box-shadow: 0 0 10px rgb(0,0,0, .1);
    cursor: pointer;
    font-size: 14px;
    color: black;
    font-weight: 600;
    margin-top: 10px;
}
/* texts */
.wrapper-myaccount .account-info{
    margin: 20px 0;
    font-size: 16px;
}
.wrapper-home .text#intro-title{
    margin: 20px 0;
    margin-top: 50px;
    font-size: 22px;
    color: rgb(24, 0, 130);
    text-decoration-line: underline;
    text-decoration-style: dashed;
    text-decoration-color: rgb(24, 0, 130);
    text-decoration-thickness: 2px;
    white-space: nowrap;
}
.wrapper-home .text#introduction{
    text-justify: center;
    text-align: justify;
    width: 60vw;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}
.footer{
    position: bottom;
    left: 0;
    bottom: 0;
    z-index: 1000;
    width: 100%;
    background-color: #333;
    color: white;
    text-align: center;
    padding: 6px 0;
    font-size: 11px;
    line-height: 1.2;
    margin-top: auto;
    margin-left: 0px;
    margin-right: 0px;
    border: none;
}
.footer p {
    margin: 0;
}
/* links */
.wrapper-login .register-link, .wrapper-register .login-link, .wrapper-forgot .login-link{
    font-size: 14.5px;
    text-align: center;
    margin: 20px 0 15px;
}
.register-link p a, .login-link p a{
    color: white;
    text-decoration: none;
    font-weight: 600;
}
.register-link p a:hover, .login-link p a:hover{
    text-decoration: underline;
}








/* new login */
.wrapper-login {
    background: rgba(255, 255, 255, 0.1); /* Frosted glass effect */
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    color: white;
}
.login-header {
    text-align: center;
    margin-bottom: 30px;
}
.login-header p {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
    color: #4f46e5; /* Electric blue accent */
    margin-top: 5px;
}
/* Enhancing Input Boxes */
.wrapper-login .input-box input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: 0.3s;
}
.wrapper-login .input-box input:focus {
    border-color: #4f46e5;
    box-shadow: 0 0 10px rgba(79, 70, 229, 0.4);
}
/* Login Button Styling */
.wrapper-login .btn {
    background: #4f46e5; /* Blue to match the home accent */
    color: white;
    border: none;
    transition: transform 0.2s, background 0.3s;
}
.wrapper-login .btn:hover {
    background: #3730a3;
    transform: translateY(-2px);
}
.wrapper-login .btn a {
    display: block;
    width: 100%;
    height: 100%;
    line-height: 45px; /* Centers text vertically */
}
/* Register Link Accent */
.register-link p a {
    color: #4f46e5 !important;
}








/* new register */
.wrapper-register {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    color: white;
    width: 420px;
    border-radius: 10px;
    padding: 30px 40px;
}
.register-header {
    text-align: center;
    margin-bottom: 25px;
}
.register-header p {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
    color: #4f46e5;
    margin-top: 5px;
}
/* input boxes for register */
.wrapper-register .input-box input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    transition: 0.3s;
}
.wrapper-register .input-box input:focus {
    border-color: #4f46e5;
    box-shadow: 0 0 10px rgba(79, 70, 229, 0.4);
}
/* register button */
.wrapper-register .btn {
    background: #4f46e5;
    color: white;
    border: none;
    width: 100%;
    height: 45px;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, background 0.3s;
}
.wrapper-register .btn:hover {
    background: #3730a3;
    transform: translateY(-2px);
}
.wrapper-register .btn a {
    display: block;
    width: 100%;
    height: 100%;
    line-height: 45px;
    text-decoration: none;
    color: inherit;
}
/* links */
.login-link {
    font-size: 14.5px;
    text-align: center;
    margin: 20px 0 15px;
}
.login-link p a {
    color: #4f46e5;
    text-decoration: none;
    font-weight: 600;
}
.login-link p a:hover {
    text-decoration: underline;
}
/* phone input + country prefix */
.phone-box {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 50px;
}
.country-prefix {
    height: 100%;
    padding: 0 10px;
    border-radius: 40px;
    border: 1px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.05);
    color: white;
    outline: none;
    font-size: 14px;
    cursor: pointer;
    backdrop-filter: blur(10px);
    width: 135px;
}
.country-prefix option {
    background: #1a1a1a;
    color: white;
}
.phone-box .phone-number {
    flex: 1;
    height: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 40px;
    padding: 0 20px;
    color: white;
    outline: none;
}
.phone-box .phone-number::placeholder {
    color: rgba(255,255,255,0.7);
}
.phone-box i {
    position: absolute;
    right: 20px;
    font-size: 20px;
    color: white;
}
/* Password Toggle Button â€” moved left of lock icon */
.input-box {
    position: relative;
}
.lock-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}
.toggle-password {
    position: absolute;
    right: 55px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    opacity: 0.7;
    transition: 0.3s;
}
.toggle-password:hover {
    color: #4f46e5;
    opacity: 1;
}








/* new forgot password */
.wrapper-forgot {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    color: white;
    width: 420px;
    border-radius: 10px;
    padding: 30px 40px;
}
.forgot-header {
    text-align: center;
    margin-bottom: 25px;
}
.forgot-header p {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
    color: #4f46e5;
    margin-top: 5px;
}
/* Input Boxes for Forgot Page */
.wrapper-forgot .input-box input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    transition: 0.3s;
}
.wrapper-forgot .input-box input:focus {
    border-color: #4f46e5;
    box-shadow: 0 0 10px rgba(79, 70, 229, 0.4);
}
/* Transmit Button */
.wrapper-forgot .btn {
    background: #4f46e5;
    color: white;
    border: none;
    width: 100%;
    height: 45px;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, background 0.3s;
}
.wrapper-forgot .btn:hover {
    background: #3730a3;
    transform: translateY(-2px);
}
/* Login link on Forgot Page */
.wrapper-forgot .login-link p a {
    color: #4f46e5;
    text-decoration: none;
    font-weight: 600;
}
.wrapper-forgot .login-link p a:hover {
    text-decoration: underline;
}








/* new home */
.container {
    display: grid;
    grid-template-columns: 1.5fr 1fr; /* Text takes more space than the logo */
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 80px;
    align-items: center;
}
body.home-page main.container,
body.admin-page main.container {
    margin-top: 90px;
}
/* The Title */
.welcome-title {
    font-size: 2.2rem;
    color: #180082;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
    white-space: nowrap;
}
.information .blueprint-title, .shipside-logic .shipside-logic-title, .guarantee .guarantee-title, .log-header {
    font-size: 1.5rem;
    color: #180082;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
    white-space: nowrap;
}
.title-underline {
    width: 80px;
    height: 4px;
    background: #180082;
    margin-bottom: 30px;
}
/* Improved Navigation */
.navbar {
    background: rgba(0, 0, 0, 0.92);
    padding: 10px 40px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    transition: max-height 0.35s ease, opacity 0.35s ease;
}
.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    opacity: 0.8;
    transition: color 0.3s, opacity 0.3s;
}
.nav-links a:hover, .nav-links a.active {
    opacity: 1;
    color: #4f46e5; /* Electric blue accent */
}
.nav-toggle, .theme-toggle {
    border: none;
    background: transparent;
    color: #fff;
    cursor: pointer;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    transition: background 0.25s ease, transform 0.2s ease;
}
.nav-toggle:hover, .theme-toggle:hover {
    background: rgba(255,255,255,0.08);
}
.nav-toggle {
    display: none;
}
.theme-toggle {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
}
.theme-toggle.fixed-toggle {
    position: fixed;
    top: 18px;
    right: 20px;
    z-index: 1100;
}
.hero-background {
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background-image:
        radial-gradient(circle at 18% 18%, rgba(79,70,229,0.22), transparent 18%),
        radial-gradient(circle at 82% 24%, rgba(14,165,233,0.18), transparent 16%),
        radial-gradient(circle at 52% 70%, rgba(16,185,129,0.18), transparent 18%);
    filter: blur(10px);
    opacity: 0.86;
    animation: heroGlow 12s ease-in-out infinite alternate;
}
@keyframes heroGlow {
    0% { transform: translate(0,0) scale(1); opacity: 0.8; }
    50% { transform: translate(-10px,-8px) scale(1.02); opacity: 0.95; }
    100% { transform: translate(8px,10px) scale(1); opacity: 0.85; }
}
/* Image styling */
.logo-frame {
    display: inline-block;
    animation: float-logo 6s ease-in-out infinite;
    will-change: transform;
}
.home-page .hero-visual {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 0;
}
.home-page .hero-visual .main-logo {
    width: 100%;
    max-width: 400px;
}
.main-logo {
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.12));
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
    display: block;
    transform: translate3d(var(--offset-x, 0px), var(--offset-y, 0px), 0) rotate(var(--rotate, 0deg));
    transition: transform 0.25s ease-out, box-shadow 0.3s ease;
}
@keyframes float-logo {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
/* Text styling */
.information .description, .introduction .description {
    text-align: justify;
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 20px;
}
.information {
    width: 100%;
    padding: 0;
    grid-column: 1 / -1;
}
/* Responsive and polished home page */
@media (max-width: 980px) {
    .navbar {
        padding: 10px 20px;
    }
    .nav-toggle {
        display: inline-flex;
    }
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.96);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        max-height: 0;
        opacity: 0;
        overflow: hidden;
    }
    body.nav-open .nav-links {
        max-height: 360px;
        opacity: 1;
    }
    .nav-links a {
        padding: 16px 22px;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .theme-toggle {
        order: 1;
        width: 100%;
        justify-content: center;
    }
    .container {
        grid-template-columns: 1fr;
        padding: 140px 24px 40px;
    }
    .hero-background {
        opacity: 0.7;
    }
    .main-logo {
        max-width: 320px;
        margin: 0 auto;
    }
    .welcome-title {
        font-size: 1.95rem;
    }
    .information {
        padding: 0;
    }
}
@media (max-width: 640px) {
    .nav-links a {
        font-size: 15px;
        padding: 14px 22px;
    }
    .navbar {
        gap: 10px;
    }
    .theme-toggle {
        padding: 10px 12px;
        font-size: 0.95rem;
    }
    .welcome-title {
        font-size: 1.75rem;
    }
}

body.console-mode {
    background: #05050f;
    color: #d8dee9;
}
body.console-mode .navbar {
    background: rgba(10, 12, 30, 0.97);
    border-bottom: 1px solid rgba(79,70,229,0.18);
}
body.console-mode .nav-links a {
    color: #cbd5e1;
}
body.console-mode .nav-links a:hover, body.console-mode .nav-links a.active {
    color: #60a5fa;
}
body.console-mode .theme-toggle {
    background: rgba(255,255,255,0.06);
    border-color: rgba(79,70,229,0.4);
}
body.console-mode .title-underline {
    background: #93c5fd;
}
body.console-mode .welcome-title,
body.console-mode .information .blueprint-title,
body.console-mode .shipside-logic-title,
body.console-mode .guarantee-title,
body.console-mode .log-header {
    color: #f8fafc;
}
body.console-mode .information .description,
body.console-mode .introduction .description,
body.console-mode .description-list ul li,
body.console-mode .description-table th,
body.console-mode .description-table td {
    color: #cbd5e1;
}
body.console-mode .information,
body.console-mode .container {
    background: rgba(5, 10, 20, 0.1);
}
body.console-mode .hero-background {
    background-image:
        radial-gradient(circle at 18% 18%, rgba(96,165,250,0.30), transparent 18%),
        radial-gradient(circle at 82% 24%, rgba(56,189,248,0.22), transparent 16%),
        radial-gradient(circle at 52% 70%, rgba(147,197,253,0.16), transparent 18%);
    opacity: 0.92;
}
body.console-mode .main-logo {
    box-shadow: 0 20px 40px rgba(96,165,250,0.25);
}
body.console-mode .description-table table {
    background-color: rgba(15, 20, 35, 0.4);
    border-color: rgba(148, 163, 184, 0.5);
}
body.console-mode .description-table th {
    background-color: rgba(96, 165, 250, 0.18);
    color: #e2e8f0;
    border-color: rgba(96, 165, 250, 0.35);
}
body.console-mode .description-table td {
    border-color: rgba(148, 163, 184, 0.25);
    color: #cbd5e1;
}
body.console-mode h1,
body.console-mode h2,
body.console-mode h3,
body.console-mode h4,
body.console-mode h5,
body.console-mode h6,
body.console-mode p,
body.console-mode li,
body.console-mode label,
body.console-mode span,
body.console-mode a,
body.console-mode .description,
body.console-mode .description-list ul li,
body.console-mode .admin-panel .description,
body.console-mode .game-body p,
body.console-mode .blueprint-info p,
body.console-mode .games-header p,
body.console-mode .account-details-card .text-content p,
body.console-mode .account-details-card .text-content label,
body.console-mode .glitch-title {
    color: #e2e8f0;
}

body.console-mode .container,
body.console-mode .hero-container,
body.console-mode .admin-panel,
body.console-mode .admin-table-container,
body.console-mode .dashboard-grid .stat-card,
body.console-mode .blueprint-card,
body.console-mode .game-card,
body.console-mode .account-details-card,
body.console-mode .games-section,
body.console-mode .games-header,
body.console-mode .hero-content,
body.console-mode .holo-badge,
body.console-mode .description-list ul,
body.console-mode .wrapper-login,
body.console-mode .wrapper-register,
body.console-mode .wrapper-forgot {
    background: rgba(10, 14, 28, 0.85);
    border-color: rgba(96, 165, 250, 0.2);
}

body.console-mode .btn,
body.console-mode .btn-action,
body.console-mode .play-button,
body.console-mode .download-btn,
body.console-mode .theme-toggle {
    color: #e2e8f0;
    background: rgba(96, 165, 250, 0.12);
    border-color: rgba(96, 165, 250, 0.35);
}

body.console-mode .btn:hover,
body.console-mode .btn-action:hover,
body.console-mode .play-button:hover,
body.console-mode .download-btn:hover,
body.console-mode .theme-toggle:hover {
    background: rgba(96, 165, 250, 0.2);
}

body.console-mode .wrapper-login,
body.console-mode .wrapper-register,
body.console-mode .wrapper-forgot {
    border: 1px solid rgba(96,165,250,0.18);
}

body.console-mode .description-table tbody tr:nth-child(even) {
    background-color: rgba(148, 163, 184, 0.08);
}
body.console-mode .description-table tbody tr:hover {
    background-color: rgba(96, 165, 250, 0.12);
}
body.console-mode .description-table td:last-child {
    color: #a5b4fc;
}

body.console-mode .dashboard-grid .stat-card,
body.console-mode .blueprint-card,
body.console-mode .game-card,
body.console-mode .admin-panel,
body.console-mode .admin-table-container,
body.console-mode .admin-table {
    background: rgba(20, 30, 50, 0.88);
    border-color: rgba(96, 165, 250, 0.18);
}

body.console-mode .blueprint-card {
    background: rgba(24, 34, 56, 0.95);
    border-color: rgba(96, 165, 250, 0.2);
}

body.console-mode .game-card {
    background: rgba(22, 32, 54, 0.95);
    border-color: rgba(96, 165, 250, 0.22);
}

body.console-mode .blueprint-card,
body.console-mode .game-card {
    box-shadow: 0 10px 28px rgba(96, 165, 250, 0.12);
}

body.console-mode .admin-table {
    background: rgba(11, 18, 30, 0.95);
}
body.console-mode .admin-table th {
    background: rgba(56, 189, 248, 0.16);
    color: #e2e8f0;
    border-color: rgba(96, 165, 250, 0.22);
}
body.console-mode .admin-table td {
    background: rgba(10, 16, 28, 0.85);
    color: #cbd5e1;
    border-color: rgba(148, 163, 184, 0.18);
}
body.console-mode .admin-table tr:nth-child(even) {
    background: rgba(96, 165, 250, 0.06);
}
body.console-mode .admin-table tr:hover {
    background: rgba(96, 165, 250, 0.12);
}

body.console-mode table,
body.console-mode .description-table table {
    background-color: rgba(15, 20, 32, 0.72);
}
body.console-mode th,
body.console-mode td {
    color: #cbd5e1;
}
body.console-mode tbody tr:nth-child(even) {
    background-color: rgba(96, 165, 250, 0.06);
}
body.console-mode tbody tr:hover {
    background-color: rgba(96, 165, 250, 0.10);
}
.description-list ul {
    list-style-type: disc;
    list-style-position: inside;
    margin-left: 35px;
    margin-bottom: 40px;
}
.description-list ul li {
    margin-bottom: 10px;
    font-size: 16px;
    color: #333;
    text-align: justify;
}
/* table styling */
.description-table {
    margin-top: 30px;
    margin-bottom: 40px;
    overflow-x: auto; /* Ensures responsiveness on smaller screens */
}
.description-table table {
    width: 100%;
    border-collapse: collapse;
    border: 2px solid #180082; 
    font-size: 0.95rem;
    background-color: #ffffff;
}
.description-table th {
    background-color: #180082;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 15px;
    text-align: left;
    border-bottom: 2px solid #180082; 
}
.description-table td {
    padding: 12px 15px;
    border: 1px solid #180082; 
    color: #333;
}
/* Zebra striping for readability */
.description-table tbody tr:nth-child(even) {
    background-color: #f8f9fa; 
}
/* Hover effect to highlight mission data */
.description-table tbody tr:hover {
    background-color: #eef2ff;
    transition: background-color 0.2s ease;
}
/* Specific styling for the 'Status' column to make it pop */
.description-table td:last-child {
    font-weight: bold;
    font-style: italic;
    color: #4f46e5; /* Electric blue accent from nav */
}








/* new my account */
.hero-container {
    display: flex;
    justify-content: center; /* Centers the whole block horizontally */
    align-items: flex-start; /* Aligns items to the top */
    gap: 50px;               /* Space between the text and the image */
    max-width: 1200px;
    margin: 80px auto;      /* Adds top margin to clear the fixed navbar */
    padding: 0 40px;
    width: 80%;
}
.hero-content {
    flex: 1;
    max-width: 100%;
}
.hero-visual {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-visual .main-logo {
    width: 300px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: block;
    margin-top: 50px;
}
.myaccount-title {
    font-size: 2.8rem;
    color: #180082;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    white-space: nowrap;
}
.account-details-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-left: 5px solid #180082;
    max-width: 100%;
    width: 90%;
}
.info-group {
    margin-bottom: 30px;
}
.info-group label {
    display: block;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    color: #180082;
    letter-spacing: 1px;
    margin-bottom: 8px;
}
.info-group p {
    font-size: 20px;
    color: #333;
    margin: 0;
}
.info-group i {
    margin-right: 8px;
    font-size: 16px;
}
/* Action Buttons */
.btn-action {
    display: inline-block;
    margin-top: 10px;
    padding: 12px 24px;
    background: #180082;
    color: white !important;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
}
.btn-action:hover {
    background: #4f46e5;
}
.account-actions {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}
.btn-logout-alt {
    text-align: center;
    margin-top: 20px;
    color: #dc3545;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}
.btn-logout-alt:hover {
    text-decoration: underline;
}
/* Universal alignment for account info and buttons */
.split-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05); /* Optional: adds subtle separation */
}
.split-group:last-of-type {
    border-bottom: none;
}
.text-content {
    flex: 1;
}
.split-group .btn-action {
    margin-top: 0;
    white-space: nowrap;
    min-width: 180px; /* Ensures all buttons have a consistent width */
    text-align: center;
    padding: 12px 18px;
}
    .myaccount-page .account-details-card .btn-action {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: auto;
        padding: 0;
        margin-top: 0;
        background: transparent;
        color: #180082 !important;
        border-radius: 0;
        transition: color 0.2s ease, transform 0.2s ease;
    }
    .myaccount-page .account-details-card .btn-action:hover {
        background: transparent;
        color: #4f46e5 !important;
        transform: scale(1.05);
    }
    .myaccount-page .account-details-card .btn-action {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: auto;
        padding: 0;
        margin-top: 0;
        background: transparent;
        color: #4f46e5 !important;
        border-radius: 0;
        transition: color 0.2s ease, transform 0.2s ease;
    }
    .myaccount-page .account-details-card .btn-action:hover {
        background: transparent;
        color: #2563eb !important;
        transform: scale(1.05);
    }
    .myaccount-page .account-details-card .btn-action i {
        font-size: 1.4rem;
        color: inherit;
    }
    /* Mobile Responsiveness: stack them if the screen is too narrow */
    @media (max-width: 650px) {
        .split-group {
            flex-direction: column;
            align-items: flex-start;
            gap: 10px;
        }
        .split-group .btn-action {
            width: 100%;
            min-width: unset;
        }
        .myaccount-page .account-details-card .btn-action {
            width: auto;
        }
    }


/* new change pages */
.wrapper-change {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    color: white;
    width: 480px;
    height: 500px;
    border-radius: 10px;
    padding: 30px 40px;
}
.change-header {
    text-align: center;
    margin-bottom: 25px;
}
.change-header p {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
    color: #4f46e5;
    margin-top: 5px;
}
/* Input Boxes for Change Password */
.wrapper-change .input-box {
    display: flex;
    align-items: center;
    gap: 12px;
}
.wrapper-change .input-box select.country-prefix {
    width: 140px;
    min-width: 120px;
    height: 45px;
    padding: 0 12px;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    outline: none;
    font-size: 14px;
}
.wrapper-change .input-box select.country-prefix option {
    color: #000;
    background: #fff;
}
.wrapper-change .input-box input {
    flex: 1;
    min-width: 0;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    transition: 0.3s;
    margin-top: 20px;
}
.wrapper-change .input-box input:focus {
    border-color: #4f46e5;
    box-shadow: 0 0 10px rgba(79, 70, 229, 0.4);
}
/* Override Button */
.wrapper-change .btn {
    background: #4f46e5;
    color: white;
    border: none;
    width: 100%;
    height: 45px;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, background 0.3s;
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 600;
}
.wrapper-change .btn:hover {
    background: #3730a3;
    transform: translateY(-2px);
}
/* Links */
.home-link {
    font-size: 14.5px;
    text-align: center;
    margin: 20px 0 15px;
}
.home-link p a {
    color: #4f46e5;
    text-decoration: none;
    font-weight: 600;
}
.home-link p a:hover {
    text-decoration: underline;
}
/* select positioned between rows */
.row-with-select{
    display:flex;
    gap:18px;
    align-items:center;
    margin: 10px 0 8px;
}
.row-with-select .left-select{
    width: 140px;
    min-width: 120px;
    height: 45px;
    display:flex;
    align-items:center;
}
.row-with-select .left-select .country-prefix{
    width:100%;
    height:100%; /* match phone-box input height */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    border-radius: 40px;
    border: 1px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.05);
    color: white;
    outline: none;
    line-height: 1.2;
}
.phone-box .country-prefix {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
}
.row-with-select .inputs-column{
    flex: 1;
    display:flex;
    flex-direction:column;
    gap:12px;
}
.input-box .country-prefix {
    height: 100%;
    padding: 0 10px;
    border-radius: 40px;
    border: 1px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.05);
    color: white;
    outline: none;
    font-size: 14px;
    cursor: pointer;
    backdrop-filter: blur(10px);
    width: 135px;
}
.input-box .country-prefix option {
    background: #1a1a1a;
    color: white;
}







/* new role change */
.rolechange-wrapper {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0,0,0,0.37);
    color: white;
    width: 420px;
    border-radius: 10px;
    padding: 30px 40px;
    margin: auto;
}
.rolechange-header {
    text-align: center;
    margin-bottom: 25px;
}
.rolechange-header h1 {
    font-size: 28px;
    letter-spacing: 1px;
}
.rolechange-header p {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
    color: #4f46e5;
    margin-top: 5px;
}
.rolechange-wrapper .input-box input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    transition: 0.3s;
}
.rolechange-wrapper .input-box input:focus {
    border-color: #4f46e5;
    box-shadow: 0 0 10px rgba(79, 70, 229, 0.4);
}
.rolechange-wrapper .btn {
    background: #4f46e5;
    color: white;
    border: none;
    width: 100%;
    height: 45px;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, background 0.3s;
}
.rolechange-wrapper .btn:hover {
    background: #3730a3;
    transform: translateY(-2px);
}
.rolechange-wrapper .home-link p a {
    color: #4f46e5;
    text-decoration: none;
    font-weight: 600;
}
.rolechange-wrapper .home-link p a:hover {
    text-decoration: underline;
}
/* Styling for the Role Selector Dropdown */
.role-selector {
    width: 100%;
    height: 59px;
    background: rgba(255, 255, 255, 0.05); /* Match other inputs */
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 40px;
    font-size: 16px;
    color: white;
    padding: 0 45px 0 20px;
    outline: none;
    appearance: none; /* Removes default browser arrow */
    cursor: pointer;
    backdrop-filter: blur(10px);
}
/* Style the options inside the dropdown */
.role-selector option {
    background: #1a1a1a; /* Dark background for readability */
    color: white;
}
/* Ensure the icon stays aligned */
.input-box i.bxs-shield-quarter {
    color: #4f46e5;
}
/* Focus state */
.role-selector:focus {
    border-color: #4f46e5;
    box-shadow: 0 0 10px rgba(79, 70, 229, 0.4);
}








/* new admin */
body.admin-page {
    background-color: #f8f9fa;
    color: #1a1a1a;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
body.admin-page main.container {
    display: block;
    max-width: 900px;
    margin: 90px auto 20px;
    padding: 0 24px;
}
.admin-panel {
    width: 100%;
    max-width: 100%;
    margin: 0 auto 40px;
    padding: 40px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border-left: 6px solid #180082;
}
.admin-panel h1 {
    font-size: 2rem;
    color: #180082;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
    white-space: normal;
}
.admin-panel .title-underline {
    width: 90px;
    height: 4px;
    background: #180082;
    margin-bottom: 25px;
}
.admin-panel .description {
    font-size: 16px;
    color: #333;
    text-align: justify;
    margin-bottom: 25px;
    white-space: normal;
}
.admin-list ul {
    list-style-type: square;
    margin-left: 30px;
    margin-bottom: 30px;
}
.admin-list ul li {
    margin-bottom: 10px;
    font-size: 16px;
    color: #333;
}
.admin-panel .btn-action {
    background: #180082;
    color: white !important;
    padding: 10px 25px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}
.admin-panel .btn-action:hover {
    background: #4f46e5;
}
/* new glitch effect */
.glitch {
    position: relative;
    color: #180082;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.glitch::before, .glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    clip: rect(0, 900px, 0, 0);
}
.glitch::before {
    left: 2px;
    text-shadow: -2px 0 #4f46e5;
    animation: glitch-anim 2s infinite linear alternate-reverse;
}
.glitch::after {
    left: -2px;
    text-shadow: -2px 0 #ff00c8;
    animation: glitch-anim2 2.5s infinite linear alternate;
}
@keyframes glitch-anim {
    0% { clip: rect(10px, 9999px, 40px, 0); }
    20% { clip: rect(50px, 9999px, 80px, 0); }
    40% { clip: rect(20px, 9999px, 60px, 0); }
    60% { clip: rect(70px, 9999px, 100px, 0); }
    80% { clip: rect(30px, 9999px, 50px, 0); }
    100% { clip: rect(0px, 9999px, 30px, 0); }
}
@keyframes glitch-anim2 {
    0% { clip: rect(60px, 9999px, 90px, 0); }
    20% { clip: rect(20px, 9999px, 40px, 0); }
    40% { clip: rect(80px, 9999px, 120px, 0); }
    60% { clip: rect(10px, 9999px, 30px, 0); }
    80% { clip: rect(50px, 9999px, 70px, 0); }
    100% { clip: rect(0px, 9999px, 20px, 0); }
}
/* new holographic badge */
.admin-panel-header {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    margin-bottom: 30px;
}
.holo-badge {
    width: auto;
    max-width: 420px;
    min-width: 260px;
    flex: 1 1 320px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(79,70,229,0.3), rgba(24,0,130,0.3));
    border: 1px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(12px);
    border-radius: 12px;
    box-shadow: 0 0 25px rgba(79,70,229,0.4);
    animation: holoPulse 3s infinite ease-in-out;
    text-align: center;
    color: white;
    margin-bottom: 0;
}
.holo-badge img {
    width: 80px;
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.4));
    margin-bottom: 10px;
}
.admin-panel-logo {
    width: 220px;
    max-width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(24, 0, 130, 0.12);
}
@media (max-width: 860px) {
    .admin-panel-header {
        flex-direction: column;
        align-items: center;
    }
    .holo-badge {
        width: 100%;
        max-width: none;
    }
}
.holo-badge h3 {
    font-size: 18px;
    margin-bottom: 5px;
}
.holo-badge p {
    font-size: 13px;
    opacity: 0.8;
}
@keyframes holoPulse {
    0% { box-shadow: 0 0 15px rgba(79,70,229,0.3); }
    50% { box-shadow: 0 0 35px rgba(79,70,229,0.6); }
    100% { box-shadow: 0 0 15px rgba(79,70,229,0.3); }
}
/* admin user management table */
.admin-table-container {
    margin: 40px auto;
    max-width: 1200px;
    overflow-x: auto;
}
.admin-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border: 2px solid #180082;
}
.admin-table th {
    background: #180082;
    color: white;
    padding: 16px 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 15px;
    font-weight: 600;
}
.admin-table td {
    padding: 16px 18px;
    border: 1px solid #180082;
    color: #333;
    font-size: 15px;
}
.admin-table tr:nth-child(even) {
    background: #f8f9fa;
}
.admin-table tr:hover {
    background: #eef2ff;
}
.admin-action-btn {
    padding: 6px 12px;
    background: #4f46e5;
    color: white;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
    text-decoration: none;
    transition: 0.2s;
}
.admin-action-btn:hover {
    background: #3730a3;
}
/* Delete Button */
.admin-delete-btn {
    padding: 6px 12px;
    background: #dc3545;
    color: white;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
    text-decoration: none;
    transition: 0.2s;
}
.admin-delete-btn:hover {
    background: #a71d2a;
}








/* new dashboard */
/* Dashboard Specifics */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}
.stat-card {
    background: rgba(255, 255, 255, 0.7); /* Frosted feel for light mode */
    border: 1px solid #4f46e5;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 4px 10px rgba(33, 33, 33, 0.3);
}
.stat-card i {
    font-size: 2.5rem;
    color: #4f46e5;
    margin-bottom: 10px;
}
.stat-card .stat-value {
    font-size: 1.8rem;
    font-weight: bold;
    margin: 10px 0;
}
.progress-bar {
    width: 100%;
    height: 10px;
    background: #e0e0e0;
    border-radius: 5px;
    margin: 10px 0;
    overflow: hidden;
}
.progress-bar .fill {
    height: 100%;
    background: #4f46e5;
    box-shadow: 0 0 10px rgba(79, 70, 229, 0.5);
}
.stat-card span {
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.log-content {
    background: #1a1a1a; 
    color: #22c55e; 
    padding: 15px; 
    border-left: 4px solid #4f46e5; 
    font-family: 'Courier New', monospace; 
    font-size: 13px; 
    margin-bottom: 30px;
    border-radius: 4px;
}
.fleet-manifest {
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 40px;
}








/* new blueprints */
/* Blueprint Gallery Styling */
.blueprint-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 60px;
    padding: 20px 0;
    max-width: 1200px;
    margin: 0 auto;
}
@media (max-width: 768px) {
    .blueprint-grid {
        grid-template-columns: 1fr;
    }
}
.blueprint-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border: 1px solid #e2e8f0;
}
.blueprint-card:hover {
    transform: translateY(-10px);
    border-color: #4f46e5;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(33, 33, 33, 0.3);
}
.image-container {
    position: relative;
    height: 200px;
    background: #000;
}
.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: opacity 0.3s;
}
.blueprint-card:hover .image-container img {
    opacity: 1;
}
.blueprint-overlay {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(79, 70, 229, 0.9);
    color: white;
    font-size: 10px;
    font-weight: bold;
    padding: 4px 8px;
    border-radius: 2px;
}
.blueprint-info {
    padding: 20px;
    text-align: left;
}
.blueprint-info h3 {
    font-size: 1.2rem;
    color: #180082;
    margin-bottom: 5px;
}
.blueprint-info p {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 20px;
}
/* Reusing your btn-action style for consistency */
.blueprint-card .btn-action {
    width: 100%;
    text-align: center;
    font-size: 12px;
    cursor: pointer;
}








/* new games */
/* Style for Pygame windows in the browser */
.games-section {
    width: 100%;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center; /* Centra el contenido horizontalmente */
    text-align: center;
    grid-column: 1 / -1; /* Span full width of parent grid to center within container */
    max-width: 1200px;
    margin: 100px auto;
}
.games-header {
    margin-bottom: 50px;
    max-width: 800px;
}
.games-header h1 {
    font-size: 3rem;
    color: #180082;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
}
.games-header p {
    color: #64748b;
    font-size: 1.2rem;
    line-height: 1.6;
}
/* Fila de tarjetas: horizontal y centrada */
.games-row {
    display: flex;
    flex-direction: row; /* Fuerza la disposiciÃ³n horizontal */
    justify-content: center;
    align-items: stretch;
    gap: 25px;
    width: 100%;
    max-width: 1900px; /* Evita que se estiren demasiado en pantallas ultra anchas */
    flex-wrap: nowrap; /* Mantiene la fila a menos que sea mÃ³vil */
}
.game-card {
    background: white;
    flex: 1; /* Hace que todas las tarjetas tengan el mismo ancho */
    min-width: 300px;
    max-width: 360px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}
.game-card:hover {
    transform: translateY(-10px);
    border-color: #4f46e5;
    box-shadow: 0 15px 30px rgba(24, 0, 130, 0.15);
}
.game-thumb {
    height: 180px; /* Slightly increased for better visual impact */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
    /* Remove text-related properties since we want them hidden */
    color: transparent; 
    text-indent: -9999px; 
}
.game-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* This makes the image behave like a background-cover */
    display: block;
}
.bg-pong { 
    background: #000; 
    border-bottom: 4px solid #ffffff; 
}
.bg-snake { 
    background: #000; 
    border-bottom: 4px solid #32CD32; 
}
.bg-taxi { 
    background: #000; 
    border-bottom: 4px solid #ffd700; 
}
.bg-pong { background: linear-gradient(135deg, #000000 0%, #434343 100%); border-bottom: 4px solid #ffffff; }
.bg-snake { background: linear-gradient(135deg, #0f2027 0%, #203a43 0%, #2c5364 100%); border-bottom: 4px solid #32CD32; }
.bg-taxi { background: linear-gradient(135deg, #000000 0%, #0f0c29 50%, #302b63 100%); border-bottom: 4px solid #ffd700; }
.game-body {
    padding: 25px;
    text-align: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
    background: white;
}
.game-body p {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.5;
    margin-bottom: 25px;
}
.play-button {
    display: block;
    width: 100%;
    padding: 12px;
    background: #180082;
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}
.play-button:hover {
    background: #4f46e5;
}
/* Ajuste para pantallas pequeÃ±as */
@media (max-width: 1000px) {
    .games-row {
        flex-wrap: wrap;
    }
}








/* ==========================================================================
   MISSION CONTROL DASHBOARD EXTRACTIONS
   ========================================================================== */

.main-dashboard {
    display: block;
    margin-top: 100px;
}

.dashboard-header {
    margin-bottom: 30px;
}

.operational-sector {
    margin-top: 40px;
    margin-bottom: 60px;
}

.section-divider {
    height: 2px;
    margin-bottom: 20px;
}

.mission-objective {
    font-size: 13px;
    color: #666;
    margin-bottom: 10px;
}

.mission-sop {
    font-size: 13px;
    text-align: justify;
    margin-bottom: 15px;
}