/* ============================================================ 
   CoolShades.net — Casino Affiliate Site
   Dark Theme | Gold Accents | Mobile-First
   ============================================================ */

/* === VARIABLES === */
:root {
  --bg-primary: #0a0a0f;
  --bg-secondary: #12121a;
  --bg-card: #1a1a26;
  --bg-hover: #222233;
  --gold: #FFD700;
  --gold-light: #FFE55C;
  --gold-dark: #B8960F;
  --text-primary: #f0f0f0;
  --text-secondary: #a0a0b0;
  --text-muted: #6a6a7a;
  --border: #2a2a3a;
  --green: #00c853;
  --red: #ff1744;
  --blue: #448aff;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 20px rgba(0,0,0,0.4);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-light); }

/* === HEADER / NAV === */
header {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold) !important;
  letter-spacing: -0.5px;
}
.logo span { color: var(--text-primary); }

nav.desktop-nav { display: flex; gap: 8px; align-items: center; }

nav a {
  color: var(--text-secondary);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s;
}
nav a:hover {
  color: var(--gold);
  background: var(--bg-hover);
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-width: 220px;
  box-shadow: var(--shadow);
  z-index: 200;
  padding: 8px;
}
.dropdown-menu a {
  display: block;
  padding: 10px 16px;
  border-radius: 6px;
  color: var(--text-secondary);
  font-size: 0.85rem;
  white-space: nowrap;
}
.dropdown-menu a:hover { background: var(--bg-hover); color: var(--gold); }
.dropdown:hover .dropdown-menu { display: block; }

.mobile-menu-btn {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--text-primary);
  font-size: 1.5rem;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.insta-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 12px;
  max-height: 70vh;
  overflow-y: auto;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 12px 16px;
  border-radius: 6px;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav .mobile-category {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 16px 16px 8px;
  border-bottom: none;
}

/* === HERO === */
.hero {
  background: linear-gradient(135deg, var(--bg-primary) 0%, #1a1020 50%, var(--bg-secondary) 100%);
  padding: 80px 20px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.hero .btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #000;
  font-weight: 700;
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 1.05rem;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}
.hero .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 215, 0, 0.3);
  color: #000;
}

/* === SECTIONS === */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--gold);
}

.section-subtitle {
  color: var(--text-secondary);
  margin-bottom: 40px;
  font-size: 1rem;
}

/* === TRUST BADGES === */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 60px 0;
}

.trust-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s;
}
.trust-card:hover {
  border-color: var(--gold-dark);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(255,215,0,0.08);
}

.trust-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.trust-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.trust-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* === CASINO CARDS GRID === */
.casino-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 20px;
}

.casino-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
}
.casino-card:hover {
  border-color: var(--gold-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255,215,0,0.06);
}

.casino-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.casino-card-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
}

.casino-card-rating {
  color: var(--gold);
  font-size: 0.9rem;
}

.casino-card-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 0.85rem;
}

.casino-card-info span {
  color: var(--text-secondary);
}
.casino-card-info strong {
  color: var(--text-primary);
  display: block;
  font-weight: 600;
}

.btn-visit {
  display: block;
  text-align: center;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #000;
  font-weight: 700;
  padding: 12px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  margin-top: auto;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}
.btn-visit:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(255,215,0,0.25);
  color: #000;
}

/* === INDIVIDUAL CASINO REVIEW PAGE === */
.review-hero {
  background: linear-gradient(135deg, var(--bg-primary) 0%, #1a1020 100%);
  padding: 60px 20px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.review-hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 12px;
}

.review-hero .rating {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 8px;
}
.review-hero .rating-text {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.review-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

.info-table {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 40px;
}

.info-row {
  display: flex;
  border-bottom: 1px solid var(--border);
  padding: 14px 20px;
}
.info-row:last-child { border-bottom: none; }

.info-label {
  width: 160px;
  font-weight: 600;
  color: var(--gold);
  flex-shrink: 0;
}

.info-value {
  color: var(--text-primary);
}

.review-section {
  margin-bottom: 40px;
}

.review-section h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.review-section p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 12px;
}

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

.pros, .cons {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.pros h3 { color: var(--green); margin-bottom: 12px; }
.cons h3 { color: var(--red); margin-bottom: 12px; }

.pros ul, .cons ul { list-style: none; }
.pros li, .cons li {
  padding: 6px 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
}
.pros li::before { content: "✓ "; color: var(--green); font-weight: 700; }
.cons li::before { content: "✗ "; color: var(--red); font-weight: 700; }

.game-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 12px;
  margin-bottom: 40px;
}

.game-tag {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.85rem;
  transition: all 0.2s;
}
.game-tag:hover {
  border-color: var(--gold-dark);
  color: var(--gold);
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px;
  margin-bottom: 12px;
}
.faq-item h4 {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 8px;
}
.faq-item p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

.cta-box {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  margin: 40px 0;
}

.cta-box h3 {
  color: #000;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.cta-box p {
  color: rgba(0,0,0,0.7);
  margin-bottom: 20px;
}

.cta-box .btn-visit {
  display: inline-block;
  background: #000;
  color: var(--gold);
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
}
.cta-box .btn-visit:hover { background: #111; color: var(--gold-light); }

/* === DISCLOSURE === */
.disclosure {
  max-width: 900px;
  margin: 0 auto 40px;
  padding: 16px 20px;
  background: rgba(255,215,0,0.05);
  border: 1px solid var(--gold-dark);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
}

/* === FOOTER === */
footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 40px 20px 24px;
  margin-top: 60px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.footer-col h4 {
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col a {
  display: block;
  color: var(--text-secondary);
  font-size: 0.85rem;
  padding: 4px 0;
}
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  max-width: 1200px;
  margin: 32px auto 0;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.footer-bottom .age-warning {
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 8px;
}

/* === CONTACT PAGE === */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--text-primary);
  font-family: var(--font);
  font-size: 0.9rem;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold-dark);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

/* === BREADCRUMBS === */
.breadcrumbs {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 20px 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.breadcrumbs a { color: var(--text-muted); }
.breadcrumbs a:hover { color: var(--gold); }
.breadcrumbs .current { color: var(--gold); }

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .header-inner { height: 56px; }
  nav.desktop-nav { display: none; }
  .mobile-menu-btn { display: block; }
  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 1rem; }
  .trust-grid { grid-template-columns: 1fr; }
  .casino-grid { grid-template-columns: 1fr; }
  .pros-cons { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 24px; }
  .info-row { flex-direction: column; gap: 4px; }
  .info-label { width: 100%; }
  .section-title { font-size: 1.5rem; }
  .review-hero h1 { font-size: 1.8rem; }
  .cta-box { padding: 24px; }
  .cta-box h3 { font-size: 1.2rem; }
  .game-list { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.6rem; }
  .hero { padding: 50px 16px; }
  .section { padding: 40px 16px; }
}

/* === ANIMATIONS === */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate { animation: fadeUp 0.5s ease forwards; }
.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
