:root {
    --primary-bg: #0a0a0a;
    --secondary-bg: #151515;
    --accent-color: #d9534f;
    --gold-color: #ffd700;
    --text-primary: #ffffff;
    --text-secondary: #cccccc; /* Mais claro para leitura */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1); /* Borda mais visível */
    --font-main: 'Montserrat', sans-serif;
    --font-display: 'Oswald', sans-serif;
    --input-bg: #333333; /* Fundo mais claro */
    --input-border: #555555; /* Borda mais clara */
    --input-focus-border: #d9534f;
    --placeholder-color: #bbbbbb; /* Placeholder mais claro */
}

body {
    background-color: var(--primary-bg);
    background: radial-gradient(circle at center, #1a1a1a 0%, #000000 100%);
    color: var(--text-primary);
    font-family: var(--font-main);
    min-height: 100vh;
    overflow-x: hidden;
    color-scheme: dark;
}

/* Forms & Inputs */
.form-control, .form-select {
    background-color: var(--input-bg) !important;
    border: 1px solid var(--input-border);
    color: var(--text-primary) !important;
    font-weight: 500;
}

.form-control:focus, .form-select:focus {
    background-color: #404040 !important; /* Foco mais claro */
    border-color: var(--input-focus-border);
    color: #fff !important;
    box-shadow: 0 0 0 0.25rem rgba(217, 83, 79, 0.25);
}

.form-control::placeholder {
    color: var(--placeholder-color);
    opacity: 0.8;
}

.input-group-text {
    background-color: #404040;
    border-color: var(--input-border);
    color: var(--text-primary);
}

.form-label {
    color: var(--text-secondary);
    font-weight: 500;
}

.form-control:disabled, .form-control[readonly] {
    background-color: #222 !important;
    opacity: 0.8;
    color: #ccc !important;
}

/* Table Inputs & Admin Specifics */
.table .form-control {
    background-color: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(255, 255, 255, 0.2);
}

.table .form-control:focus {
    background-color: rgba(255, 255, 255, 0.15) !important;
    border-color: var(--accent-color);
}

.admin-info-box {
    background: #000000;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 15px;
    margin-top: 15px;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.5);
}

.admin-info-label {
    color: #888;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.admin-info-value {
    color: #ffffff !important;
    font-size: 1.4rem;
    font-family: var(--font-display);
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}


/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    text-transform: uppercase;
}

/* Header & Stats */
.logo-area {
    font-family: var(--font-display);
    font-size: 1.8rem;
    letter-spacing: 2px;
}

.stat-item {
    text-align: right;
    display: flex;
    flex-direction: column;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    letter-spacing: 1px;
    font-weight: 600;
}

.stat-value {
    font-family: var(--font-display);
    font-size: 1.5rem;
    line-height: 1;
    font-weight: 500;
}

/* Timer Display */
.timer-wrapper {
    margin-bottom: 2rem;
}

.timer-display {
    font-family: var(--font-display);
    font-size: 10rem;
    font-weight: 700;
    color: var(--gold-color);
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.2);
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

@media (max-width: 768px) {
    .timer-display {
        font-size: 6rem;
    }
}

/* Blinds Container */
.blinds-container {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px 0;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.blind-box {
    text-align: center;
    position: relative;
}

.small-blind-label {
    font-size: 1rem;
    letter-spacing: 3px;
    color: var(--text-secondary);
    margin-bottom: 5px;
    font-weight: 600;
}

.blind-value {
    font-family: var(--font-display);
    font-size: 5.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    text-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

@media (max-width: 768px) {
    .blind-value {
        font-size: 3.5rem;
    }
}

.blind-divider {
    font-size: 2rem;
    opacity: 0.5;
}

/* Next Level Bar */
.next-level-bar {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    padding: 10px 30px;
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.next-blind-info {
    font-size: 1.2rem;
    font-family: var(--font-display);
}

/* Tables */
.table-card-item {
    /* Used by ScrollReveal */
}

.table-container {
    background: #1e1e1e;
    border-radius: 16px;
    padding: 0;
    border: 1px solid #333;
    overflow: hidden;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.table-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border-color: #444;
}

.table-title {
    background: #252525;
    padding: 15px;
    font-family: var(--font-display);
    font-size: 1.2rem;
    letter-spacing: 1px;
    color: var(--text-primary);
    border-bottom: 1px solid #333;
}

.seats-list {
    padding: 15px;
}

.table-seat {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.table-seat:last-child {
    border-bottom: none;
}

.seat-num {
    background: #333;
    color: #fff;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    margin-right: 10px;
    font-weight: bold;
}

/* Utilities */
.text-decoration-line-through {
    opacity: 0.5;
}

/* Break Mode Styles */
.break-mode .blind-divider,
.break-mode .blind-box.right {
    display: none;
}
.break-mode .blind-box.left {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
}

.cornova {

color:#ffffff!important;


}