/* ===============================
   Body & Base
=============================== */
body {
    margin:0;
    padding:0;
    font-family: Arial, sans-serif;
    background:#000;
    color:#fff;
    font-size:12px; /* mini */
}

/* ===============================
   Header & Navigation
=============================== */
.header{
    padding:6px 10px 0 10px;
    background:#000;
    position:fixed;
    top:0;
    width:100%;
    z-index:1000;
    border-bottom:1px solid #000;
}
.logo{
    font-size:12px;
    font-weight:bold;
    color:#fff;
}
.nav{
    margin-top:18px;
    text-align:center;
    font-size:12px;
}
.nav a{
    color:#fff;
    text-decoration:none;
    margin:0 6px;
}
.nav a:hover{color:#fff;}
.nav select{
    font-size:10px;
    color:#fff;
    background:#000;
    border:1px solid #000;
    border-radius:3px;
    padding:2px 4px;
    vertical-align:middle;
}

/* ===============================
   Fixed Ticker
=============================== */
.fixed-ticker{
    position:fixed;
    top:70px;
    width:100%;
    z-index:999;
    background:#000;
    border-top:1px solid #000;
    border-bottom:1px solid #000;
}

/* ===============================
   Login Section
=============================== */
.login-section{
    display:flex;
    justify-content:center;
    align-items:center;
    padding:80px 10px 30px 10px;
    background:#000;
}
.login-box{
    width:100%;
    max-width:280px;
    text-align:center;
    background:#000;
    padding:15px 12px;
    border-radius:6px;
    border:1px solid #000;
}
.login-box h2{
    font-size:16px;
    font-weight:bold;
    margin-bottom:6px;
    color:#fff;
}
.login-box p{
    font-size:12px;
    color:#ccc;
    margin-bottom:12px;
}
.login-box input{
    width:100%;
    height:28px;
    margin-bottom:10px;
    border:1px solid #000;
    border-radius:4px;
    padding-left:6px;
    font-size:12px;
    background:#000;
    color:#fff;
}
.login-box input:focus{
    outline:none;
    border-color:#fff;
    box-shadow:0 0 4px rgba(255,255,255,0.3);
}
.login-box button{
    width:100%;
    height:28px;
    background:#000;
    color:#fff;
    font-size:12px;
    border:1px solid #fff;
    border-radius:4px;
    cursor:pointer;
}
.login-box button:hover{background:#111;}
.login-box .extra-links{
    margin-top:10px;
    font-size:10px;
}
.login-box .extra-links a{
    display:block;
    color:#fff;
    text-decoration:none;
    margin-bottom:4px;
}
.login-box .extra-links a:hover{text-decoration:underline;}

/* ===============================
   Forgot Password Popup
=============================== */
.forgot-popup-overlay{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.9);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:2000;
}
.forgot-popup-box{
    background:#000;
    padding:20px 15px;
    border-radius:6px;
    width:90%;
    max-width:300px;
    border:1px solid #000;
    box-shadow:0 10px 20px rgba(0,0,0,0.7);
    text-align:center;
}
.forgot-popup-box h4{
    font-size:14px;
    margin-bottom:6px;
    color:#fff;
}
.forgot-instruction{
    color:#ccc;
    font-size:10px;
    margin-bottom:8px;
}
.forgot-popup-box input{
    width:100%;
    padding:8px;
    margin-bottom:12px;
    border:1px solid #000;
    border-radius:4px;
    font-size:10px;
    background:#000;
    color:#fff;
}
.forgot-popup-actions{
    display:flex;
    justify-content:space-between;
}
.reset-btn, .cancel-btn{
    padding:4px 8px;
    font-size:10px;
    border-radius:4px;
    cursor:pointer;
    border:1px solid #fff;
    background:#000;
    color:#fff;
}
.reset-btn:hover, .cancel-btn:hover{background:#111;}

/* ===============================
   Notification Box
=============================== */
#notificationBox{
    position:fixed;
    top:50px;
    left:50%;
    transform:translateX(-50%);
    background:#000;
    border:1px solid #000;
    padding:6px 10px;
    border-radius:4px;
    color:#fff;
    display:none;
    z-index:9999;
    min-width:180px;
    text-align:center;
    font-weight:500;
    font-size:10px;
    box-shadow:0 2px 6px rgba(0,0,0,0.7);
}

/* ===============================
   Footer
=============================== */
.gfo-footer{
    background:#000;
    color:#fff;
    font-size:10px;
    padding:15px 10px;
    border-top:1px solid #000;
}
.gfo-footer a{
    color:#fff;
    text-decoration:none;
}
.gfo-footer a:hover{color:#fff;}

/* ===============================
   Telegram Floating Icon
=============================== */
#telegramFloating{
    position:fixed;
    bottom:10px;
    left:10px;
    z-index:1000;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:4px;
}
#tgMessage{
    display:none;
    background:#000;
    color:#fff;
    padding:2px 4px;
    border-radius:12px;
    font-size:10px;
}
#tgIcon{
    width:36px;
    height:36px;
    background:#000;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
}
#tgIcon img{
    width:18px;
    height:18px;
}

/* ===============================
   Language Dropdown Mini
=============================== */
#language-selector{
    cursor:pointer;
    font-size:10px;
    background:#000;
    border-radius:3px;
    padding:2px 4px;
    display:inline-flex;
    align-items:center;
    gap:2px;
    position:relative;
    z-index:1001;
    color:#fff;
}
.language-dropdown{
    display:none;
    position:absolute;
    top:100%;
    left:0;
    background:#000;
    border-radius:3px;
    min-width:50px;
    font-size:10px;
    color:#fff;
    margin-top:2px;
}
.language-dropdown div{
    padding:2px 4px;
    cursor:pointer;
}
.language-dropdown div:hover{background:#111;}

/* ===============================
   Checkbox Mini
=============================== */
.form-check-input,.remember-input{
    width:12px;
    height:12px;
}
.form-check-label,.remember-label{
    font-size:10px;
}

/* ===============================
   Forgot Password Popup Mini & Black
=============================== */
.forgot-popup-box {
    background: #000;        /* pure black */
    padding: 15px 10px;      /* mini size */
    border-radius: 6px;
    width: 90%;
    max-width: 280px;        /* smaller max-width */
    border: 1px solid #000;  /* black border */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.8);
    text-align: center;
}
.forgot-popup-box h4 {
    font-size: 14px;         /* mini size */
    margin-bottom: 6px;
    color: #fff;             /* white text */
}
.forgot-instruction {
    color: #ccc;             /* lighter grey for instruction */
    font-size: 10px;         /* mini size */
    margin-bottom: 8px;
}
.forgot-popup-box input {
    width: 100%;
    padding: 6px;
    margin-bottom: 10px;
    border: 1px solid #000;
    border-radius: 4px;
    font-size: 10px;         /* mini */
    background: #000;
    color: #fff;
}
.forgot-popup-actions {
    display: flex;
    justify-content: space-between;
}
.reset-btn, .cancel-btn {
    padding: 4px 8px;
    font-size: 10px;         /* mini */
    border-radius: 4px;
    cursor: pointer;
    border: 1px solid #fff;  /* white border for visibility */
    background: #000;
    color: #fff;
}
.reset-btn:hover, .cancel-btn:hover {
    background: #111;
}

/* ===============================
   Notification Box Mini & Black
=============================== */
#notificationBox {
    position: fixed;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    background: #000;
    border: 1px solid #000;
    padding: 6px 10px;       /* mini */
    border-radius: 4px;
    color: #fff;             /* pure white text */
    display: none;
    z-index: 9999;
    min-width: 180px;
    text-align: center;
    font-weight: 500;
    font-size: 10px;         /* mini */
    box-shadow: 0 2px 6px rgba(0,0,0,0.7);
}

/* ===============================
   Footer Mini & Black
=============================== */
.gfo-footer {
    background: #000;        /* pure black */
    color: #fff;             /* white text */
    font-family: 'Inter', sans-serif;
    font-size: 10px;         /* mini size */
    padding: 15px 10px;
    border-top: 1px solid #000;
}
.gfo-footer-container {
    max-width: 900px;
    margin: auto;
    line-height: 1.6;
}
.gfo-footer-title {
    font-size: 14px;         /* mini */
    color: #fff;
    font-weight: bold;
}

/* ===============================
   Footer Mini & Black
=============================== */
.gfo-footer-section-title {
    color: #fff;         /* pure white */
    font-weight: bold;
    margin-top: 10px;    /* mini spacing */
    font-size: 10px;     /* mini size */
}

.gfo-footer a {
    color: #ccc;         /* subtle grey for links */
    text-decoration: none;
    font-size: 10px;     /* mini */
}

.gfo-footer a:hover {
    color: #fff;         /* white on hover */
}

.gfo-footer-form {
    margin-top: 5px;
    display: flex;
    max-width: 250px;    /* mini width */
}

.gfo-footer-input {
    flex: 1;
    padding: 4px 6px;
    border: 1px solid #000;
    border-radius: 4px 0 0 4px;
    background-color: #000;
    color: #fff;
    font-size: 10px;     /* mini */
}

.gfo-footer-input:focus {
    border-color: #fff;
    outline: none;
}

.gfo-footer-button {
    background-color: #000;
    border: 1px solid #fff;
    padding: 4px 8px;
    border-radius: 0 4px 4px 0;
    color: #fff;
    font-size: 10px;
    cursor: pointer;
}

.gfo-footer-button:hover {
    background-color: #111;
    transform: scale(1.02);
}

.gfo-footer-copy {
    text-align: center;
    color: #888;
    font-size: 10px;
    margin-top: 10px;
}

/* ===============================
   Telegram Floating Icon Mini
=============================== */
#telegramFloating {
    position: fixed;
    bottom: 10px;
    left: 10px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

#tgMessage {
    display: none;
    background: #000;
    color: #fff;
    padding: 4px 6px;
    border-radius: 12px;
    font-size: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);
}

#tgIcon {
    width: 40px;
    height: 40px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);
}

#tgIcon img {
    width: 20px;
    height: 20px;
}

/* ===============================
   Skeleton Loader Mini
=============================== */
.skeleton-loader {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 15px;
    background-color: #000;
    color: #fff;
}

.skeleton-box {
    background-color: #111;
    border-radius: 6px;
    animation: skeleton-loading 1.2s infinite ease-in-out;
}

.skeleton-header { width: 50%; height: 25px; }
.skeleton-login-form { width: 100%; height: 150px; border-radius: 6px; }
.skeleton-footer { width: 70%; height: 50px; }

@keyframes skeleton-loading {
    0%, 100% { background-color: #111; }
    50% { background-color: #222; }
}

/* ===============================
   Google Login Button Mini
=============================== */
#googleLoginBtn {
    background-color: #000;
    color: #fff;
    border-radius: 20px;
    padding: 4px 8px;
    font-size: 10px;
    border: 1px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.2s;
}

#googleLoginBtn:hover {
    background-color: #111;
    transform: scale(1.02);
}

#googleLoginBtn img {
    width: 12px;
    height: 12px;
    margin-right: 4px;
}

/* ===============================
   Password Toggle Mini
=============================== */
.password-wrapper {
    position: relative;
}

.password-wrapper svg {
    position: absolute;
    top: 50%;
    right: 6px;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    fill: #ccc;
    cursor: pointer;
}

.password-wrapper svg:hover {
    fill: #fff;
}

/* ===============================
   Checkbox Mini
=============================== */
.form-check, .remember-option {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 8px;
}

.form-check-input, .remember-input {
    width: 12px;
    height: 12px;
    cursor: pointer;
    border-radius: 2px;
}

.form-check-label, .remember-label {
    font-size: 10px;
    cursor: pointer;
    color: #fff;
}