:root {
    --ct-dark: #000000;
    --ct-primary: #111111;
    --ct-accent: #00d4ff;
    --ct-gold: #f5c518;
    --ct-light: #e0e0e0;
    --ct-card: #1a1a1a;
    --ct-border: #2a2a2a;
}

body {
    font-family: 'Figtree', Arial, sans-serif;
    margin: 0;
    background: var(--ct-dark);
    color: var(--ct-light);
}

/* Header */
.ct-header { background: var(--ct-primary); padding: 0; }
.ct-header-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; padding: 12px 20px; }
.ct-logo { color: #fff; font-size: 1.8rem; font-weight: 700; text-decoration: none; letter-spacing: -0.5px; }
.ct-logo span { color: var(--ct-accent); }
.ct-search { flex: 1; max-width: 450px; margin: 0 30px; position: relative; }
.ct-search input { width: 100%; padding: 10px 16px; border: none; border-radius: 4px; font-size: 0.95rem; background: #222; color: #fff; outline: none; box-sizing: border-box; }
.ct-search input::placeholder { color: #666; }
.ct-header-links a { color: #aaa; text-decoration: none; margin-left: 18px; font-size: 0.9rem; transition: color 0.2s; }
.ct-header-links a:hover { color: #fff; }
.ct-header-links .ct-btn-login { background: var(--ct-accent); color: #000; padding: 7px 18px; border-radius: 4px; font-weight: 600; }
.ct-header-links .ct-btn-login:hover { background: #00a8cc; }

/* Nav */
.ct-nav { background: var(--ct-primary); border-bottom: 3px solid var(--ct-accent); }
.ct-nav-inner { max-width: 1200px; margin: 0 auto; display: flex; gap: 0; }
.ct-nav a { color: #888; text-decoration: none; padding: 12px 20px; font-size: 0.9rem; font-weight: 500; transition: all 0.2s; border-bottom: 3px solid transparent; margin-bottom: -3px; }
.ct-nav a:hover, .ct-nav a.active { color: #fff; background: rgba(255,255,255,0.05); border-bottom-color: var(--ct-gold); }

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

/* Footer */
.ct-footer { background: var(--ct-primary); padding: 20px; margin-top: 40px; }
.ct-footer-copy { text-align: center; color: #444; font-size: 0.75rem; }

/* Responsive header */
@media (max-width: 768px) {
    .ct-header-inner { flex-wrap: wrap; gap: 10px; }
    .ct-search { order: 3; max-width: 100%; margin: 0; flex-basis: 100%; }
}
