/* NoMaVida Fresh Design CSS */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&family=Exo+2:wght@300;400;500;600;700&display=swap');

:root {
  --primary-color: #00D9FF;
  --dark-primary: #00A3CC;
  --light-primary: #5CE1E6;
  --accent-color: #FF006E;
  --dark-accent: #CC0058;
  --black: #0D0D0D;
  --dark-gray: #1A1A1A;
  --medium-gray: #555555;
  --light-gray: #ECECEC;
  --white: #FFFFFF;
  --shadow: rgba(0, 217, 255, 0.25);
  --shadow-hover: rgba(0, 217, 255, 0.45);
  
  /* Theme colors for games */
  --elf-primary: #2ECC71;
  --elf-secondary: #27AE60;
  --oktoberfest-primary: #F39C12;
  --oktoberfest-secondary: #E67E22;
  --caribbean-primary: #3498DB;
  --caribbean-secondary: #2980B9;
}

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

body {
  font-family: 'Exo 2', sans-serif;
  line-height: 1.65;
  color: var(--white);
  background: linear-gradient(135deg, #0D0D0D 0%, #1A1A1A 50%, #0D0D0D 100%);
  background-attachment: fixed;
}

/* Header */
header {
  background: linear-gradient(90deg, rgba(0, 217, 255, 0.1), rgba(255, 0, 110, 0.1));
  backdrop-filter: blur(15px);
  border-bottom: 2px solid var(--primary-color);
  color: var(--white);
  padding: 1.3rem 3.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 8px 32px rgba(0, 217, 255, 0.3);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 4px;
  text-shadow: 0 0 20px rgba(0, 217, 255, 0.8);
}

.logo:hover {
  color: var(--accent-color);
  transform: scale(1.1);
  text-shadow: 0 0 30px rgba(255, 0, 110, 0.9);
}

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

nav a {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  padding: 0.7rem 1.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-size: 1rem;
  border: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  overflow: hidden;
}

nav a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  transition: left 0.3s ease;
  z-index: -1;
}

nav a:hover::before {
  left: 0;
}

nav a:hover {
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px var(--shadow);
}

/* Sub Header */
.sub-header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.8rem 0;
  background: linear-gradient(90deg, var(--accent-color), var(--dark-accent));
  box-shadow: 0 5px 20px rgba(255, 0, 110, 0.4);
}

.sub-header img {
  height: 50px;
  margin: 0 1.8rem;
  filter: drop-shadow(0 5px 15px rgba(0, 217, 255, 0.6));
  transition: transform 0.3s ease;
}

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

/* Hero Section */
.hero {
  position: relative;
  height: 700px;
  overflow: hidden;
  margin-bottom: 3.5rem;
  border-radius: 0 0 25px 25px;
}

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

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.35), rgba(255, 0, 110, 0.35));
}

.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: 1150px;
}

.hero-text h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 4.5rem;
  font-weight: 900;
  margin-bottom: 1.8rem;
  text-shadow: 0 0 30px rgba(0, 217, 255, 1);
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 5px;
}

.hero-text p {
  font-size: 1.35rem;
  margin-bottom: 2.2rem;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
  font-weight: 500;
}

.hero-text h2 {
  font-size: 1.35rem;
  margin-bottom: 2.2rem;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
  font-weight: 500;
}

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

/* Featured Game Sections */
.featured-game-section-1, .featured-game-section-2 {
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.05), rgba(255, 0, 110, 0.05));
  backdrop-filter: blur(10px);
  padding: 5.5rem 3.5rem;
  margin: 3.5rem 0;
  border-radius: 25px;
  box-shadow: 0 15px 60px var(--shadow);
  border: 2px solid var(--primary-color);
  position: relative;
  overflow: hidden;
}

.featured-game-section-1::before {
  content: '';
  position: absolute;
  top: -100%;
  right: -100%;
  width: 300%;
  height: 300%;
  background: radial-gradient(circle, rgba(0, 217, 255, 0.15) 0%, transparent 60%);
  animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 0.8; }
}

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

.featured-game-section-1 img {
  width: 45%;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 217, 255, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 3px solid var(--primary-color);
}

.featured-game-section-1 img:hover {
  transform: translateY(-20px) scale(1.08);
  box-shadow: 0 25px 70px rgba(0, 217, 255, 0.7);
}

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

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

.featured-game-text h2 {
  font-size: 3.2rem;
  font-weight: 900;
  text-shadow: 0 0 20px rgba(0, 217, 255, 0.6);
}

.featured-game-text h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
  text-shadow: 0 0 15px rgba(255, 0, 110, 0.5);
}

.featured-game-text p {
  font-size: 1.2rem;
  color: var(--light-gray);
  margin-bottom: 2.8rem;
  line-height: 1.9;
}

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

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

.featured-game-section-2 h2 {
  font-size: 3.2rem;
  font-weight: 900;
  text-shadow: 0 0 25px rgba(0, 217, 255, 0.7);
}

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

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

/* Game Section */
.game-section {
  background: linear-gradient(135deg, var(--primary-color), var(--dark-primary));
  color: var(--black);
  padding: 5.5rem 3.5rem;
  margin: 3.5rem 0;
  border-radius: 25px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 217, 255, 0.7);
  border: 2px solid var(--white);
}

.game-section h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 3.2rem;
  font-weight: 900;
  margin-bottom: 3.5rem;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.7);
  text-transform: uppercase;
  letter-spacing: 4px;
}

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

.game-image {
  background: var(--black);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 3px solid var(--primary-color);
}

.game-image:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 70px rgba(0, 217, 255, 0.6);
  border-color: var(--accent-color);
}

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

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

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

/* Buttons */
.play-button, .button, .orange-button {
  background: linear-gradient(135deg, var(--accent-color), var(--dark-accent));
  color: var(--white);
  padding: 1.1rem 2.5rem;
  border: 2px solid var(--primary-color);
  border-radius: 10px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(255, 0, 110, 0.5);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.play-button:hover, .button:hover, .orange-button:hover {
  background: linear-gradient(135deg, var(--primary-color), var(--light-primary));
  color: var(--black);
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 217, 255, 0.7);
}

/* Contact Section */
.contact-section {
  padding: 5.5rem 3.5rem;
  margin: 3.5rem 0;
  text-align: center;
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.05), rgba(255, 0, 110, 0.05));
  backdrop-filter: blur(10px);
  border-radius: 25px;
  border: 2px solid var(--primary-color);
  box-shadow: 0 15px 60px var(--shadow);
}

.contact-section h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow: 0 0 20px rgba(0, 217, 255, 0.6);
}

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

.contact-section input,
.contact-section textarea {
  width: 100%;
  padding: 1.3rem;
  margin: 0 auto 2.5rem;
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
}

.contact-section input:focus,
.contact-section textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 6px rgba(0, 217, 255, 0.3);
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.1);
}

/* FAQ Section */
.faq, .faq-section {
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.05), rgba(255, 0, 110, 0.05));
  backdrop-filter: blur(10px);
  padding: 5.5rem 3.5rem;
  margin: 3.5rem 0;
  border-radius: 25px;
  box-shadow: 0 15px 60px var(--shadow);
  border: 2px solid var(--primary-color);
}

.faq h2, .faq-section h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--primary-color);
  margin-bottom: 3.5rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow: 0 0 20px rgba(0, 217, 255, 0.6);
}

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

.faq-item:hover {
  box-shadow: 0 10px 40px var(--shadow);
  transform: translateY(-4px);
}

.faq-question {
  padding: 2.2rem;
  background: rgba(0, 217, 255, 0.1);
  cursor: pointer;
  font-weight: 700;
  color: var(--white);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.faq-question:hover {
  background: rgba(0, 217, 255, 0.2);
}

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

.faq-answer {
  padding: 2.2rem;
  background: rgba(0, 0, 0, 0.6);
  color: var(--light-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: 1250px;
  margin: 3.5rem auto;
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.05), rgba(255, 0, 110, 0.05));
  backdrop-filter: blur(10px);
  line-height: 1.9;
  padding: 4.5rem;
  border-radius: 25px;
  box-shadow: 0 15px 60px var(--shadow);
  border: 2px solid var(--primary-color);
}

.policy-title, .section-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--primary-color);
  margin-bottom: 3.5rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow: 0 0 20px rgba(0, 217, 255, 0.6);
}

.policy-subtitle {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
  margin: 3rem 0 2rem 0;
  text-transform: uppercase;
  letter-spacing: 2px;
}

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

.disclaimer-section ul, .cookies-policy ul, .privacy-policy ul, .terms-section ul {
  color: var(--light-gray);
  margin: 2rem 0 2rem 3rem;
}

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

/* Rules Section */
.rules-section {
  background: linear-gradient(135deg, var(--black), var(--dark-gray));
  padding: 5.5rem 3.5rem;
  margin: 3.5rem 0;
  border-radius: 25px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  border: 2px solid var(--accent-color);
}

.rules-section h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--accent-color);
  margin-bottom: 3.5rem;
  text-align: center;
  text-shadow: 0 0 25px rgba(255, 0, 110, 0.7);
  text-transform: uppercase;
  letter-spacing: 3px;
}

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

/* Footer */
footer {
  background: linear-gradient(90deg, var(--primary-color), var(--dark-primary));
  color: var(--black);
  padding: 4rem 3.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 3.5rem;
  box-shadow: 0 -8px 32px rgba(0, 217, 255, 0.6);
}

footer a {
  color: var(--black);
  text-decoration: none;
  margin: 0 1.5rem;
  font-weight: 700;
  transition: all 0.3s ease;
  padding: 0.7rem 1.2rem;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.95rem;
}

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

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

.footer-icons img {
  height: 60px;
  margin: 0 1.2rem;
  filter: brightness(0.95);
  transition: transform 0.3s ease;
}

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

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

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

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

.overlay iframe, #game-iframe {
  width: 90vw;
  height: 90vh;
  border: none;
  border-radius: 15px;
  box-shadow: 0 15px 50px rgba(0, 217, 255, 0.7);
  border: 3px solid var(--primary-color);
}

.button-2 {
  background: linear-gradient(135deg, var(--black), var(--dark-gray));
  color: var(--primary-color);
  padding: 1.1rem 2.5rem;
  border: 2px solid var(--primary-color);
  border-radius: 10px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  margin-top: 70px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.button-2:hover {
  background: linear-gradient(135deg, var(--primary-color), var(--light-primary));
  color: var(--black);
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 217, 255, 0.7);
}

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

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

/* Game Details Section with Themed Cards */
.game-details {
    padding: 80px 35px;
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.05), rgba(255, 0, 110, 0.05));
    backdrop-filter: blur(10px);
    margin: 3.5rem auto;
    max-width: 1350px;
    border-radius: 25px;
    box-shadow: 0 15px 60px var(--shadow);
    border: 2px solid var(--primary-color);
}

.game-details h2 {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 900;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(0, 217, 255, 0.6);
}

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

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

.game-detail-item {
    background: rgba(0, 0, 0, 0.6);
    padding: 40px 35px;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

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

/* Harvest Fields 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(-12px);
    box-shadow: 0 25px 60px rgba(46, 204, 113, 0.4);
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(46, 204, 113, 0.1));
}

.game-detail-item:nth-child(1) h4 {
    color: var(--elf-primary);
    text-shadow: 0 0 15px rgba(46, 204, 113, 0.5);
}

/* Animated Characters 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(-12px);
    box-shadow: 0 25px 60px rgba(243, 156, 18, 0.4);
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(243, 156, 18, 0.1));
}

.game-detail-item:nth-child(2) h4 {
    color: var(--oktoberfest-primary);
    text-shadow: 0 0 15px rgba(243, 156, 18, 0.5);
}

/* Winter Celebration 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(-12px);
    box-shadow: 0 25px 60px rgba(52, 152, 219, 0.4);
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(52, 152, 219, 0.1));
}

.game-detail-item:nth-child(3) h4 {
    color: var(--caribbean-primary);
    text-shadow: 0 0 15px rgba(52, 152, 219, 0.5);
}

.game-detail-item h4 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 900;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.game-detail-item p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--light-gray);
    text-align: left;
}

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

  .featured-game-section-2 {
    text-align: center;
    width: 100%;
    padding: 3.5rem 2.5rem;
  }
  
  .featured-game-section-2 h2 {
    font-size: 2.8rem;
  }
  
  .featured-game-section-2 h3 {
    font-size: 1.7rem;
  }
  
  .game-section {
    padding: 3.5rem 2.5rem;
  }
  
  .game-section h2 {
    font-size: 2.8rem;
    letter-spacing: 3px;
  }
  
  .game-images {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .game-image img {
    width: 82%;
    height: auto;
    min-height: 200px;
  }
  
  .contact-section {
    padding: 3.5rem 2.5rem;
  }
  
  .contact-section h2 {
    font-size: 2.8rem;
  }
  
  .contact-section input, 
  .contact-section textarea {
    max-width: 100%;
    padding: 1.2rem;
  }
  
  .faq, .faq-section {
    padding: 3.5rem 2.5rem;
  }
  
  .faq h2, .faq-section h2 {
    font-size: 2.8rem;
  }
  
  .faq-question {
    padding: 1.8rem;
    font-size: 1rem;
  }
  
  .faq-answer {
    padding: 1.8rem;
  }
  
  .disclaimer-section, 
  .cookies-policy, 
  .privacy-policy, 
  .terms-section {
    padding: 3.5rem 2.5rem;
    margin: 2.5rem 1.5rem;
  }
  
  .policy-title, .section-title {
    font-size: 2.8rem;
    letter-spacing: 2px;
  }
  
  .policy-subtitle {
    font-size: 1.7rem;
  }
  
  .rules-section {
    padding: 3.5rem 2.5rem;
  }
  
  .rules-section h2 {
    font-size: 2.8rem;
  }
  
  footer {
    flex-direction: column;
    text-align: center;
    gap: 2.5rem;
    padding: 3rem 2.5rem 1.5rem;
  }
  
  footer a {
    font-size: 0.9rem;
    margin: 0 0.6rem;
  }
  
  .footer-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0.4rem;
  }
  
  .footer-icons img {
    height: 45px;
    margin: 0 0.4rem;
  }
  
  .sub-header {
    flex-direction: row;
    gap: 1.5rem;
    padding: 1.5rem 0;
    flex-wrap: wrap;
  }
  
  .sub-header img {
    height: 40px;
    margin: 0 1rem;
  }

  .game-details {
    padding: 60px 25px;
    margin: 2.5rem 1.5rem;
  }

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

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

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

@media (max-width: 480px) {
  header {
    padding: 2rem 1.5rem;
  }
  
  .logo {
    font-size: 1.5rem;
    letter-spacing: 2px;
  }
  
  nav a {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
  }
  
  .hero {
    height: 450px;
  }
  
  .hero-text h1 {
    font-size: 2.2rem;
    letter-spacing: 2px;
  }
  
  .hero-text p, .hero-text h2 {
    font-size: 1rem;
  }
  
  .featured-game-section-1, 
  .featured-game-section-2,
  .game-section,
  .contact-section,
  .faq, .faq-section,
  .rules-section {
    padding: 3rem 2rem;
    margin: 2rem 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: 2.2rem;
    letter-spacing: 2px;
  }
  
  .featured-game-text h3,
  .featured-game-section-2 h3,
  .game-details h3 {
    font-size: 1.4rem;
  }
  
  .featured-game-text p,
  .featured-game-section-2 p,
  .game-section p,
  .rules-section p {
    font-size: 1.05rem;
  }
  
  .policy-title, .section-title {
    font-size: 2.2rem;
  }
  
  .policy-subtitle {
    font-size: 1.4rem;
  }
  
  .disclaimer-section, 
  .cookies-policy, 
  .privacy-policy, 
  .terms-section {
    padding: 3rem 2rem;
  }
  
  .game-image img {
    height: auto;
    min-height: 180px;
  }
  
  .game-detail-item h4 {
    font-size: 1.4rem;
  }
  
  .game-detail-item p {
    font-size: 1rem;
  }
  
  .sub-header img {
    height: 35px;
    margin: 0 0.7rem;
  }
  
  .footer-icons img {
    height: 38px;
    margin: 0 0.2rem;
  }
  
  footer {
    padding: 2.5rem 2rem 1.5rem;
  }
  
  .play-button, .button, .orange-button, .button-2 {
    padding: 1rem 2rem;
    font-size: 1rem;
    letter-spacing: 1.5px;
  }
  
  .button-2 {
    margin-top: 50px;
  }
  
  .faq-question {
    padding: 1.5rem;
    font-size: 0.95rem;
  }
  
  .faq-answer {
    padding: 1.5rem;
    font-size: 1rem;
  }
  
  .game-details {
    padding: 50px 20px;
  }
  
  .close-button, #close-game {
    padding: 12px 18px;
    font-size: 1.1rem;
  }
}