/* VibePickers - Modern Clean Design */
:root {
  --primary: #2c3e50;
  --secondary: #e74c3c;
  --accent: #3498db;
  --success: #27ae60;
  --bg: #f8f9fa;
  --surface: #ffffff;
  --text: #2c3e50;
  --text-light: #7f8c8d;
  --border: #e9ecef;
  --radius: 8px;
  --shadow: 0 2px 10px rgba(0,0,0,0.08);
  --shadow-lg: 0 4px 20px rgba(0,0,0,0.12);
  --transition: all 0.2s ease;
}

/* Fix Bootstrap's font-size issue */
html {
  font-size: 16px !important;
}

/* Responsive font sizing */
@media (max-width: 768px) {
  html {
    font-size: 14px !important;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 13px !important;
  }
}

/* Games Hub Page Styles */
.game-hub-section {
  padding: 4rem 0;
  background: var(--bg);
}

.hub-header {
  text-align: center;
  margin-bottom: 3rem;
}

.hub-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

.hub-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.game-card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--border);
}

.game-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.game-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
}

.game-header h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.game-category {
  background: rgba(255, 255, 255, 0.2);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
}

.game-frame-container {
  position: relative;
  width: 100%;
  height: 300px;
  background: #f8f9fa;
  overflow: hidden;
}

.game-frame {
  width: 100%;
  height: 100%;
  border: none;
  background: #f8f9fa;
}

.game-description {
  padding: 1.5rem;
}

.game-description p {
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

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

body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
}

/* Legal Pages */
.vibepickers-terms,
.vibepickers-privacy-policy,
.vibepickers-cookies {
  padding: 4rem 0;
  background: var(--surface);
}

.vibepickers-section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 2rem;
  text-align: center;
}

/* Support Page */
.support-hero {
  text-align: center;
  margin-bottom: 3rem;
  padding: 3rem 0;
  background: var(--primary);
  color: white;
  border-radius: var(--radius);
}

.support-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.support-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
}

.support-form {
  background: white;
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  margin: 2rem 0;
  border: 1px solid var(--border);
}

.contact-form-section {
  margin-bottom: 3rem;
}

.contact-form-section h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-info-card {
  background: white;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  margin-top: 2rem;
  border: 1px solid var(--border);
}

.contact-info-card h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-info-list li {
  margin-bottom: 1rem;
  color: var(--text-light);
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-info-list a {
  color: var(--accent);
  text-decoration: none;
  transition: var(--transition);
}

.contact-info-list a:hover {
  color: var(--primary);
  text-decoration: underline;
}

/* Navigation */
.vibepickers-navbar-pill {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.vibepickers-navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
}

.vibepickers-navbar-home-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: var(--transition);
}

.vibepickers-navbar-home-link:hover {
  transform: scale(1.02);
}

.vibepickers-navbar-logo {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  background: var(--primary);
  padding: 6px;
  box-shadow: var(--shadow);
}

.vibepickers-navbar-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary);
  margin-left: 1rem;
  letter-spacing: -0.5px;
}

.vibepickers-navbar-right {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.vibepickers-nav-link-pill {
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.6rem 1rem;
  border-radius: 6px;
  transition: var(--transition);
  text-decoration: none;
  border: 1px solid transparent;
}

.vibepickers-nav-link-pill:hover,
.vibepickers-nav-link-pill.active {
  background: var(--primary);
  color: white;
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.vibepickers-cta-btn {
  background: var(--secondary);
  color: white;
  font-weight: 600;
  padding: 0.7rem 1.3rem;
  border-radius: 6px;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: var(--shadow);
  border: 1px solid transparent;
}

.vibepickers-cta-btn:hover {
  background: #c0392b;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.vibepickers-navbar-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  transition: var(--transition);
}

.vibepickers-navbar-toggle:hover {
  background: var(--border);
}

.vibepickers-navbar-toggle-bar {
  width: 20px;
  height: 2px;
  background: var(--text);
  margin: 2px 0;
  border-radius: 2px;
  transition: var(--transition);
}

/* Hero Section */
.hero-section {
  background: var(--surface);
  color: var(--text);
  padding: 5rem 0 4rem;
  position: relative;
  border-bottom: 1px solid var(--border);
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  background: var(--accent);
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  color: var(--primary);
}

.hero-highlight {
  color: var(--secondary);
}

.hero-description {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--text-light);
  line-height: 1.7;
}

.hero-notice {
  background: #fff3cd;
  border: 1px solid #ffeaa7;
  color: #856404;
  padding: 1rem;
  border-radius: 6px;
  margin-bottom: 2rem;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  padding: 0.9rem 1.8rem;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
}

.btn-primary {
  background: var(--secondary);
  color: white;
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  background: #c0392b;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.hero-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

/* Sections */
.section {
  padding: 4rem 0;
  position: relative;
}

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

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 3rem;
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.card {
  background: white;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border);
  position: relative;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.card-icon {
  width: 50px;
  height: 50px;
  background: var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}

.card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary);
}

.card p {
  color: var(--text-light);
  line-height: 1.6;
}

/* Features Grid */
.features-section {
  background: var(--surface);
  padding: 4rem 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background: white;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border);
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  margin: 0 auto 1.5rem;
}

.feature-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary);
}

.feature-card p {
  color: var(--text-light);
  line-height: 1.6;
}

/* Process Steps */
.process-section {
  background: var(--bg);
  padding: 4rem 0;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.step {
  background: white;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  text-align: center;
  position: relative;
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--secondary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
}

.step-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary);
}

.step-content p {
  color: var(--text-light);
  line-height: 1.6;
}

/* Games Section */
.games-section {
  background: var(--surface);
  padding: 4rem 0;
  border-radius: 12px;
  margin: 3rem 0;
}

.game-showcase {
  text-align: center;
  margin-bottom: 3rem;
}

.game-showcase h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 2rem;
}

.game-frame {
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16 / 10;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--border);
  background: white;
  margin: 0 auto;
}

/* Community Section */
.community-section {
  background: var(--bg);
  padding: 4rem 0;
}

.community-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.community-card {
  background: white;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.community-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.community-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary);
}

.community-card p {
  color: var(--text-light);
  line-height: 1.6;
}

/* Footer */
.vibepickers-footer {
  background: var(--primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 4rem;
}

.vibepickers-footer p {
  margin-bottom: 0.5rem;
  opacity: 0.9;
}

.vibepickers-footer a {
  color: var(--accent);
  text-decoration: none;
  transition: var(--transition);
}

.vibepickers-footer a:hover {
  color: white;
  text-decoration: underline;
}

/* Forms */
.form-section {
  background: white;
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  margin: 2rem 0;
  border: 1px solid var(--border);
}

.form-group {
  margin-bottom: 1.5rem;
}

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

.form-control {
  width: 100%;
  padding: 0.9rem;
  border: 2px solid var(--border);
  border-radius: 6px;
  font-size: 1rem;
  transition: var(--transition);
  background: white;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(52,152,219,0.1);
}

/* GDPR Popup */
#vibepickers-gdpr-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary);
  color: white;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 2000;
  transform: translateY(100%);
  transition: var(--transition);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

#vibepickers-gdpr-popup:not(.hide) {
  transform: translateY(0);
}

.vibepickers-gdpr-btn {
  background: var(--secondary);
  color: white;
  border: none;
  padding: 0.7rem 1.3rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.vibepickers-gdpr-btn:hover {
  background: #c0392b;
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .vibepickers-navbar-right {
    display: none;
    position: absolute;
    top: 100%;
    left: 1rem;
    right: 1rem;
    background: white;
    border-radius: 8px;
    flex-direction: column;
    padding: 1rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
  }
  
  .vibepickers-navbar-right.open {
    display: flex;
  }
  
  .vibepickers-navbar-toggle {
    display: flex;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .card-grid,
  .features-grid,
  .process-steps,
  .community-grid,
  .games-grid {
    grid-template-columns: 1fr;
  }
  
  .hub-title {
    font-size: 2.5rem;
  }
  
  .game-frame-container {
    height: 250px;
  }
  
  #vibepickers-gdpr-popup {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    padding: 2rem;
  }
} 