/* CSS Variables */
:root {
  --bg-dark: #1a0404;
  --accent-yellow: #ff7207;
  --accent-pink: #ff7474;
  --text-light: #ffffff;
  --text-muted: #b0b0b0;
  --card-bg: #ffffff;
  --gradient-btn: linear-gradient(135deg, #ff7474 0%, #ff7207 100%);
}

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

body {
  font-family: "Roboto", sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
}

/* Header Styles */
.navbar {
  background-color: var(--bg-dark) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-light) !important;
}

.navbar-nav .nav-link {
  color: var(--text-light) !important;
  font-weight: 500;
  margin: 0 10px;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--accent-yellow) !important;
}

.btn-outline-warning {
  border-color: var(--accent-yellow);
  color: var(--accent-yellow);
  font-weight: 600;
  padding: 8px 20px;
  margin-left: 15px;
}

.btn-outline-warning:hover {
  background-color: var(--accent-yellow);
  border-color: var(--accent-yellow);
  color: var(--bg-dark);
}

/* Age Warning Banner */
.age-warning {
  margin-top: 90px;
  background-color: #fff4ef;
  color: #333;
  text-align: center;
  padding: 10px 0;
  font-size: 0.9rem;
  border-bottom: 1px solid #dee2e6;
}

.age-warning .badge {
  background-color: #dc6d35;
  color: white;
  font-size: 0.8rem;
  margin-right: 10px;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(rgba(22, 21, 21, 0.7), rgba(22, 21, 21, 0.7)), url("/img/hero-bg.webp");
  background-size: cover;
  background-position: center;
  min-height: 70vh;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 30px;
}

/* Platform Cards */
.platform-cards {
  padding: 80px 0;
}

.platform-card {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 30px 25px;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #333;
  min-height: 470px;
}

.platform-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Wave decoration for cards */
.platform-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 20px;
  background: var(--gradient-btn);
  border-radius: 40px 40px 0 0;
  clip-path: ellipse(100% 100% at 50% 0%);
}

.platform-card.card-cream::before {
  background: linear-gradient(135deg, #c1c15f 0%, #b9b9f5 100%);
}

.platform-card.card-brown::before {
  background: linear-gradient(135deg, #f7cbac 0%, #daa48c 100%);
}

.platform-card.card-green::before {
  background: linear-gradient(135deg, #b865c8 0%, #d9bf8e 100%);
}

.platform-card.card-purple::before {
  background: linear-gradient(135deg, #db7070 0%, #d35555 100%);
}

.card-number {
  position: absolute;
  top: 15px;
  left: 25px;
  width: 35px;
  height: 35px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  z-index: 2;
}

.card-badge {
  position: absolute;
  top: 15px;
  right: 25px;
  background: #7cb342;
  color: white;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
}

.platform-logo {
  text-align: center;
  margin: 40px 0 20px;
  font-size: 1.8rem;
  font-weight: 700;
}

.platform-rating {
  text-align: center;
  margin-bottom: 15px;
}

.rating-number {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
}

.stars {
  color: #ffc107;
  font-size: 1.2rem;
  margin-top: 5px;
}

.platform-offer {
  text-align: center;
  margin: 20px 0 30px;
  font-weight: 600;
  color: #555;
}

.btn-platform {
  background: var(--gradient-btn);
  border: none;
  color: #333;
  font-weight: 700;
  padding: 12px 30px;
  border-radius: 8px;
  width: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-platform:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 116, 184, 0.3);
  color: #333;
}

/* Features Section */
.features-section {
  padding: 80px 0;
  background: rgba(255, 255, 255, 0.02);
}

.features-section h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 50px;
  color: var(--text-light);
}

.feature-item {
  text-align: center;
  padding: 30px 20px;
}

.feature-item h4 {
  color: var(--accent-yellow);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
}

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

/* Footer */
.footer {
  background-color: #0f0f0f;
  padding: 60px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-icons {
  text-align: center;
  margin-bottom: 40px;
}

.footer-icon {
  display: inline-block;
  width: 90px;
  /* height: 60px; */
  margin: 0 15px;
}

.footer-icon:hover {
  background: rgba(255, 220, 7, 0.2);
}

.footer-links {
  text-align: center;
  margin-bottom: 30px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  margin: 0 15px;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

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

.footer-contact {
  text-align: center;
  margin-bottom: 30px;
}

.footer-contact p {
  color: var(--text-muted);
  margin-bottom: 5px;
  font-size: 0.9rem;
}

.footer-disclaimer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Popups */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.popup-content {
  background: var(--card-bg);
  color: #333;
  padding: 40px;
  border-radius: 15px;
  max-width: 500px;
  text-align: center;
  position: relative;
}

.popup-content h3 {
  margin-bottom: 20px;
  color: #333;
}

.popup-buttons {
  margin-top: 30px;
}

.popup-buttons .btn {
  margin: 0 10px;
  padding: 10px 25px;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-dark);
  border-top: 2px solid var(--accent-yellow);
  padding: 20px;
  z-index: 9998;
  display: none;
}

.cookie-banner p {
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.cookie-banner .btn {
  margin-right: 10px;
}

/* Form Styles */
.form-section {
  padding: 60px 0;
}

.form-container {
  background: rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
}

.form-container h3 {
  color: var(--accent-yellow);
  margin-bottom: 30px;
}

.form-control {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-light);
  padding: 12px 15px;
}

.form-control:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--accent-yellow);
  color: var(--text-light);
  box-shadow: 0 0 0 0.2rem rgba(255, 220, 7, 0.25);
}

.form-control::placeholder {
  color: var(--text-muted);
}

.btn-submit {
  background: var(--gradient-btn);
  border: none;
  color: #333;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.btn-submit:hover {
  transform: translateY(-2px);
  color: #333;
}

/* Blog Styles */
.blog-article {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
  transition: transform 0.3s ease;
}

.blog-article:hover {
  transform: translateY(-3px);
}

.blog-article h4 {
  color: var(--accent-yellow);
  margin-bottom: 15px;
}

.blog-article p {
  color: var(--text-muted);
  line-height: 1.6;
}

.blog-image {
  border-radius: 10px;
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* Page Header */
.page-header {
  background: linear-gradient(rgba(22, 21, 21, 0.6), rgba(22, 21, 21, 0.6)), url("/img/page-header-bg.webp");
  background-size: cover;
  background-position: center;
  padding: 120px 0 80px;
  text-align: center;
}

.page-header h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.page-header p {
  font-size: 1.2rem;
  color: var(--text-muted);
}

/* Content Sections */
.content-section {
  padding: 60px 0;
}

.content-section h2 {
  color: var(--accent-yellow);
  font-size: 2rem;
  margin-bottom: 30px;
}

.content-section h3 {
  color: var(--text-light);
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.content-section p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Additional Content Styles */
.content-section h3 {
  color: var(--accent-yellow);
  font-size: 1.3rem;
  margin-top: 30px;
  margin-bottom: 15px;
}

.content-section .mb-4 h3:first-child {
  margin-top: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .platform-card {
    margin-bottom: 20px;
  }
  
  .page-header h1 {
    font-size: 2.2rem;
  }
  
  .footer-icon {
    width: 50px;
    height: 50px;
    margin: 0 10px;
  }
  
  .content-section h2 {
    font-size: 1.7rem;
  }
  
  .content-section h3 {
    font-size: 1.2rem;
  }
}
