/* Reset and base styles */
* {
  padding: 0;
  margin: 0;
  border: 0;
  box-sizing: border-box;
}

:active, :focus { outline: 0; }
a:active, a:focus { outline: 0; }

aside, footer, header, nav { display: block; }

body, html {
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

button, input, textarea { font-family: inherit; }
input::-ms-clear { display: none; }
input, textarea {
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}

input::placeholder, textarea::placeholder { color: inherit; }

button {
  cursor: pointer;
  background-color: transparent;
}
button::-moz-focus-inner { padding: 0; border: 0; }

a {
  display: inline-block;
  color: inherit;
  text-decoration: none;
}
a:visited { text-decoration: none; }
a:hover { text-decoration: none; }

ul li { list-style: none; }

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  vertical-align: top;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
}

/* CSS Variables - Red Velvet Theme */
:root {
  --font-main: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-roboto: "Roboto", sans-serif;
  --container-width: 1240px;
  --container-step: 20px;
  --container-step-tablet: 15px;
  --container-step-mobile: 10px;
  --container: calc(var(--container-width) + (var(--container-step) * 2));
  
  /* Red Velvet Color Scheme */
  --page-bg: #0d0607;
  --text-main: #f4f1f0;
  --text-dark: #1a0d0f;
  --text-light: #faf8f7;
  --header-bg: #1a0d0f;
  --velvet-shadow: 0 0 20px rgba(139, 69, 75, 0.4);
  --surface-bg: #1a0d0f;
  --primary-burgundy: #8b454b;
  --accent-gold: #d4af37;
  --card-shadow: 0 0 30px rgba(139, 69, 75, 0.3);
  --card-bg: #221418;
  --hover-burgundy: #a05158;
  --active-burgundy: #744049;
  --rose-gold: #e8b4b8;
  --success-green: #6b8e4b;
  --velvet-gradient: linear-gradient(135deg, #8b454b 0%, #d4af37 100%);
  --card-gradient: linear-gradient(145deg, #221418 0%, #2d1a1f 100%);
  --deep-red-gradient: radial-gradient(ellipse at center, rgba(139, 69, 75, 0.15) 0%, rgba(139, 69, 75, 0.05) 100%);
}

/* Container */
.rouge-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--container-step);
}

@media (max-width: 991px) {
  .rouge-container {
    padding: 0 var(--container-step-tablet);
  }
}

@media (max-width: 600px) {
  .rouge-container {
    padding: 0 var(--container-step-mobile);
  }
}

/* Base page */
.rouge-page {
  display: flex;
  flex-direction: column;
  font-family: var(--font-main);
  min-height: 100vh;
  overflow: hidden;
  color: var(--text-main);
  background: var(--page-bg);
  position: relative;
}

.roboto {
  font-family: var(--font-roboto);
}

.rouge-main {
  flex: 1 1 auto;
  position: relative;
  z-index: 1;
}

/* Utility classes */
.rouge-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  border: 0;
  clip: rect(0 0 0 0);
}

/* Typography */
.rouge-tx-main {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}

.rouge-tx-40-18 {
  font-size: 40px;
  line-height: 1.2;
}

@media (max-width: 1220px) {
  .rouge-tx-40-18 {
    font-size: 32px;
  }
}

@media (max-width: 991px) {
  .rouge-tx-40-18 {
    font-size: 24px;
  }
}

@media (max-width: 600px) {
  .rouge-tx-40-18 {
    font-size: 18px;
  }
}

.rouge-tx-16 {
  font-size: 16px;
  line-height: 1.3;
}

.rouge-tx-14 {
  font-size: 14px;
  line-height: 1.3;
}

.rouge-tx-14-10 {
  font-size: 14px;
  line-height: 1.4;
}

@media (max-width: 991px) {
  .rouge-tx-14-10 {
    font-size: 12px;
  }
}

@media (max-width: 600px) {
  .rouge-tx-14-10 {
    font-size: 10px;
  }
}

.rouge-tx-14-8 {
  font-size: 14px;
  line-height: 1.4;
}

@media (max-width: 1220px) {
  .rouge-tx-14-8 {
    font-size: 12px;
  }
}

@media (max-width: 991px) {
  .rouge-tx-14-8 {
    font-size: 10px;
  }
}

@media (max-width: 600px) {
  .rouge-tx-14-8 {
    font-size: 8px;
  }
}

.rouge-tx-20-14 {
  font-size: 20px;
  line-height: 1.2;
}

@media (max-width: 991px) {
  .rouge-tx-20-14 {
    font-size: 16px;
  }
}

@media (max-width: 600px) {
  .rouge-tx-20-14 {
    font-size: 14px;
  }
}

.rouge-tx-16-14 {
  font-size: 16px;
  line-height: 1;
}

@media (max-width: 600px) {
  .rouge-tx-16-14 {
    font-size: 14px;
  }
}

.rouge-tx-32-26 {
  font-size: 32px;
  line-height: 1.2;
}

@media (max-width: 991px) {
  .rouge-tx-32-26 {
    font-size: 28px;
  }
}

@media (max-width: 600px) {
  .rouge-tx-32-26 {
    font-size: 26px;
  }
}

.rouge-color-primary {
  color: var(--primary-burgundy);
}

.rouge-text-center {
  text-align: center;
}

.rouge-uppercase {
  text-transform: uppercase;
}

.rouge-fw-500 { font-weight: 500; }
.rouge-fw-700 { font-weight: 700; }

/* Margin utilities */
.rouge-mb-50-25 { margin-bottom: 50px; }
.rouge-mb-30-20 { margin-bottom: 30px; }
.rouge-mb-20-10 { margin-bottom: 20px; }
.rouge-mb-15 { margin-bottom: 15px; }
.rouge-mb-30 { margin-bottom: 30px; }
.rouge-mb-20 { margin-bottom: 20px; }
.rouge-mb-10 { margin-bottom: 10px; }

@media (max-width: 991px) {
  .rouge-mb-50-25 { margin-bottom: 25px; }
  .rouge-mb-30-20 { margin-bottom: 20px; }
}

@media (max-width: 600px) {
  .rouge-mb-50-25 { margin-bottom: 25px; }
  .rouge-mb-30-20 { margin-bottom: 20px; }
  .rouge-mb-20-10 { margin-bottom: 10px; }
}

/* Background */
.rouge-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  opacity: 0.15;
}

/* Header */
.rouge-header {
  background: rgba(26, 13, 15, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(139, 69, 75, 0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 15px 0;
}

.rouge-header__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.rouge-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
  color: var(--accent-gold);
  transition: all 0.3s ease;
}

.rouge-brand:hover {
  color: var(--rose-gold);
  transform: scale(1.05);
}

.rouge-brand span {
  width: 36px;
  height: 36px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.rouge-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  width: 30px;
  height: 30px;
  padding: 5px;
  background: none;
}

.rouge-menu-toggle span {
  display: block;
  height: 2px;
  background: var(--accent-gold);
  transition: all 0.3s ease;
}

.rouge-navigation__list {
  display: flex;
  align-items: center;
  gap: 25px;
}

.rouge-link {
  padding: 8px 16px;
  border-radius: 10px;
  transition: all 0.3s ease;
  background: rgba(139, 69, 75, 0.1);
}

.rouge-link:hover {
  background: rgba(139, 69, 75, 0.2);
  transform: translateY(-2px);
}

.rouge-header__close-nav {
  display: none;
  position: absolute;
  top: 20px;
  right: 20px;
  width: 30px;
  height: 30px;
  background: none;
  font-size: 24px;
  color: var(--accent-gold);
}

/* Hero Section */
.rouge-hero {
  position: relative;
  padding: 60px 0;
  background: var(--deep-red-gradient);
}

.rouge-hero__content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.rouge-hero__headline {
  background: linear-gradient(135deg, var(--text-light) 0%, var(--accent-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}

.rouge-hero__subtitle {
  color: var(--primary-burgundy);
  margin-bottom: 30px;
}

.rouge-hero__benefits {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.rouge-hero__benefit {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 20px;
  background: rgba(139, 69, 75, 0.1);
  border-radius: 15px;
  border: 1px solid rgba(139, 69, 75, 0.2);
  transition: all 0.3s ease;
}

.rouge-hero__benefit:hover {
  transform: translateY(-5px);
  background: rgba(139, 69, 75, 0.2);
  box-shadow: var(--velvet-shadow);
}

.rouge-hero__benefit span {
  width: 24px;
  height: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

.rouge-timestamp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 10px;
}

.rouge-timestamp__icon {
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
}

.rouge-timestamp__content {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Casino Cards - FIXED */
.rouge-casino-cards {
  position: relative;
}

.rouge-casino-cards__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 25px;
}

.rouge-casino-cards__item {
  display: block;
}

.rouge-card {
  background: var(--card-gradient);
  border-radius: 20px;
  padding: 25px;
  border: 1px solid rgba(139, 69, 75, 0.3);
  backdrop-filter: blur(15px);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.rouge-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(139, 69, 75, 0.4);
  border-color: rgba(139, 69, 75, 0.6);
}

.rouge-card__primary {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  min-height: 160px;
}

.rouge-card__logo-section {
  position: relative;
  flex-shrink: 0;
}

.rouge-card__badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: var(--velvet-gradient);
  padding: 4px 8px;
  border-radius: 8px;
  color: var(--text-light);
  z-index: 2;
  font-size: 10px;
}

.rouge-card__logo {
  width: 120px;
  height: 80px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(139, 69, 75, 0.3);
  transition: all 0.3s ease;
}

.rouge-card:hover .rouge-card__logo {
  border-color: var(--primary-burgundy);
  background: rgba(139, 69, 75, 0.1);
}

.rouge-card__info-section {
  flex: 1;
}

.rouge-card__title {
  display: block;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.rouge-card__title:hover {
  color: var(--accent-gold);
}

.rouge-card__rating-block {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.rouge-card__star {
  width: 60px;
  height: 24px;
}

.rouge-card__offer {
  display: block;
  background: rgba(212, 175, 55, 0.1);
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  transition: all 0.3s ease;
}

.rouge-card__offer:hover {
  background: rgba(212, 175, 55, 0.2);
}

.rouge-card__secondary {
  border-top: 1px solid rgba(139, 69, 75, 0.2);
  padding-top: 20px;
}

.rouge-card__features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.rouge-card__features-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.rouge-card__features-item span {
  width: 16px;
  height: 16px;
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

.rouge-card__action-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.rouge-card__cta {
  background: var(--velvet-gradient);
  padding: 12px 24px;
  border-radius: 12px;
  color: var(--text-light);
  border: none;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  flex: 1;
  text-align: center;
}

.rouge-card__cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(139, 69, 75, 0.4);
}

.rouge-shimmer {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.rouge-card__cta:hover .rouge-shimmer {
  left: 100%;
}

.rouge-card__payments {
  display: flex;
  gap: 8px;
}

.rouge-card__payment {
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(139, 69, 75, 0.2);
  transition: all 0.3s ease;
}

.rouge-card__payment:hover {
  transform: scale(1.1);
  border-color: var(--primary-burgundy);
}

/* Info Sections - FIXED */
.rouge-info-sections {
  position: relative;
}

.rouge-info-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.rouge-info-panel {
  background: var(--card-gradient);
  border-radius: 20px;
  padding: 30px;
  border: 1px solid rgba(139, 69, 75, 0.3);
  backdrop-filter: blur(15px);
}

.rouge-info-panel__title {
  text-align: center;
  margin-bottom: 30px;
  background: var(--velvet-gradient);
  color: var(--text-light);
  padding: 18px 30px;
  border-radius: 25px;
  border: 2px solid rgba(139, 69, 75, 0.4);
}

/* FAQ Section */
.rouge-faq-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.rouge-faq-item {
  background: rgba(26, 13, 15, 0.6);
  border-radius: 12px;
  border: 1px solid rgba(139, 69, 75, 0.2);
  overflow: hidden;
  transition: all 0.3s ease;
}

.rouge-faq-item.rouge-active {
  border-color: var(--primary-burgundy);
  box-shadow: 0 5px 15px rgba(139, 69, 75, 0.3);
}

.rouge-faq-item__question {
  padding: 20px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}

.rouge-faq-item__question::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: var(--accent-gold);
  transition: all 0.3s ease;
}

.rouge-faq-item.rouge-active .rouge-faq-item__question::after {
  content: '−';
}

.rouge-faq-item__question:hover {
  background: rgba(139, 69, 75, 0.1);
}

.rouge-faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.rouge-faq-item.rouge-active .rouge-faq-item__answer {
  max-height: 500px;
}

.rouge-faq-text {
  padding: 0 20px 20px;
  color: var(--text-light);
}

/* Reviews Section */
.rouge-reviews-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.rouge-review-card {
  background: rgba(26, 13, 15, 0.6);
  border-radius: 15px;
  padding: 20px;
  border: 1px solid rgba(139, 69, 75, 0.2);
  transition: all 0.3s ease;
  position: relative;
}

.rouge-review-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-burgundy);
  box-shadow: 0 10px 25px rgba(139, 69, 75, 0.3);
}

.rouge-review-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.rouge-review-stars {
  width: 53px;
  height: 20px;
  background-size: auto 100%;
  background-repeat: repeat-x;
}

.rouge-review-text {
  color: var(--text-light);
  line-height: 1.5;
}

/* Footer */
.rouge-footer {
  background: var(--header-bg);
  border-top: 1px solid rgba(139, 69, 75, 0.3);
  padding: 40px 0 20px;
  position: relative;
  z-index: 2;
}

.rouge-footer__logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.rouge-footer__logo-item {
  opacity: 0.7;
  transition: all 0.3s ease;
}

.rouge-footer__logo-item:hover {
  opacity: 1;
  transform: scale(1.1);
}

.rouge-footer__logo-link {
  display: block;
  width: 80px;
  height: 40px;
}

.rouge-footer__content {
  margin-bottom: 20px;
}

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

.rouge-footer__section-title {
  color: var(--primary-burgundy);
  margin-bottom: 10px;
}

.rouge-nav__list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.rouge-age-warning {
  background: var(--velvet-gradient);
  padding: 8px 16px;
  border-radius: 20px;
  color: var(--text-light);
}

.rouge-nav__link {
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.rouge-nav__link:hover {
  background: rgba(139, 69, 75, 0.2);
  color: var(--accent-gold);
}

/* Cookie Popup */
.rouge-cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--card-gradient);
  border: 1px solid rgba(139, 69, 75, 0.4);
  border-radius: 15px;
  padding: 25px;
  max-width: 500px;
  width: 90%;
  backdrop-filter: blur(20px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  z-index: 10000;
  display: none;
}

.rouge-cookie-popup__actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.rouge-cookie-popup__accept {
  background: var(--velvet-gradient);
  color: var(--text-light);
  padding: 10px 20px;
  border-radius: 8px;
  border: none;
  transition: all 0.3s ease;
}

.rouge-cookie-popup__accept:hover {
  transform: translateY(-2px);
}

.rouge-cookie-popup__info {
  background: rgba(139, 69, 75, 0.1);
  padding: 10px 20px;
  border-radius: 8px;
  border: 1px solid rgba(139, 69, 75, 0.3);
  transition: all 0.3s ease;
}

.rouge-cookie-popup__info:hover {
  background: rgba(139, 69, 75, 0.2);
}

/* Mobile Styles */
@media (max-width: 991px) {
  .rouge-menu-toggle {
    display: flex;
  }

  .rouge-header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--header-bg);
    padding: 80px 30px 30px;
    transition: right 0.4s ease;
    z-index: 999;
  }

  .rouge-header__nav.rouge-active {
    right: 0;
  }

  .rouge-navigation__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .rouge-header__close-nav {
    display: block;
  }

  .rouge-info-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .rouge-footer__sections {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 600px) {
  .rouge-hero__benefits {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .rouge-casino-cards__grid {
    grid-template-columns: 1fr;
  }

  .rouge-card__primary {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .rouge-card__action-area {
    flex-direction: column;
  }

  .rouge-footer__logos {
    gap: 20px;
  }

  .rouge-nav__list {
    flex-direction: column;
    gap: 15px;
  }
  
  .rouge-hero {
    padding: 40px 0;
  }
}