/* ===== Index Page Styles ===== */

/* ===== Layout ===== */
.main-container {
    max-width: 500px;
    margin: 50px auto;
}

/* ===== Form Labels ===== */
.form-label {
    font-weight: 500;
    font-size: 0.9rem;
}

/* ===== Primary Button ===== */
.btn-primary {
    padding: 12px 30px;
    letter-spacing: 1px;
}

.btn-primary:active {
    transform: scale(0.97);
    transition-duration: 0.1s;
}

.btn-primary:disabled {
    opacity: 0.5;
}

/* ===== Outline Button ===== */
.btn-outline-primary {
    padding: 10px 25px;
}

/* ===== Status Tags ===== */
.status-expired {
    background: linear-gradient(135deg, rgba(255, 80, 80, 0.2) 0%, rgba(238, 90, 82, 0.15) 100%);
    color: #ff6b6b;
    padding: 15px;
    border-radius: 15px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 80, 80, 0.25);
    box-shadow: 0 0 20px rgba(255, 80, 80, 0.08);
}

.status-active {
    background: linear-gradient(135deg, rgba(0, 242, 255, 0.1) 0%, rgba(81, 207, 102, 0.1) 100%);
    color: #51cf66;
    padding: 15px;
    border-radius: 15px;
    margin-bottom: 20px;
    border: 1px solid rgba(81, 207, 102, 0.25);
    box-shadow: 0 0 20px rgba(81, 207, 102, 0.08);
}

/* ===== Info Card ===== */
.info-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
}

.info-card h6 {
    background: linear-gradient(90deg, #00f2ff, #7b68ee);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
    letter-spacing: 1px;
}

.info-card .row {
    color: rgba(255, 255, 255, 0.75);
}

.info-card strong {
    color: rgba(255, 255, 255, 0.55);
}

.info-card hr {
    border-color: rgba(255, 255, 255, 0.06);
    opacity: 1;
}

.info-card .text-muted {
    color: rgba(255, 255, 255, 0.35) !important;
}

.info-card .text-success {
    color: #51cf66 !important;
}

.info-card .text-danger {
    color: #ff6b6b !important;
}

/* ===== Activation Area ===== */
#activationArea h6 {
    background: linear-gradient(90deg, #00f2ff, #7b68ee);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
}

/* ===== Switch Text & Link ===== */
.switch-text {
    text-align: center;
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.4);
}

.switch-link {
    color: #00f2ff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.switch-link:hover {
    color: #7b68ee;
    text-shadow: 0 0 10px rgba(0, 242, 255, 0.3);
    text-decoration: none;
}

/* ===== Card Input ===== */
.card-input {
    font-family: 'Orbitron', 'Courier New', monospace;
    font-size: 16px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* ===== Announcement Box ===== */
.announcement-box {
    background: linear-gradient(135deg, rgba(0, 242, 255, 0.06) 0%, rgba(123, 104, 238, 0.06) 100%);
    color: #e0e0e0;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(0, 242, 255, 0.08);
    border: 1px solid rgba(0, 242, 255, 0.2);
}

.announcement-box h6 {
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(90deg, #00f2ff, #7b68ee);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.announcement-box h6 i {
    -webkit-text-fill-color: #00f2ff;
}

.announcement-box .announcement-content {
    background: rgba(255, 255, 255, 0.04);
    padding: 15px;
    border-radius: 10px;
    white-space: pre-wrap;
    word-wrap: break-word;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* ===== Toast ===== */
.toast {
    background: rgba(10, 10, 30, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    color: #e0e0e0;
}

.toast-header {
    background: rgba(255, 255, 255, 0.04);
    color: #e0e0e0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.toast-header strong {
    color: #e0e0e0;
}

.toast-body {
    color: rgba(255, 255, 255, 0.8);
}

.btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
}

/* ===== Captcha Image ===== */
#captchaImage {
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
}

/* ===== Responsive ===== */
@media (max-width: 576px) {
    .main-container {
        margin: 20px auto;
        padding: 10px;
    }

    .logo {
        font-size: 22px;
    }
}