/* Base Styles & Variables */
:root {
  /* Color Palette */
  --bg-soft-cream: #F4FBFF;
  --section-bg: #E1F3FA;
  --card-bg: #FFFFFF;
  --accent-rose: #0B84A5;
  --accent-brown: #155E75;
  --border-mauve: #9FD2E3;
  --heading-expresso: #12313F;
  --text-taupe: #45616D;
  --warning-red: #C2410C;
  
  /* Spacing */
  --section-padding: 4rem 2rem;
  --container-max: 1200px;
  --border-radius: 12px;
}

/* Typography */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@600&family=Roboto:wght@400;500&display=swap');

body {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-taupe);
  background-color: var(--bg-soft-cream);
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: var(--heading-expresso);
  margin-top: 0;
}

/* Layout */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

a {
    text-decoration: none;
}

/* Age Disclaimer Banner */
.age-disclaimer {
    background-color: var(--accent-rose);
    color: white;
    padding: 0.5rem 0;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 400;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.age-disclaimer p {
    margin: 0;
    padding: 0.3rem 1rem;
    max-width: var(--container-max);
    margin: 0 auto;
}

@media (max-width: 768px) {
    .age-disclaimer {
        padding: 0.4rem 0;
        font-size: 0.85rem;
    }
}

section {
  padding: var(--section-padding);
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-tag {
  display: inline-block;
  background: rgba(183, 110, 121, 0.1);
  color: var(--accent-rose);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--heading-expresso);
  position: relative;
  padding-bottom: 1rem;
}

.section-divider {
  width: 80px;
  height: 4px;
  background: var(--accent-rose);
  margin: 0 auto;
  border-radius: 2px;
  position: relative;
}

.section-divider::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border: 4px solid var(--accent-rose);
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: white;
}

/* About Section */
.about-section {
  background-color: #fff;
  position: relative;
  overflow: hidden;
}

.about-content {
  display: flex;
  align-items: stretch;
  gap: 4rem;
  margin-top: 3rem;
}

.about-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Content Box Styles */
.about-content-box {
  flex: 1;
  display: flex;
  align-items: stretch;
}

.content-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.03);
  width: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.content-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.card-icon {
  width: 60px;
  height: 60px;
  background: rgba(183, 110, 121, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--accent-rose);
  font-size: 1.5rem;
}

.content-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--heading-expresso);
}

.content-card p {
  color: var(--text-taupe);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.features-list li {
  padding: 0.5rem 0;
  color: var(--text-taupe);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.features-list i {
  color: var(--accent-rose);
  font-size: 0.9rem;
}

.stats-container {
  display: flex;
  gap: 1.5rem;
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.stat-item {
  text-align: center;
  flex: 1;
}

.stat-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-rose);
  line-height: 1;
  margin-bottom: 0.25rem;
  font-family: 'Inter', sans-serif;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-taupe);
  opacity: 0.8;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .about-content {
    gap: 3rem;
  }
  
  .content-card {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
  }
  
  .about-content-box {
    margin-top: 1rem;
  }
  
  .stats-container {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .content-card {
    padding: 1.5rem;
  }
  
  .stats-container {
    flex-direction: column;
    gap: 1rem;
  }
  
  .stat-item {
    text-align: left;
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  
  .stat-number {
    margin-bottom: 0;
    font-size: 1.5rem;
  }
}

.about-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  background: #fff;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.about-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.icon-box {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: rgba(183, 110, 121, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent-rose);
  font-size: 1.5rem;
}

.about-item h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  color: var(--heading-expresso);
}

.about-item p {
  color: var(--text-taupe);
  margin: 0;
  line-height: 1.7;
}

.about-image {
  flex: 1;
  position: relative;
  min-height: 500px;
}

.image-frame {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.5s ease;
}

.about-image:hover img {
  transform: scale(1.03);
}

.experience-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: rgba(255, 255, 255, 0.95);
  padding: 1.5rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.experience-badge .years {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-rose);
  line-height: 1;
  margin-bottom: 0.25rem;
  font-family: 'Inter', sans-serif;
}

.experience-badge .text {
  display: block;
  font-size: 0.9rem;
  color: var(--text-taupe);
  line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .about-content {
    gap: 3rem;
  }
  
  .about-item {
    padding: 1.25rem;
  }
  
  .icon-box {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  
  .about-item h3 {
    font-size: 1.25rem;
  }
}

@media (max-width: 768px) {
  .about-content {
    flex-direction: column-reverse;
  }
  
  .about-image {
    min-height: 400px;
    margin-bottom: 2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .about-item {
    flex-direction: column;
    text-align: center;
  }
  
  .icon-box {
    margin: 0 auto 1rem;
  }
  
  .experience-badge {
    padding: 1rem;
    right: 15px;
    bottom: 15px;
  }
  
  .experience-badge .years {
    font-size: 2rem;
  }
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--accent-rose);
  color: white;
}

.btn-primary:hover {
  background-color: var(--accent-brown);
}

.btn-outline {
  border-color: var(--accent-rose);
  color: var(--accent-rose);
  background: transparent;
}

.btn-outline:hover {
  background-color: var(--accent-rose);
  color: white;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #063852 0%, #0B84A5 100%);
  padding: 6rem 0 8rem;
  overflow: hidden;
}

.hero-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  z-index: 2;
  gap: 3rem;
}

.hero-content {
  flex: 1 1 100%;
  max-width: 600px;
  position: relative;
  animation: fadeInUp 1s ease-out;
  text-align: center;
  margin: 0 auto;
  padding: 1.5rem;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.8rem;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 1.5rem;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.7;
  margin: 0 auto 2.5rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 90%;
  font-weight: 400;
}

.hero-features {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin: 2.5rem 0;
  flex-wrap: wrap;
  width: 100%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1.5rem;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 120px;
  padding: 1rem 0.5rem;
  gap: 0.7rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.7rem 1.3rem;
  border-radius: 50px;
  color: white;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.feature-item i {
  font-size: 1.1rem;
  color: var(--accent-rose);
}

.feature-item:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1.5rem;
}

.hero-buttons .btn {
  min-width: 180px;
  padding: 0.9rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.hero-buttons .btn-primary {
  background: var(--accent-rose);
  border: 2px solid var(--accent-rose);
}

.hero-buttons .btn-outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
}

.hero-buttons .btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
}

.hero-image {
  flex: 1 1 100%;
  max-width: 600px;
  margin: 3rem auto 0;
  padding: 0 1rem;
  position: relative;
  z-index: 1;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.image-container {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
  border: none;
  border-radius: 16px;
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="1" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,128C960,128,1056,192,1152,202.7C1248,213,1344,171,1392,149.3L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') center bottom no-repeat;
  background-size: cover;
  z-index: 1;
}

/* Responsive Design */
@media (min-width: 992px) {
  .hero-container {
    flex-wrap: nowrap;
    text-align: left;
  }
  
  .hero-content {
    flex: 1;
    text-align: left;
    padding-right: 3rem;
    margin: 0;
  }
  
  .hero-features {
    justify-content: flex-start;
  }
  
  .hero-buttons {
    justify-content: flex-start;
  }
  
  .hero-subtitle {
    margin-left: 0;
    max-width: 100%;
  }
  
  .hero-image {
    flex: 1;
    margin: 0;
    padding: 0;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 5rem 0;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
    max-width: 100%;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 4rem 0;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .feature-item {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
  }
  
  .hero-badge {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  }
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  animation: waveAnimation 22s ease-in-out infinite;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 2rem;
}

/* Process Section */
.process-section {
  background-color: #f9f9f9;
  position: relative;
  overflow: hidden;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.process-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.03);
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.process-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-rose), #d32f2f);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.process-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.process-card:hover::before {
  opacity: 1;
}

.step-number {
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent-rose);
  margin-bottom: 1.5rem;
  opacity: 0.7;
  font-family: 'Inter', sans-serif;
}

.step-icon {
  width: 80px;
  height: 80px;
  background: rgba(160, 23, 43, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--accent-rose);
  font-size: 1.8rem;
  transition: all 0.3s ease;
}

.process-card:hover .step-icon {
  transform: scale(1.1);
  background: var(--accent-rose);
  color: white;
}

.process-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--heading-expresso);
  position: relative;
  padding-bottom: 0.8rem;
}

.process-card h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: var(--accent-rose);
  opacity: 0.3;
  transition: all 0.3s ease;
}

.process-card:hover h3::after {
  width: 60px;
  opacity: 1;
}

.process-card p {
  color: var(--text-taupe);
  margin: 0;
  line-height: 1.7;
  font-size: 0.98rem;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
  .process-steps {
    gap: 1.5rem;
  }
  
  .process-card {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 992px) {
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .process-card {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 768px) {
  .process-steps {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .process-card {
    padding: 2rem;
  }
}

@media (max-width: 480px) {
  .process-card {
    padding: 1.8rem 1.5rem;
  }
  
  .step-icon {
    width: 70px;
    height: 70px;
    font-size: 1.6rem;
  }
  
  .process-card h3 {
    font-size: 1.3rem;
  }
  
  .process-card p {
    font-size: 0.95rem;
  }
}

/* Features Section */
.features-section {
  position: relative;
  background-color: #ffffff;
  overflow: hidden;
}

.features-section .section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.features-section .section-tag {
  display: inline-block;
  background: var(--accent-rose);
  color: white;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.features-section .section-title {
  font-size: 2.5rem;
  color: var(--heading-expresso);
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

.features-section .section-divider {
  width: 80px;
  height: 3px;
  background: var(--accent-rose);
  margin: 0 auto 1.5rem;
  position: relative;
}

.features-section .section-subtitle {
  color: var(--text-taupe);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.feature-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.03);
}

.feature-card.highlight {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(160, 23, 43, 0.1);
  border-color: rgba(160, 23, 43, 0.1);
}

.feature-card.highlight .feature-icon {
  background: rgba(160, 23, 43, 0.1);
  color: var(--accent-rose);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  border-radius: 50%;
  font-size: 2rem;
  color: var(--accent-rose);
  transition: all 0.3s ease;
}

.feature-card h3 {
  font-size: 1.4rem;
  color: var(--heading-expresso);
  margin-bottom: 1rem;
  font-weight: 700;
}

.feature-card p {
  color: var(--text-taupe);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 0.98rem;
}

.feature-number {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 3rem;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.03);
  line-height: 1;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.feature-card:hover .feature-number {
  color: rgba(160, 23, 43, 0.05);
  transform: scale(1.1);
}

/* Stats Section */
.stats-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 4rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.stat-item {
  text-align: center;
  padding: 0 2rem;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background: rgba(0, 0, 0, 0.1);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-rose);
  margin-bottom: 0.5rem;
  line-height: 1;
  font-family: 'Inter', sans-serif;
}

.stat-label {
  color: var(--text-taupe);
  font-size: 0.95rem;
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .features-grid {
    gap: 1.5rem;
  }
  
  .feature-card {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 992px) {
  .features-section .section-title {
    font-size: 2.2rem;
  }
  
  .feature-card.highlight {
    transform: none;
  }
  
  .stats-container {
    gap: 1.5rem;
  }
  
  .stat-item {
    padding: 0 1.5rem;
  }
}

@media (max-width: 768px) {
  .features-section .section-title {
    font-size: 2rem;
  }
  
  .features-section .section-subtitle {
    font-size: 1rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .stat-item:not(:last-child)::after {
    display: none;
  }
  
  .stat-item {
    width: 100%;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  
  .stat-item:last-child {
    border-bottom: none;
  }
}

@media (max-width: 480px) {
  .features-section .section-title {
    font-size: 1.8rem;
  }
  
  .feature-card {
    padding: 1.8rem 1.5rem;
  }
  
  .feature-icon {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
}

/* Info Notice Section */
#info-notice {
  background: linear-gradient(135deg, #f9f5ff 0%, #f0f4ff 100%);
  position: relative;
  overflow: hidden;
}

.notice-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 2.5rem;
  display: flex;
  align-items: flex-start;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.notice-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--accent-rose);
  border-radius: 8px 0 0 8px;
}

.notice-icon {
  font-size: 2.5rem;
  color: var(--accent-rose);
  margin-right: 1.8rem;
  flex-shrink: 0;
  margin-top: 0.5rem;
  transition: transform 0.3s ease;
}

.notice-content {
  flex: 1;
}

.notice-title {
  color: var(--heading-expresso);
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.notice-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--accent-rose);
  border-radius: 3px;
}

/* Highlight Points */
.highlight-points {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin: 1.5rem 0 2rem;
  padding: 1.2rem;
  background: rgba(160, 23, 43, 0.03);
  border-radius: 12px;
  border-left: 4px solid var(--accent-rose);
}

.highlight-item {
  display: flex;
  align-items: center;
  background: white;
  padding: 0.8rem 1.2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  flex: 1;
  min-width: 200px;
}

.highlight-icon {
  width: 36px;
  height: 36px;
  background: rgba(160, 23, 43, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  color: var(--accent-rose);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.highlight-text {
  font-weight: 600;
  color: var(--heading-expresso);
  font-size: 0.95rem;
}

.highlight-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.highlight-item:hover .highlight-icon {
  background: var(--accent-rose);
  color: white;
  transform: rotate(8deg) scale(1.1);
}

.notice-text {
  color: var(--text-taupe);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.notice-text p {
  margin-bottom: 1.2rem;
}

.notice-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.notice-link {
  color: var(--accent-rose);
  font-weight: 600;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.notice-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-rose);
  transition: width 0.3s ease;
}

.notice-link:hover {
  color: var(--accent-rose-dark);
}

.notice-link:hover::after {
  width: 100%;
}

.divider {
  color: #d1d5db;
  font-weight: 300;
  user-select: none;
}

/* Hover Effects */
.notice-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
}

.notice-card:hover .notice-icon {
  transform: rotate(10deg) scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .notice-card {
    flex-direction: column;
    padding: 2rem 1.5rem;
  }
  
  .notice-icon {
    margin-right: 0;
    margin-bottom: 1.5rem;
  }
  
  .notice-title {
    font-size: 1.6rem;
  }
  
  .notice-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }
  
  .divider {
    display: none;
  }
}

@media (max-width: 480px) {
  .notice-card {
    padding: 1.8rem 1.25rem;
  }
  
  .notice-title {
    font-size: 1.5rem;
  }
  
  .notice-text {
    font-size: 0.95rem;
  }
}

/* Animation for counter */
@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.stat-number.animated {
  animation: countUp 1s ease-out forwards;
}

/* Games Section */
.games-section {
  position: relative;
  overflow: hidden;
  background-color: #f9f9f9;
}

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

.games-section .section-tag {
  display: inline-block;
  background: var(--accent-rose);
  color: white;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.games-section .section-title {
  font-size: 2.5rem;
  color: var(--heading-expresso);
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

.games-section .section-divider {
  width: 80px;
  height: 3px;
  background: var(--accent-rose);
  margin: 0 auto 1.5rem;
  position: relative;
}

.games-section .section-subtitle {
  color: var(--text-taupe);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.game-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.game-card.featured {
  transform: scale(1.02);
  z-index: 1;
}

.game-card.featured .game-thumbnail::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
  z-index: 1;
}

.game-thumbnail {
  position: relative;
  padding-top: 70%;
  overflow: hidden;
  background: #f5f5f5;
}

.game-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.game-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.4));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.game-card:hover .game-overlay {
  opacity: 1;
}

.game-tag {
  align-self: flex-start;
  background: var(--accent-rose);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.game-tag.popular {
  background: #4CAF50;
}

.game-tag.trending {
  background: #2196F3;
}

.play-button {
  align-self: center;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-rose);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: auto;
  margin-bottom: 1rem;
}

.play-button:hover {
  transform: scale(1.1);
  background: var(--accent-rose);
  color: white;
}

.game-content {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.game-rating {
  display: flex;
  align-items: center;
  color: #FFC107;
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
}

.game-rating i {
  margin-right: 0.3rem;
}

.game-rating span {
  color: var(--text-taupe);
  margin-left: 0.5rem;
  font-weight: 600;
}

.game-title {
  font-size: 1.5rem;
  color: var(--heading-expresso);
  margin: 0 0 1rem 0;
  font-weight: 700;
  line-height: 1.3;
}

.game-description {
  color: var(--text-taupe);
  margin: 0 0 1.5rem 0;
  line-height: 1.6;
  flex-grow: 1;
}

.game-footer {
  margin-top: auto;
}

.game-button, .btn.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-rose);
  color: white;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  width: 100%;
  max-width: 200px;
  margin: 1rem auto 0;
  text-align: center;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.game-button i, .btn.btn-primary i {
  margin-left: 0.5rem;
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.game-button:hover, .btn.btn-primary:hover {
  background: #d32f2f;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(160, 23, 43, 0.3);
  color: white;
}

.game-button:hover i, .btn.btn-primary:hover i {
  transform: translateX(5px);
}

/* Ensure consistent button alignment in game cards */
.game-footer {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 1.5rem;
}

/* Make sure all buttons in game cards have the same style */
.game-card .btn.btn-primary {
  margin: 1.5rem auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hover Effects */
.game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.game-card:hover .game-img {
  transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .games-grid {
    gap: 1.5rem;
  }
  
  .game-content {
    padding: 1.5rem;
  }
}

@media (max-width: 992px) {
  .games-section .section-title {
    font-size: 2.2rem;
  }
  
  .game-card.featured {
    transform: none;
  }
}

@media (max-width: 768px) {
  .games-section .section-title {
    font-size: 2rem;
  }
  
  .games-section .section-subtitle {
    font-size: 1rem;
  }
  
  .games-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 480px) {
  .games-section .section-title {
    font-size: 1.8rem;
  }
  
  .game-content {
    padding: 1.3rem;
  }
  
  .game-title {
    font-size: 1.3rem;
  }
  
  .game-description {
    font-size: 0.95rem;
  }
}
  

.game-card:hover {
  transform: translateY(-5px);
}

.game-iframe {
  width: 100%;
  height: 300px;
  border: none;
}

/* Animations */
@keyframes waveAnimation {
  0% {
    background-position: 0% 50%;
    opacity: 0.9;
  }
  50% {
    background-position: 100% 50%;
    opacity: 1;
  }
  100% {
    background-position: 0% 50%;
    opacity: 0.9;
  }
}

/* Header & Navigation */
header {
  background: var(--card-bg);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo img {
  width: auto;
  height: 60px;
}

.logo span {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent-rose);
  text-decoration: none;
}

nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav li {
  margin-left: 2rem;
}

nav a {
  text-decoration: none;
  color: var(--text-taupe);
  font-weight: 500;
  transition: color 0.3s ease;
}

nav a:hover {
  color: var(--accent-rose);
}

/* Footer */
footer {
  background: var(--section-bg);
  padding: 3rem 0 1.5rem;
  border-top: 1px solid var(--border-mauve);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-links h3 {
  color: var(--accent-brown);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--text-taupe);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-disclaimer {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-mauve);
  font-size: 0.9rem;
  color: var(--text-taupe);
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    padding: 1rem;
  }
  
  nav ul {
    margin-top: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  nav li {
    margin: 0.5rem 1rem;
  }
  
  .hero {
    min-height: 60vh;
  }
  
  .hero-content {
    padding: 1rem;
  }
  
  .games-grid {
    grid-template-columns: 1fr;
  }
  
  .game-iframe {
    height: 250px;
  }
}

/* Page-specific styles */
.page-hero {
  min-height: 40vh;
  display: flex;
  align-items: center;
  background: var(--section-bg);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    rgba(239, 227, 218, 0.8) 0%,
    rgba(239, 227, 218, 0.9) 50%,
    rgba(183, 110, 121, 0.1) 100%
  );
  animation: waveAnimation 20s ease-in-out infinite;
  z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 2rem;
}

/* Social Game Page */
.game-container {
  max-width: 1000px;
  margin: 2rem auto;
  padding: 0 1.5rem;
}

.game-iframe {
  width: 100%;
  height: 600px;
  border: 1px solid var(--border-mauve);
  border-radius: var(--border-radius);
  margin: 2rem 0;
}

.back-button {
  display: inline-block;
  margin: 1rem 0;
  color: var(--accent-rose);
  text-decoration: none;
  font-weight: 500;
}

.back-button:hover {
  text-decoration: underline;
}


/* Generated page styles */
/* Contact Page Styles */
    .contact-hero {
      background: linear-gradient(135deg, #063852 0%, #0B84A5 100%);
      color: white;
      text-align: center;
      padding: 3rem 1rem;
      margin-bottom: 3rem;
    }
    
    .contact-hero h1 {
      font-size: 2.5rem;
      margin-bottom: 1rem;
      color: rgb(252, 72, 72);
    }
    
    .contact-hero p {
      font-size: 1.1rem;
      max-width: 700px;
      margin: 0 auto;
      opacity: 0.9;
    }
    
    .contact-section {
      max-width: 800px;
      margin: 0 auto;
      padding: 0 1.5rem 4rem;
    }
    
    .contact-form {
      background: var(--card-bg);
      padding: 2.5rem;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    }
    
    .form-group {
      margin-bottom: 1.5rem;
    }
    
    .form-group label {
      display: block;
      margin-bottom: 0.5rem;
      color: var(--accent-brown);
      font-weight: 500;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 0.8rem 1rem;
      border: 1px solid #e0e0e0;
      border-radius: 6px;
      font-size: 1rem;
      transition: border-color 0.3s ease;
    }
    
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      outline: none;
      border-color: var(--accent-rose);
      box-shadow: 0 0 0 2px rgba(160, 23, 43, 0.1);
    }
    
    .form-group textarea {
      min-height: 150px;
      resize: vertical;
    }
    
    .btn-submit {
      background: var(--accent-rose);
      color: white;
      border: none;
      padding: 0.8rem 2rem;
      border-radius: 6px;
      font-size: 1rem;
      font-weight: 500;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      width: 100%;
    }
    
    .btn-submit:hover {
      background: var(--accent-rose-dark);
      transform: translateY(-2px);
    }
    
    @media (max-width: 768px) {
      .contact-hero h1 {
        font-size: 2rem;
      }
      
      .contact-section {
        padding: 0 1rem 3rem;
      }
      
      .contact-form {
        padding: 1.5rem;
      }
    }
  
/* Gaming Page Specific Styles */
    .gaming-hero {
      background: linear-gradient(135deg, var(--accent-rose), var(--accent-brown));
      color: white;
      padding: 4rem 0;
      text-align: center;
      margin-bottom: 3rem;
    }
    
    .gaming-hero h1 {
      font-size: 2.5rem;
      margin-bottom: 1rem;
      font-weight: 700;
      color: white;
      text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
    }

    .gaming-hero p {
      font-size: 1.2rem;
      opacity: 0.95;
      max-width: 700px;
      margin: 0 auto;
      line-height: 1.6;
    }

    .gaming-container {
      max-width: 1000px;
      margin: 0 auto;
      padding: 0 1.5rem 4rem;
    }

    .gaming-section {
      margin-bottom: 3rem;
      background: white;
      border-radius: 12px;
      padding: 2.5rem;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .gaming-section:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }

    .gaming-section h2 {
      color: var(--accent-rose);
      margin-bottom: 1.5rem;
      font-size: 1.8rem;
      position: relative;
      padding-bottom: 0.8rem;
      display: inline-block;
    }

    .gaming-section h2:after {
      content: '';
      position: absolute;
      left: 0;
      bottom: 0;
      width: 100%;
      height: 3px;
      background: linear-gradient(90deg, var(--accent-rose), var(--accent-brown));
      border-radius: 3px;
    }

    .gaming-section p {
      color: var(--text-taupe);
      line-height: 1.8;
      margin-bottom: 1.5rem;
      font-size: 1.05rem;
    }

    .gaming-list {
      list-style: none;
      padding: 0;
      margin: 2rem 0;
    }

    .gaming-list li {
      padding: 0.8rem 0 0.8rem 2.5rem;
      position: relative;
      color: var(--text-taupe);
      line-height: 1.7;
      font-size: 1.05rem;
      transition: transform 0.2s ease;
    }

    .gaming-list li:hover {
      transform: translateX(5px);
    }

    .gaming-list li:before {
      content: '✓';
      color: var(--accent-rose);
      font-size: 1.2rem;
      position: absolute;
      left: 0;
      top: 0.7rem;
      background: rgba(239, 68, 68, 0.1);
      width: 24px;
      height: 24px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .highlight-box {
      background: linear-gradient(135deg, rgba(255, 245, 245, 0.9), rgba(255, 235, 235, 0.9));
      border-left: 4px solid var(--accent-rose);
      padding: 1.8rem;
      margin: 2.5rem 0;
      border-radius: 0 12px 12px 0;
      position: relative;
      overflow: hidden;
    }

    .highlight-box:before {
      content: '⭐';
      position: absolute;
      top: 10px;
      right: 15px;
      font-size: 1.5rem;
      opacity: 0.1;
    }

    .highlight-box p {
      margin: 0;
      color: var(--accent-rose-dark);
      font-style: italic;
      font-size: 1.1rem;
      line-height: 1.7;
    }

    .tip-box {
      background: linear-gradient(to right, #f9f9f9, #f0f0f0);
      border-radius: 10px;
      padding: 1.8rem;
      margin: 1.8rem 0;
      border-left: 5px solid var(--accent-brown);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .tip-box:hover {
      transform: translateX(5px);
      box-shadow: 5px 5px 15px rgba(0,0,0,0.05);
    }

    .tip-box h3 {
      color: var(--accent-brown);
      margin-top: 0;
      display: flex;
      align-items: center;
      gap: 0.8rem;
      font-size: 1.25rem;
    }

    .tip-box h3 i {
      background: rgba(210, 180, 140, 0.2);
      width: 36px;
      height: 36px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--accent-brown);
    }

    .tip-box p {
      margin: 0.8rem 0 0 0;
      color: var(--text-taupe);
      line-height: 1.7;
    }

    .cta-section {
      text-align: center;
      margin-top: 3rem;
      padding: 3rem 2rem;
      background: linear-gradient(135deg, #f9f5ff, #f0f4ff);
      border-radius: 12px;
      border: 1px dashed var(--accent-rose);
    }

    .cta-button {
      display: inline-block;
      background: linear-gradient(135deg, var(--accent-rose), var(--accent-brown));
      color: white;
      padding: 0.8rem 2rem;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      margin-top: 1.5rem;
      transition: all 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1.1rem;
      box-shadow: 0 4px 15px rgba(239, 68, 68, 0.2);
    }

    .cta-button:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(239, 68, 68, 0.3);
    }

    @media (max-width: 768px) {
      .gaming-hero {
        padding: 3rem 1.5rem;
      }

      .gaming-hero h1 {
        font-size: 2.2rem;
      }

      .gaming-hero p {
        font-size: 1.1rem;
      }

      .gaming-section {
        padding: 1.8rem;
        margin-left: 0.5rem;
        margin-right: 0.5rem;
      }

      .gaming-section h2 {
        font-size: 1.5rem;
      }

      .gaming-list li {
        padding-left: 2rem;
      }

      .highlight-box {
        margin-left: 0.5rem;
        margin-right: 0.5rem;
      }
    }
  
/* Page Specific Styles */
    .disclaimer-hero {
      background: linear-gradient(135deg, var(--accent-rose), var(--accent-brown));
      color: white;
      padding: 5rem 0;
      text-align: center;
      margin-bottom: 3rem;
    }
    
    .disclaimer-hero h1 {
      font-size: 2.8rem;
      margin-bottom: 1rem;
      font-weight: 700;
      color: white;
      text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
    }

    .disclaimer-hero p {
      font-size: 1.3rem;
      opacity: 0.95;
      max-width: 700px;
      margin: 0 auto;
      line-height: 1.6;
    }

    .disclaimer-container {
      max-width: 1000px;
      margin: 0 auto;
      padding: 0 1.5rem 4rem;
    }

    .disclaimer-section {
      margin-bottom: 3.5rem;
      background: white;
      border-radius: 12px;
      padding: 2.5rem;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .disclaimer-section:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }

    .disclaimer-section h2 {
      color: var(--accent-rose);
      margin-bottom: 1.5rem;
      font-size: 1.8rem;
      position: relative;
      padding-bottom: 0.8rem;
      display: inline-block;
    }

    .disclaimer-section h2:after {
      content: '';
      position: absolute;
      left: 0;
      bottom: 0;
      width: 100%;
      height: 3px;
      background: linear-gradient(90deg, var(--accent-rose), var(--accent-brown));
      border-radius: 3px;
    }

    .disclaimer-section p {
      color: var(--text-taupe);
      line-height: 1.8;
      margin-bottom: 1.5rem;
      font-size: 1.05rem;
    }

    .disclaimer-list {
      list-style: none;
      padding: 0;
      margin: 2rem 0;
    }

    .disclaimer-list li {
      padding: 0.8rem 0 0.8rem 2.5rem;
      position: relative;
      color: var(--text-taupe);
      line-height: 1.7;
      font-size: 1.05rem;
      transition: transform 0.2s ease;
    }

    .disclaimer-list li:hover {
      transform: translateX(5px);
    }

    .disclaimer-list li:before {
      content: '✓';
      color: var(--accent-rose);
      font-size: 1.2rem;
      position: absolute;
      left: 0;
      top: 0.7rem;
      background: rgba(239, 68, 68, 0.1);
      width: 24px;
      height: 24px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .highlight-box {
      background: linear-gradient(135deg, rgba(255, 245, 245, 0.9), rgba(255, 235, 235, 0.9));
      border-left: 4px solid var(--accent-rose);
      padding: 1.8rem;
      margin: 2.5rem 0;
      border-radius: 0 12px 12px 0;
      position: relative;
      overflow: hidden;
    }

    .highlight-box:before {
      content: '⭐';
      position: absolute;
      top: 10px;
      right: 15px;
      font-size: 1.5rem;
      opacity: 0.1;
    }

    .highlight-box p {
      margin: 0;
      color: var(--accent-rose-dark);
      font-style: italic;
      font-size: 1.1rem;
      line-height: 1.7;
    }

    .info-box {
      background: linear-gradient(to right, #f9f9f9, #f0f0f0);
      border-radius: 10px;
      padding: 1.8rem;
      margin: 1.8rem 0;
      border-left: 5px solid var(--accent-brown);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .info-box:hover {
      transform: translateX(5px);
      box-shadow: 5px 5px 15px rgba(0,0,0,0.05);
    }

    .info-box h3 {
      color: var(--accent-brown);
      margin-top: 0;
      display: flex;
      align-items: center;
      gap: 0.8rem;
      font-size: 1.25rem;
    }

    .info-box h3 i {
      background: rgba(210, 180, 140, 0.2);
      width: 36px;
      height: 36px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--accent-brown);
    }

    .info-box p {
      margin: 0.8rem 0 0 0;
      color: var(--text-taupe);
      line-height: 1.7;
    }

    .cta-section {
      text-align: center;
      margin-top: 4rem;
      padding: 3rem 2rem;
      background: linear-gradient(135deg, #f9f5ff, #f0f4ff);
      border-radius: 12px;
      border: 1px dashed var(--accent-rose);
    }

    .cta-button {
      display: inline-block;
      background: linear-gradient(135deg, var(--accent-rose), var(--accent-brown));
      color: white;
      padding: 0.9rem 2.2rem;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      margin-top: 1.5rem;
      transition: all 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1.1rem;
      box-shadow: 0 4px 15px rgba(239, 68, 68, 0.2);
    }

    .cta-button:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(239, 68, 68, 0.3);
    }

    @media (max-width: 768px) {
      .disclaimer-hero {
        padding: 4rem 1.5rem;
      }

      .disclaimer-hero h1 {
        font-size: 2.2rem;
      }

      .disclaimer-hero p {
        font-size: 1.1rem;
      }

      .disclaimer-section {
        padding: 1.8rem;
        margin-left: 0.5rem;
        margin-right: 0.5rem;
      }

      .disclaimer-section h2 {
        font-size: 1.5rem;
      }

      .disclaimer-list li {
        padding-left: 2rem;
      }

      .highlight-box, .info-box {
        margin-left: 0.5rem;
        margin-right: 0.5rem;
      }
    }
  
.menu-toggle { background: var(--accent-rose); color: #fff; border: 0; border-radius: 8px; padding: 0.6rem 0.8rem; font-size: 1rem; cursor: pointer; }
.mobile-hidden { display: none; }
nav a.active { color: var(--accent-rose); font-weight: 700; }
.logo-img {
  display: block;
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.footer-logo .logo {
  align-items: center;
  margin-bottom: 1rem;
}
