﻿:root {
    --bg-base: #07080d;
    --bg-surface: #0d0f18;
    --bg-elevated: #131622;
    --border: rgba(255,255,255,0.07);
    --border-accent: rgba(82, 196, 255, 0.35);
    --text-primary: #eef0f7;
    --text-secondary: #7a7f9a;
    --text-muted: #4a4f68;
    --accent: #52c4ff;
    --accent-glow: rgba(82, 196, 255, 0.18);
    --accent-2: #a78bfa;
    --accent-2-glow: rgba(167, 139, 250, 0.15);
    --font-display: 'Syne', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --nav-height: 68px;
    --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    font-size: 14px;
    scroll-behavior: smooth;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
        scroll-behavior: smooth;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-base);
    color: var(--text-primary);
    font-family: var(--font-display);
    font-size: 15px;
    line-height: 1.65;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    /*max-width: 800px;*/
    /*margin: auto;*/
    /*padding: 20px;*/
}

    body::before {
        content: '';
        position: fixed;
        inset: 0;
        background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px);
        background-size: 48px 48px;
        z-index: 0;
        pointer-events: none;
        mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 30%, transparent 100%);
    }

    body::after {
        content: '';
        position: fixed;
        top: -200px;
        left: 50%;
        transform: translateX(-50%);
        width: 900px;
        height: 500px;
        background: radial-gradient(ellipse, rgba(82,196,255,0.06) 0%, rgba(167,139,250,0.04) 45%, transparent 70%);
        pointer-events: none;
        z-index: 0;
    }

button {
    padding: 10px 20px;
    background: #0078D7;
    color: white;
    border: none;
    cursor: pointer;
}

pre {
    background: #5CB3FF;
    padding: 10px;
}

/* Basic table layout and width */
table {
    font-family: Arial, sans-serif;
    border-collapse: collapse; /* Merges adjacent borders into one */
    width: 100%;
}

/* Padding and border for headers and data cells */
td {
    border: 1px solid #dddddd;
    text-align: left;
    padding: 12px; /* Adds space inside cells */
    color: #D3AF37;
}

th {
    border: 1px solid #dddddd;
    text-align: left;
    padding: 12px; /* Adds space inside cells */
    color: white;
}

/* Styling the table header */
thead {
    background-color: #04AA6D;
    color: white;
}

/* Zebra-striping: Highlight even rows for readability */
tr:nth-child(even) {
    background-color: #f2f2f2;
}

header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(7, 8, 13, 0.75);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border);
    height: var(--nav-height);
}

.navbar {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0;
    height: var(--nav-height);
}

    .navbar .container {
        height: 100%;
        display: flex;
        align-items: center;
    }

/* Logo */
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.3rem;
    letter-spacing: -0.02em;
    color: var(--text-primary) !important;
    text-decoration: none;
    position: relative;
}

    .navbar-brand .logo-icon {
        width: 34px;
        height: 34px;
        background: linear-gradient(135deg, var(--accent), var(--accent-2));
        border-radius: var(--radius-sm);
        display: grid;
        place-items: center;
        font-family: var(--font-mono);
        font-size: 0.75rem;
        font-weight: 500;
        color: #07080d;
        flex-shrink: 0;
        box-shadow: 0 0 18px rgba(82, 196, 255, 0.3);
    }

    .navbar-brand .logo-text span {
        color: var(--accent);
    }

    .navbar-brand:hover .logo-icon {
        box-shadow: 0 0 28px rgba(82, 196, 255, 0.5);
        transform: scale(1.05);
        transition: var(--transition);
    }

/* Nav Links */
.navbar-nav {
    gap: 4px;
}

.nav-item .nav-link {
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary) !important;
    padding: 7px 14px !important;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    transition: var(--transition);
    text-decoration: none;
    letter-spacing: 0.01em;
    position: relative;
}

    .nav-item .nav-link:hover {
        color: var(--text-primary) !important;
        background: var(--bg-elevated);
        border-color: var(--border);
    }

    .nav-item .nav-link.active,
    .nav-item .nav-link[aria-current="page"] {
        color: var(--accent) !important;
        background: var(--accent-glow);
        border-color: var(--border-accent);
    }

/* Nav Right: CTA */
.nav-cta {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 10px;
}

.badge-free {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 99px;
    background: rgba(82,196,255,0.1);
    color: var(--accent);
    border: 1px solid rgba(82,196,255,0.25);
}

/* Hamburger */
.navbar-toggler {
    border: 1px solid var(--border) !important;
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    background: var(--bg-elevated) !important;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%237a7f9a' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* Mobile Menu */
.navbar-collapse {
    background: var(--bg-surface);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    padding: 12px;
    margin-top: 8px;
}

@media (min-width: 576px) {
    .navbar-collapse {
        background: transparent;
        border: none;
        padding: 0;
        margin-top: 0;
    }
}

/* ─── Tag Line Strip ────────────────────────────────── */
.tagline-strip {
    position: relative;
    z-index: 1;
    background: linear-gradient(90deg, transparent, rgba(82,196,255,0.05), rgba(167,139,250,0.05), transparent);
    border-bottom: 1px solid var(--border);
    padding: 7px 0;
    overflow: hidden;
}

.tagline-strip-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

    .tagline-strip-inner .dot {
        width: 4px;
        height: 4px;
        background: var(--accent);
        border-radius: 50%;
        opacity: 0.5;
    }

    .tagline-strip-inner span.hl {
        color: var(--accent);
    }

/* ─── Main Content ──────────────────────────────────── */
.site-main-wrapper {
    flex: 1;
    position: relative;
    z-index: 1;
}

.site-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 40px 20px 60px;
}

main[role="main"] {
    animation: fadeSlideIn 0.45s cubic-bezier(0.4,0,0.2,1) both;
}

@@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ─── Ad Slot ───────────────────────────────────────── */
.ad-strip {
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg-surface);
    padding: 16px 0;
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ad-strip-inner {
    max-width: 1140px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

/* ─── Footer ────────────────────────────────────────── */
footer.site-footer {
    position: relative;
    z-index: 1;
    background: var(--bg-surface);
    border-top: 1px solid var(--border);
}

.footer-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 48px 20px 28px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: start;
    padding-bottom: 36px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 24px;
}

.footer-brand-col .brand-name {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--text-primary);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .footer-brand-col .brand-name .logo-icon {
        width: 26px;
        height: 26px;
        background: linear-gradient(135deg, var(--accent), var(--accent-2));
        border-radius: 5px;
        display: grid;
        place-items: center;
        font-family: var(--font-mono);
        font-size: 0.65rem;
        font-weight: 500;
        color: #07080d;
    }

.footer-brand-col p {
    font-size: 0.82rem;
    color: var(--text-muted);
    max-width: 320px;
    line-height: 1.6;
}

.footer-links-col {
    display: flex;
    gap: 48px;
}

.footer-link-group h5 {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.footer-link-group ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.footer-link-group a {
    font-size: 0.84rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition);
}

    .footer-link-group a:hover {
        color: var(--accent);
    }

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

    .footer-bottom p {
        font-family: var(--font-mono);
        font-size: 0.75rem;
        color: var(--text-muted);
        margin: 0;
    }

    .footer-bottom a {
        color: var(--text-secondary);
        text-decoration: none;
        transition: color var(--transition);
    }

        .footer-bottom a:hover {
            color: var(--accent);
        }

.footer-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--text-muted);
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 6px rgba(34,197,94,0.6);
    animation: pulse-status 2.5s ease-in-out infinite;
}

@@keyframes pulse-status {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

/* ─── Bootstrap Overrides ───────────────────────────── */
.container {
    position: relative;
    z-index: 1;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-base);
}

::-webkit-scrollbar-thumb {
    background: var(--bg-elevated);
    border-radius: 99px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: var(--text-muted);
    }

/* ─── Responsive ────────────────────────────────────── */
@@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-links-col {
        gap: 28px;
        flex-wrap: wrap;
    }

    .tagline-strip-inner {
        gap: 12px;
        font-size: 0.66rem;
    }
}

.temp-container {
    max-width: 700px;
    margin: auto;
}

.email-section {
    text-align: center;
}

.timer {
    font-weight: bold;
    color: #ff9800;
}

.inbox-list {
    list-style: none;
    padding: 0;
}

    .inbox-list li {
        padding: 10px;
        border-bottom: 1px solid #ddd;
        cursor: pointer;
    }

        .inbox-list li:hover {
            background: #f5f5f5;
        }

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}

.modal-content {
    background: white;
    margin: 10% auto;
    padding: 20px;
    width: 60%;
}

.close {
    float: right;
    cursor: pointer;
}
