/* Modern Casino Website CSS */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&family=Raleway:wght@400;500;600;700&display=swap');

:root {
  --primary-color: #D4AF37;
  --dark-primary: #B8941F;
  --light-primary: #E8C968;
  --accent-color: #8B0000;
  --dark-accent: #6B0000;
  --black: #0A0A0A;
  --dark-gray: #1F1F1F;
  --medium-gray: #4A4A4A;
  --light-gray: #F5F5F5;
  --white: #FFFFFF;
  --shadow: rgba(212, 175, 55, 0.2);
  --shadow-hover: rgba(212, 175, 55, 0.4);
  
  /* Theme colors for games */
  --elf-primary: #2E7D32;
  --elf-secondary: #66BB6A;
  --oktoberfest-primary: #FF6F00;
  --oktoberfest-secondary: #FFB300;
  --caribbean-primary: #0097A7;
  --caribbean-secondary: #00BCD4;
}

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

body {
  font-family: 'Raleway', sans-serif;
  line-height: 1.7;
  color: var(--black);
  background: radial-gradient(circle at top right, #1a1a1a, #0d0d0d);
  background-attachment: fixed;
}

/* Header */
header {
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.95), rgba(184, 148, 31, 0.95));
  color: var(--black);
  padding: 1.2rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 6px 30px rgba(212, 175, 55, 0.5);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
}

.logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--black);
  text-decoration: none;
  transition: all 0.4s ease;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.4);
}

.logo:hover {
  color: var(--accent-color);
  transform: scale(1.08);
  text-shadow: 0 5px 15px rgba(139, 0, 0, 0.6);
}

nav {
  display: flex;
  gap: 1.5rem;
}

nav a {
  color: var(--black);
  text-decoration: none;
  font-weight: 600;
  padding: 0.6rem 1.3rem;
  border-radius: 25px;
  transition: all 0.4s ease;
  font-size: 0.95rem;
  border: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: 1px;
}

nav a:hover {
  background: var(--accent-color);
  color: var(--primary-color);
  border-color: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(139, 0, 0, 0.4);
}

/* Sub Header */
.sub-header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 0;
  background: linear-gradient(90deg, var(--accent-color), var(--dark-accent));
  box-shadow: 0 6px 25px rgba(139, 0, 0, 0.5);
}

.sub-header img {
  height: 45px;
  margin: 0 1.5rem;
  filter: drop-shadow(0 4px 10px rgba(212, 175, 55, 0.5));
  transition: transform 0.4s ease;
}

.sub-header img:hover {
  transform: scale(1.2) rotate(-5deg);
}

/* Hero Section */
.hero {
  position: relative;
  height: 750px;
  overflow: hidden;
  margin-bottom: 3rem;
  border-radius: 0 0 30px 30px;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5) contrast(1.2) saturate(1.1);
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.3), rgba(139, 0, 0, 0.4));
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--white);
  z-index: 10;
  width: 90%;
  max-width: 1100px;
}

.hero-text h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-shadow: 0 5px 20px rgba(0, 0, 0, 0.8);
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 4px;
}

.hero-text p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.7);
  font-weight: 500;
}

.hero-text h2 {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.7);
  font-weight: 500;
}

/* Main Content Container */
main {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Featured Game Sections */
.featured-game-section-1, .featured-game-section-2 {
  background: linear-gradient(135deg, var(--light-gray), var(--white));
  padding: 5rem 3rem;
  margin: 3rem 0;
  border-radius: 30px;
  box-shadow: 0 12px 50px var(--shadow);
  border: 3px solid var(--primary-color);
  position: relative;
  overflow: hidden;
}

.featured-game-section-1::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.featured-game-section-1 {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.featured-game-section-1 img {
  width: 45%;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(212, 175, 55, 0.4);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border: 3px solid var(--primary-color);
}

.featured-game-section-1 img:hover {
  transform: translateY(-15px) scale(1.05);
  box-shadow: 0 20px 60px rgba(212, 175, 55, 0.6);
}

.featured-game-text {
  flex: 1;
  position: relative;
  z-index: 1;
}

.featured-game-text h2, .featured-game-text h3 {
  font-family: 'Montserrat', sans-serif;
  color: var(--black);
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.featured-game-text h2 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-color);
  text-shadow: 2px 2px 4px rgba(212, 175, 55, 0.3);
}

.featured-game-text h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-color);
}

.featured-game-text p {
  font-size: 1.15rem;
  color: var(--medium-gray);
  margin-bottom: 2.5rem;
  line-height: 1.9;
}

.featured-game-section-2 {
  text-align: center;
  width: 100%;
  padding: 5rem 3rem;
  margin: 3rem 0;
  background: linear-gradient(135deg, var(--black), var(--dark-gray));
  color: var(--primary-color);
  border: 3px solid var(--primary-color);
}

.featured-game-section-2 h2, .featured-game-section-2 h3 {
  font-family: 'Montserrat', sans-serif;
  color: var(--primary-color);
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.featured-game-section-2 h2 {
  font-size: 3rem;
  font-weight: 800;
  text-shadow: 0 4px 10px rgba(212, 175, 55, 0.5);
}

.featured-game-section-2 h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--light-primary);
}

.featured-game-section-2 p {
  color: var(--light-gray);
  font-size: 1.15rem;
}

/* Game Section */
.game-section {
  background: linear-gradient(135deg, var(--primary-color), var(--dark-primary));
  color: var(--black);
  padding: 5rem 3rem;
  margin: 3rem 0;
  border-radius: 30px;
  text-align: center;
  box-shadow: 0 15px 50px rgba(212, 175, 55, 0.6);
  border: 3px solid var(--black);
}

.game-section h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 3rem;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.6);
  text-transform: uppercase;
  letter-spacing: 3px;
}

.game-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 2.5rem;
}

.game-image {
  background: var(--black);
  border-radius: 25px;
  padding: 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border: 3px solid var(--primary-color);
}

.game-image:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 60px rgba(212, 175, 55, 0.5);
  border-color: var(--light-primary);
}

.game-image img {
  width: 82%;
  height: 220px;
  border-radius: 15px;
  margin-bottom: 1.5rem;
  border: 2px solid var(--primary-color);
}

.game-image h3 {
  color: var(--primary-color);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.game-image p {
  color: var(--light-gray);
  margin-bottom: 1.5rem;
}

/* Buttons */
.play-button, .button, .orange-button {
  background: linear-gradient(135deg, var(--accent-color), var(--dark-accent));
  color: var(--primary-color);
  padding: 1rem 2rem;
  border: 2px solid var(--primary-color);
  border-radius: 30px;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.4s ease;
  box-shadow: 0 6px 20px rgba(139, 0, 0, 0.4);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.play-button:hover, .button:hover, .orange-button:hover {
  background: linear-gradient(135deg, var(--primary-color), var(--light-primary));
  color: var(--black);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.6);
}

/* Contact Section */
.contact-section {
  padding: 5rem 3rem;
  margin: 3rem 0;
  text-align: center;
  background: linear-gradient(135deg, var(--light-gray), var(--white));
  border-radius: 30px;
  border: 3px solid var(--primary-color);
  box-shadow: 0 12px 50px var(--shadow);
}

.contact-section h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.contact-section label {
  margin-top: auto;
  display: block;
  margin-bottom: 0.8rem;
  font-weight: 700;
  color: var(--black);
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.contact-section input,
.contact-section textarea {
  width: 100%;
  padding: 1.2rem;
  margin: 0 auto 2rem;
  border: 2px solid var(--primary-color);
  border-radius: 15px;
  font-size: 1.05rem;
  transition: all 0.4s ease;
  background: var(--white);
}

.contact-section input:focus,
.contact-section textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 5px rgba(212, 175, 55, 0.2);
  transform: translateY(-3px);
}

/* FAQ Section */
.faq, .faq-section {
  background: linear-gradient(135deg, var(--white), var(--light-gray));
  padding: 5rem 3rem;
  margin: 3rem 0;
  border-radius: 30px;
  box-shadow: 0 12px 50px var(--shadow);
  border: 3px solid var(--primary-color);
}

.faq h2, .faq-section h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 3rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.faq-item {
  border: 3px solid var(--primary-color);
  border-radius: 15px;
  margin-bottom: 1.5rem;
  overflow: hidden;
  transition: all 0.4s ease;
  background: var(--white);
}

.faq-item:hover {
  box-shadow: 0 8px 30px var(--shadow);
  transform: translateY(-3px);
}

.faq-question {
  padding: 2rem;
  background: var(--light-gray);
  cursor: pointer;
  font-weight: 700;
  color: var(--black);
  transition: all 0.4s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.faq-question.active {
  background: var(--primary-color);
  color: var(--black);
}

.faq-answer {
  padding: 2rem;
  background: var(--white);
  color: var(--medium-gray);
  line-height: 1.9;
  display: none;
  border-top: 2px solid var(--primary-color);
}

.faq-question.active + .faq-answer {
  display: block;
}

/* Policy Sections */
.disclaimer-section, .cookies-policy, .privacy-policy, .terms-section {
  max-width: 1200px;
  margin: 3rem auto;
  background: linear-gradient(135deg, var(--white), var(--light-gray));
  line-height: 1.9;
  padding: 4rem;
  border-radius: 30px;
  box-shadow: 0 12px 50px var(--shadow);
  border: 3px solid var(--primary-color);
}

.policy-title, .section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 3rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.policy-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-color);
  margin: 2.5rem 0 1.5rem 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.disclaimer-section p, .cookies-policy p, .privacy-policy p, .terms-section p {
  color: var(--medium-gray);
  margin-bottom: 1.5rem;
}

.disclaimer-section ul, .cookies-policy ul, .privacy-policy ul, .terms-section ul {
  color: var(--medium-gray);
  margin: 1.5rem 0 1.5rem 2.5rem;
}

.disclaimer-section li, .cookies-policy li, .privacy-policy li, .terms-section li {
  margin-bottom: 0.8rem;
}

/* Rules Section */
.rules-section {
  background: linear-gradient(135deg, var(--black), var(--dark-gray));
  padding: 5rem 3rem;
  margin: 3rem 0;
  border-radius: 30px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
  border: 3px solid var(--primary-color);
}

.rules-section h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 3rem;
  text-align: center;
  text-shadow: 0 4px 10px rgba(212, 175, 55, 0.5);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.rules-section p {
    color: var(--light-gray);
    line-height: 1.9;
    font-size: 1.05rem;
}

/* Footer */
footer {
  background: linear-gradient(180deg, var(--primary-color), var(--dark-primary));
  color: var(--black);
  padding: 3.5rem 3rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 3rem;
  box-shadow: 0 -6px 30px rgba(212, 175, 55, 0.5);
}

footer a {
  color: var(--black);
  text-decoration: none;
  margin: 0 1.2rem;
  font-weight: 700;
  transition: all 0.4s ease;
  padding: 0.6rem 1rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

footer a:hover {
  color: var(--primary-color);
  background: var(--black);
  transform: translateY(-3px);
}

.footer-icons img {
  height: 55px;
  margin: 0 1rem;
  filter: brightness(0.95);
  transition: transform 0.4s ease;
}

.footer-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
}

.footer-icons img:hover {
  transform: scale(1.2) rotate(-5deg);
}

/* Overlay */
.overlay, #game-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.close-button, #close-game {
  position: absolute;
  top: 25px;
  right: 25px;
  background: var(--accent-color);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  padding: 15px 22px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 1.3rem;
  font-weight: 700;
  transition: all 0.4s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.close-button:hover, #close-game:hover {
  background: var(--primary-color);
  color: var(--black);
  transform: scale(1.15);
}

.overlay iframe, #game-iframe {
  width: 90vw;
  height: 90vh;
  border: none;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(212, 175, 55, 0.6);
  border: 3px solid var(--primary-color);
}

.button-2 {
  background: linear-gradient(135deg, var(--black), var(--dark-gray));
  color: var(--primary-color);
  padding: 1rem 2rem;
  border: 2px solid var(--primary-color);
  border-radius: 30px;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.4s ease;
  margin-top: 60px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.button-2:hover {
  background: linear-gradient(135deg, var(--primary-color), var(--light-primary));
  color: var(--black);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.6);
}

.game-section p {
    width: 85%;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.05rem;
}

.sub-header {
    flex-direction: row;
    gap: 1.5rem;
}

/* Game Details Section with Themed Cards */
.game-details {
    padding: 70px 30px;
    text-align: center;
    background: linear-gradient(135deg, var(--light-gray), var(--white));
    margin: 3rem auto;
    max-width: 1300px;
    border-radius: 30px;
    box-shadow: 0 12px 50px var(--shadow);
    border: 3px solid var(--primary-color);
}

.game-details h2 {
    font-size: 3.2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(212, 175, 55, 0.3);
}

.game-details h3 {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.game-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    max-width: 1300px;
    margin: 0 auto;
}

.game-detail-item {
    background: white;
    padding: 35px 30px;
    border-radius: 25px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.game-detail-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    transition: all 0.4s ease;
}

/* Elf Kingdom Theme */
.game-detail-item:nth-child(1) {
    border-color: var(--elf-primary);
}

.game-detail-item:nth-child(1)::before {
    background: linear-gradient(90deg, var(--elf-primary), var(--elf-secondary));
}

.game-detail-item:nth-child(1):hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(46, 125, 50, 0.3);
    background: linear-gradient(135deg, white, rgba(46, 125, 50, 0.08));
}

.game-detail-item:nth-child(1) h4 {
    color: var(--elf-primary);
    text-shadow: 0 2px 4px rgba(46, 125, 50, 0.2);
}

/* Oktoberfest Theme */
.game-detail-item:nth-child(2) {
    border-color: var(--oktoberfest-primary);
}

.game-detail-item:nth-child(2)::before {
    background: linear-gradient(90deg, var(--oktoberfest-primary), var(--oktoberfest-secondary));
}

.game-detail-item:nth-child(2):hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 111, 0, 0.3);
    background: linear-gradient(135deg, white, rgba(255, 111, 0, 0.08));
}

.game-detail-item:nth-child(2) h4 {
    color: var(--oktoberfest-primary);
    text-shadow: 0 2px 4px rgba(255, 111, 0, 0.2);
}

/* Caribbean Theme */
.game-detail-item:nth-child(3) {
    border-color: var(--caribbean-primary);
}

.game-detail-item:nth-child(3)::before {
    background: linear-gradient(90deg, var(--caribbean-primary), var(--caribbean-secondary));
}

.game-detail-item:nth-child(3):hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 151, 167, 0.3);
    background: linear-gradient(135deg, white, rgba(0, 151, 167, 0.08));
}

.game-detail-item:nth-child(3) h4 {
    color: var(--caribbean-primary);
    text-shadow: 0 2px 4px rgba(0, 151, 167, 0.2);
}

.game-detail-item h4 {
    font-size: 1.8rem;
    margin-bottom: 18px;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.game-detail-item p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--medium-gray);
    text-align: left;
}

/* Responsive Design */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem;
  }
  
  nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
  }
  
  nav a {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
  }
  
  .logo {
    font-size: 1.6rem;
    letter-spacing: 2px;
  }
  
  .hero {
    height: 500px;
  }
  
  .hero-text h1 {
    font-size: 2.8rem;
    letter-spacing: 2px;
  }
  
  .hero-text p, .hero-text h2 {
    font-size: 1.1rem;
  }
  
  main {
    padding: 0 1.5rem;
  }
  
  .featured-game-section-1 {
    flex-direction: column;
    text-align: center;
    padding: 3rem 2rem;
  }
  
  .featured-game-section-1 img {
    width: 100%;
    max-width: 450px;
  }
  
  .featured-game-text h2 {
    font-size: 2.5rem;
  }
  
  .featured-game-text h3 {
    font-size: 1.5rem;
  }
  
  .featured-game-section-1, .featured-game-section-2 {
    padding: 3rem 2rem;
    margin: 2rem 0;
  }

  .featured-game-section-2 {
    text-align: center;
    width: 100%;
    padding: 3rem 2rem;
  }
  
  .featured-game-section-2 h2 {
    font-size: 2.5rem;
  }
  
  .featured-game-section-2 h3 {
    font-size: 1.5rem;
  }
  
  .game-section {
    padding: 3rem 2rem;
  }
  
  .game-section h2 {
    font-size: 2.5rem;
    letter-spacing: 2px;
  }
  
  .game-images {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .game-image img {
    width: 82%;
    height: auto;
    min-height: 180px;
  }
  
  .contact-section {
    padding: 3rem 2rem;
  }
  
  .contact-section h2 {
    font-size: 2.5rem;
  }
  
  .contact-section input, 
  .contact-section textarea {
    max-width: 100%;
    padding: 1rem;
  }
  
  .faq, .faq-section {
    padding: 3rem 2rem;
  }
  
  .faq h2, .faq-section h2 {
    font-size: 2.5rem;
  }
  
  .faq-question {
    padding: 1.5rem;
    font-size: 0.95rem;
  }
  
  .faq-answer {
    padding: 1.5rem;
  }
  
  .disclaimer-section, 
  .cookies-policy, 
  .privacy-policy, 
  .terms-section {
    padding: 3rem 2rem;
    margin: 2rem 1rem;
  }
  
  .policy-title, .section-title {
    font-size: 2.5rem;
    letter-spacing: 1px;
  }
  
  .policy-subtitle {
    font-size: 1.5rem;
  }
  
  .rules-section {
    padding: 3rem 2rem;
  }
  
  .rules-section h2 {
    font-size: 2.5rem;
  }
  
  footer {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
    padding: 2.5rem 1rem 1rem;
  }
  
  footer a {
    font-size: 0.85rem;
    margin: 0 0.5rem;
  }
  
  .footer-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0.2rem;
    width: 100%;
  }
  
  .footer-icons img {
    height: 30px;
    margin: 0;
    flex-shrink: 0;
  }
  
  .sub-header {
    flex-direction: row;
    gap: 1rem;
    padding: 1.5rem 0;
    flex-wrap: wrap;
  }
  
  .sub-header img {
    height: 35px;
    margin: 0 0.8rem;
  }

  .game-details {
    padding: 50px 20px;
    margin: 2rem 1rem;
  }

  .game-details h2 {
    font-size: 2.5rem;
  }

  .game-details h3 {
    font-size: 1.6rem;
  }

  .game-detail-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .game-detail-item {
    padding: 25px 20px;
  }
  
  .game-detail-item h4 {
    font-size: 1.5rem;
  }
  
  .close-button, #close-game {
    top: 15px;
    right: 15px;
    padding: 12px 18px;
    font-size: 1.1rem;
  }
  
  .overlay iframe, #game-iframe {
    width: 95vw;
    height: 85vh;
  }
}

@media (max-width: 480px) {
  header {
    padding: 1.5rem 1rem;
  }
  
  .logo {
    font-size: 1.4rem;
    letter-spacing: 1.5px;
  }
  
  nav a {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
  }
  
  .hero {
    height: 400px;
  }
  
  .hero-text h1 {
    font-size: 2rem;
    letter-spacing: 1.5px;
  }
  
  .hero-text p, .hero-text h2 {
    font-size: 0.95rem;
  }
  
  .featured-game-section-1, 
  .featured-game-section-2,
  .game-section,
  .contact-section,
  .faq, .faq-section,
  .rules-section {
    padding: 2.5rem 1.5rem;
    margin: 1.5rem 0;
  }
  
  .featured-game-text h2,
  .featured-game-section-2 h2,
  .game-section h2,
  .contact-section h2,
  .faq h2, .faq-section h2,
  .rules-section h2,
  .game-details h2 {
    font-size: 2rem;
    letter-spacing: 1px;
  }
  
  .featured-game-text h3,
  .featured-game-section-2 h3,
  .game-details h3 {
    font-size: 1.3rem;
  }
  
  .featured-game-text p,
  .featured-game-section-2 p,
  .game-section p,
  .rules-section p {
    font-size: 1rem;
  }
  
  .policy-title, .section-title {
    font-size: 2rem;
  }
  
  .policy-subtitle {
    font-size: 1.3rem;
  }
  
  .disclaimer-section, 
  .cookies-policy, 
  .privacy-policy, 
  .terms-section {
    padding: 2.5rem 1.5rem;
  }
  
  .game-image img {
    height: auto;
    min-height: 160px;
  }
  
  .game-detail-item h4 {
    font-size: 1.3rem;
  }
  
  .game-detail-item p {
    font-size: 0.95rem;
  }
  
  .sub-header img {
    height: 30px;
    margin: 0 0.5rem;
  }
  
  .footer-icons img {
    height: 35px;
  }
  
  footer {
    padding: 2rem 1rem 1rem;
  }
  
  .footer-icons {
    gap: 0.2rem;
  }
  
  .footer-icons img {
    height: 25px;
    margin: 0;
  }
  
  .play-button, .button, .orange-button, .button-2 {
    padding: 0.85rem 1.5rem;
    font-size: 0.95rem;
    letter-spacing: 1px;
  }
  
  .button-2 {
    margin-top: 40px;
  }
  
  .faq-question {
    padding: 1.2rem;
    font-size: 0.9rem;
  }
  
  .faq-answer {
    padding: 1.2rem;
    font-size: 0.95rem;
  }
  
  .game-details {
    padding: 40px 15px;
  }
  
  .close-button, #close-game {
    padding: 10px 15px;
    font-size: 1rem;
  }
}