/* ===== UNIFIED DESIGN SYSTEM ===== */
:root {
    --bg: #0a0a0a;
    --card: #0f0f0f;
    --accent: #ffb74d;
    --green: #00e676;
    --red: #ff5252;
    --orange: #ffb74d;
    --text-primary: #e0e0e0;
    --text-secondary: #ccc;
    --text-muted: #888;
    --border: #1c1c1c;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: var(--bg);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* ===== UNIFIED HEADER ===== */
.unified-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    z-index: 10;
    background: transparent;
}

.header-timer {
    font-size: 18px;
    font-weight: 600;
    color: var(--accent);
    white-space: nowrap;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-button {
    color: var(--accent);
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    transition: color 0.2s;
    font-family: inherit;
}

.header-button:hover {
    color: #ffcc80;
}

.header-logo {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 0px solid #222;
}

/* ===== UNIFIED FOOTER ===== */
.unified-footer {
    margin-top: 80px;
    padding: 50px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-left,
.footer-center,
.footer-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-center {
    color: #666;
    font-size: 16px;
    font-weight: 500;
}

.footer-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--accent);
}

.instagram-icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
    .unified-header {
        flex-direction: column;
        gap: 12px;
        padding: 15px;
        position: relative;
    }
    
    .header-timer {
        font-size: 16px;
        text-align: center;
    }
    
    .header-right {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .header-button {
        display: inline-block;
        padding: 10px 22px;
        background: var(--accent);
        color: #000;
        font-size: 16px;
        font-weight: 600;
        border-radius: 6px;
        text-decoration: none;
    }
    
    .header-button:hover {
        background: #ff9800;
        color: #000;
    }
    
    .header-logo {
        width: 100px;
        height: 100px;
    }
    
    .unified-footer {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 40px 0;
    }
    
    .footer-left,
    .footer-center,
    .footer-right {
        justify-content: center;
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.bg-card { background: var(--card); }
.border { border: 1px solid var(--border); }
.rounded { border-radius: 8px; }
.p-20 { padding: 20px; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mt-60 { margin-top: 60px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }