/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #ffffff;
    min-height: 100vh;
    line-height: 1.6;
}

/* Navigation */
.navbar {
    background: linear-gradient(90deg, #0f0f1e 0%, #1a1a3e 100%);
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #ffd700;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand {
    font-size: 1.5em;
    font-weight: bold;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
}

.navbar-nav {
    display: flex;
    gap: 25px;
    list-style: none;
}

.navbar-nav a {
    color: #fff;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 5px;
    transition: all 0.3s;
}

.navbar-nav a:hover {
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
}

/* Header */
.header {
    background: linear-gradient(90deg, #0f0f1e 0%, #1a1a3e 100%);
    padding: 40px 30px;
    text-align: center;
    border-bottom: 3px solid #ffd700;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
}

.header h1 {
    font-size: 3.5em;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1.3em;
    color: #888;
    margin-bottom: 20px;
}

.countdown-main {
    background: rgba(255, 215, 0, 0.1);
    border: 3px solid #ffd700;
    border-radius: 15px;
    padding: 25px;
    display: inline-block;
}

.countdown-title {
    font-size: 1em;
    color: #ffd700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.countdown-time {
    font-size: 3em;
    font-weight: bold;
    color: #ffffff;
}

.countdown-time span {
    display: inline-block;
    min-width: 80px;
}

/* Compact Daily Timers Section */
.daily-timers-section {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 107, 107, 0.1) 100%);
    border: 2px solid #ffd700;
    border-radius: 15px;
    padding: 20px;
    margin: 20px auto;
    max-width: 1400px;
}

.daily-timers-title {
    text-align: center;
    font-size: 1.5em;
    color: #ffd700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.timers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.timer-card {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(255, 215, 0, 0.1) 100%);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.timer-card:hover {
    transform: translateY(-3px);
    border-color: #ffd700;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

.timer-card.launch-timer {
    border-color: #ff6b6b;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.2) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.timer-card.launch-timer:hover {
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.timer-label {
    font-size: 0.9em;
    color: #ffd700;
    font-weight: bold;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.timer-card.launch-timer .timer-label {
    color: #ff6b6b;
    font-size: 1em;
}

.timer-date {
    font-size: 0.75em;
    color: #888;
    margin-bottom: 10px;
}

.timer-display {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
    margin-top: 10px;
}

.timer-unit {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 6px;
    padding: 8px 5px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.timer-card.launch-timer .timer-unit {
    border-color: rgba(255, 107, 107, 0.5);
}

.timer-number {
    font-size: 1.8em;
    font-weight: bold;
    color: #ffd700;
    display: block;
    line-height: 1;
}

.timer-card.launch-timer .timer-number {
    color: #ff6b6b;
    font-size: 2em;
}

.timer-text {
    font-size: 0.65em;
    color: #888;
    text-transform: uppercase;
    margin-top: 3px;
}

.timer-status {
    margin-top: 10px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75em;
    font-weight: bold;
    display: inline-block;
}

.status-upcoming {
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
    border: 1px solid rgba(255, 215, 0, 0.5);
}

.status-active {
    background: rgba(40, 167, 69, 0.3);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.5);
    animation: pulse 2s infinite;
}

.status-launched {
    background: rgba(255, 107, 107, 0.3);
    color: #ff6b6b;
    border: 1px solid rgba(255, 107, 107, 0.5);
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(0.98); }
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: #ffd700;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.stat-card h3 {
    color: #888;
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.stat-card .number {
    font-size: 3.5em;
    font-weight: bold;
    color: #ffd700;
}

.stat-card .label {
    color: #aaa;
    margin-top: 10px;
}

.progress-bar {
    background: rgba(255, 255, 255, 0.1);
    height: 10px;
    border-radius: 10px;
    margin-top: 20px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ffd700, #ffed4e);
    border-radius: 10px;
    transition: width 0.5s ease;
}

/* Sections */
.section {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 35px;
    margin-bottom: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
}

.section h2 {
    font-size: 1.8em;
    color: #ffd700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-icon {
    font-size: 1.2em;
}

/* Buttons */
.btn {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #1a1a2e;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-size: 0.9em;
}

.btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

.btn-small {
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
    border: 1px solid #ffd700;
    padding: 5px 12px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 0.8em;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-small:hover {
    background: #ffd700;
    color: #1a1a2e;
}

/* Tables */
.tracks-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.tracks-table th {
    background: rgba(255, 215, 0, 0.1);
    padding: 18px;
    text-align: left;
    color: #ffd700;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85em;
    letter-spacing: 1px;
}

.tracks-table td {
    padding: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tracks-table tr:hover {
    background: rgba(255, 215, 0, 0.05);
}

/* Status Badges */
.status-badge {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: bold;
    text-transform: uppercase;
}

.status-pending {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.5);
}

.status-done {
    background: rgba(40, 167, 69, 0.2);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.5);
}

.status-urgent {
    background: rgba(220, 53, 69, 0.2);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.5);
}

/* Quick Links */
.quick-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.quick-link {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    text-decoration: none;
    color: #ffd700;
    transition: all 0.3s ease;
}

.quick-link:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: translateY(-3px);
}

.quick-link-icon {
    font-size: 2.5em;
    margin-bottom: 10px;
}

/* Footer */
.footer {
    background: linear-gradient(90deg, #0f0f1e 0%, #1a1a3e 100%);
    border-top: 2px solid #ffd700;
    padding: 30px;
    text-align: center;
    margin-top: 50px;
}

.footer p {
    color: #888;
}

.footer .brand {
    color: #ffd700;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
    .header h1 {
        font-size: 2.5em;
    }
    
    .countdown-time {
        font-size: 2em;
    }
    
    .countdown-time span {
        min-width: 60px;
    }
    
    .timers-grid {
        grid-template-columns: 1fr;
    }
    
    .timer-card.launch-timer {
        grid-column: 1;
    }
    
    .navbar-nav {
        display: none;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .section {
        padding: 20px;
    }
}

/* Forms */
.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: #888;
    margin-bottom: 8px;
    font-size: 0.95em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #fff;
    font-size: 1em;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ffd700;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}