:root { --maroon: #4a0404; --gold: #d4af37; --dark: #121212; }
body { margin: 0; font-family: 'Montserrat', sans-serif; background: var(--dark); color: white; overflow-x: hidden; }

.navbar { display: flex; justify-content: space-between; align-items: center; padding: 20px 5%; background: rgba(0,0,0,0.9); position: fixed; width: 90%; z-index: 99; border-bottom: 1px solid var(--gold); }
.logo { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--gold); letter-spacing: 2px; }
.nav-links a { color: white; text-decoration: none; margin-left: 20px; font-weight: 500; font-size: 0.9rem; }

.hero { height: 100vh; background: linear-gradient(rgba(74,4,4,0.7), rgba(18,18,18,1)), url('../img/hero.jpg') center/cover; display: flex; align-items: center; justify-content: center; text-align: center; }
.hero h1 { font-family: 'Playfair Display', serif; font-size: 4rem; margin-bottom: 10px; color: white; }
.timer { font-size: 1.5rem; color: var(--gold); margin: 20px 0; border: 1px solid var(--gold); padding: 10px; display: inline-block; }

.btn-gold { background: var(--gold); color: black !important; padding: 10px 25px; border-radius: 5px; transition: 0.3s; }
.btn-gold:hover { transform: scale(1.1); box-shadow: 0 0 20px rgba(212,175,55,0.5); }

.brand-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; padding: 50px 5%; }
.brand-item { background: #1a1a1a; padding: 40px; border: 1px solid #333; text-align: center; border-radius: 10px; transition: 0.5s; }
.brand-item:hover { border-color: var(--gold); background: var(--maroon); }

/* Dashboard Styles */
.dashboard-container { display: flex; min-height: 100vh; }
.sidebar { width: 260px; background: var(--maroon); padding: 30px; }
.main-content { flex: 1; background: white; color: #333; padding: 40px; }