/* Newsonvik Modern Design CSS */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Roboto:wght@300;400;500;700;900&display=swap');

:root {
  --primary-color: #FF4655;
  --dark-primary: #CC1F2E;
  --light-primary: #FF6B77;
  --accent-color: #1DB954;
  --dark-accent: #148A3D;
  --black: #121212;
  --dark-gray: #1E1E1E;
  --medium-gray: #606060;
  --light-gray: #F0F0F0;
  --white: #FFFFFF;
  --shadow: rgba(255, 70, 85, 0.3);
  --shadow-hover: rgba(255, 70, 85, 0.5);
  
  /* Theme colors for games */
  --elf-primary: #66BB6A;
  --elf-secondary: #A5D6A7;
  --oktoberfest-primary: #FFA726;
  --oktoberfest-secondary: #FFCC80;
  --caribbean-primary: #42A5F5;
  --caribbean-secondary: #90CAF9;
}

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

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  color: var(--white);
  background: var(--black);
  background-attachment: fixed;
}

/* Header */
header {
  background: linear-gradient(90deg, var(--black), var(--dark-gray));
  color: var(--white);
  padding: 1.2rem 3.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 8px 35px rgba(255, 70, 85, 0.4);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 3px solid var(--primary-color);
}

.logo {
  font-family: 'Bebas Neue', cursive;
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow: 0 0 25px rgba(255, 70, 85, 0.8);
}

.logo:hover {
  color: var(--accent-color);
  transform: scale(1.05);
  text-shadow: 0 0 30px rgba(29, 185, 84, 0.8);
}

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

nav a {
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  padding: 0.7rem 1.6rem;
  border-radius: 5px;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  border: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

nav a:hover {
  background: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 70, 85, 0.5);
}

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

.sub-header img {
  height: 52px;
  margin: 0 1.8rem;
  filter: drop-shadow(0 4px 12px rgba(29, 185, 84, 0.5));
  transition: transform 0.3s ease;
}

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

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

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

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 70, 85, 0.35), rgba(29, 185, 84, 0.25));
}

.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: 'Bebas Neue', cursive;
  font-size: 5.5rem;
  font-weight: 400;
  margin-bottom: 1.8rem;
  text-shadow: 0 0 35px rgba(255, 70, 85, 1);
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 5px;
}

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

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

/* 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, var(--dark-gray), var(--black));
  padding: 5.5rem 3.5rem;
  margin: 3.5rem 0;
  border-radius: 15px;
  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(255, 70, 85, 0.1) 0%, transparent 70%);
  animation: rotateEffect 20s linear infinite;
}

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

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

.featured-game-section-1 img {
  width: 45%;
  border-radius: 15px;
  box-shadow: 0 18px 55px rgba(255, 70, 85, 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(-18px) scale(1.05);
  box-shadow: 0 22px 65px rgba(255, 70, 85, 0.7);
}

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

.featured-game-text h2, .featured-game-text h3 {
  font-family: 'Bebas Neue', cursive;
  color: var(--primary-color);
  margin-bottom: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.featured-game-text h2 {
  font-size: 3.8rem;
  font-weight: 400;
  text-shadow: 0 0 20px rgba(255, 70, 85, 0.6);
}

.featured-game-text h3 {
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--accent-color);
  text-shadow: 0 0 15px rgba(29, 185, 84, 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(--primary-color), var(--dark-primary));
  color: var(--white);
  border: 3px solid var(--accent-color);
}

.featured-game-section-2 h2, .featured-game-section-2 h3 {
  font-family: 'Bebas Neue', cursive;
  color: var(--white);
  margin-bottom: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.featured-game-section-2 h2 {
  font-size: 3.8rem;
  font-weight: 400;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.featured-game-section-2 h3 {
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--accent-color);
}

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

/* Game Section */
.game-section {
  background: linear-gradient(135deg, var(--accent-color), var(--dark-accent));
  color: var(--white);
  padding: 5.5rem 3.5rem;
  margin: 3.5rem 0;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 18px 55px rgba(29, 185, 84, 0.6);
  border: 3px solid var(--primary-color);
}

.game-section h2 {
  font-family: 'Bebas Neue', cursive;
  font-size: 3.8rem;
  font-weight: 400;
  margin-bottom: 3.5rem;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.6);
  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: 15px;
  padding: 2.5rem;
  box-shadow: 0 12px 45px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 3px solid var(--primary-color);
}

.game-image:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 60px rgba(255, 70, 85, 0.6);
  border-color: var(--accent-color);
}

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

.game-image h3 {
  color: var(--primary-color);
  font-family: 'Bebas Neue', cursive;
  font-weight: 400;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 1.8rem;
}

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

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

.play-button:hover, .button:hover, .orange-button:hover {
  background: linear-gradient(135deg, var(--accent-color), var(--dark-accent));
  color: var(--white);
  transform: translateY(-4px);
  box-shadow: 0 10px 35px rgba(29, 185, 84, 0.6);
}

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

.contact-section h2 {
  font-family: 'Bebas Neue', cursive;
  font-size: 3.8rem;
  font-weight: 400;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow: 0 0 20px rgba(255, 70, 85, 0.6);
}

.contact-section label {
  margin-top: auto;
  display: block;
  margin-bottom: 0.9rem;
  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.3rem;
  border: 3px solid var(--primary-color);
  border-radius: 8px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  background: var(--dark-gray);
  color: var(--white);
}

.contact-section input:focus,
.contact-section textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 5px rgba(29, 185, 84, 0.3);
  transform: translateY(-3px);
}

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

.faq h2, .faq-section h2 {
  font-family: 'Bebas Neue', cursive;
  font-size: 3.8rem;
  font-weight: 400;
  color: var(--primary-color);
  margin-bottom: 3.5rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow: 0 0 20px rgba(255, 70, 85, 0.6);
}

.faq-item {
  border: 3px solid var(--primary-color);
  border-radius: 8px;
  margin-bottom: 1.8rem;
  overflow: hidden;
  transition: all 0.3s ease;
  background: var(--dark-gray);
}

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

.faq-question {
  padding: 2.2rem;
  background: var(--dark-gray);
  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(255, 70, 85, 0.2);
}

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

.faq-answer {
  padding: 2.2rem;
  background: var(--black);
  color: var(--light-gray);
  line-height: 1.9;
  display: none;
  border-top: 3px 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, var(--dark-gray), var(--black));
  line-height: 1.9;
  padding: 4.5rem;
  border-radius: 15px;
  box-shadow: 0 12px 50px var(--shadow);
  border: 3px solid var(--primary-color);
}

.policy-title, .section-title {
  font-family: 'Bebas Neue', cursive;
  font-size: 3.8rem;
  font-weight: 400;
  color: var(--primary-color);
  margin-bottom: 3.5rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow: 0 0 20px rgba(255, 70, 85, 0.6);
}

.policy-subtitle {
  font-family: 'Bebas Neue', cursive;
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--accent-color);
  margin: 3rem 0 1.8rem 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: 1.8rem;
}

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

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

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

.rules-section h2 {
  font-family: 'Bebas Neue', cursive;
  font-size: 3.8rem;
  font-weight: 400;
  color: var(--accent-color);
  margin-bottom: 3.5rem;
  text-align: center;
  text-shadow: 0 0 25px rgba(29, 185, 84, 0.7);
  text-transform: uppercase;
  letter-spacing: 3px;
}

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

/* Footer */
footer {
  background: linear-gradient(90deg, var(--primary-color), var(--dark-primary));
  color: var(--white);
  padding: 4rem 3.5rem 1.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 3.5rem;
  box-shadow: 0 -8px 35px rgba(255, 70, 85, 0.5);
}

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

footer a:hover {
  background: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 70, 85, 0.5);
}

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

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

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

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

.close-button, #close-game {
  position: absolute;
  top: 28px;
  right: 28px;
  background: var(--primary-color);
  color: var(--white);
  border: 3px solid var(--accent-color);
  padding: 16px 24px;
  border-radius: 5px;
  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(--accent-color);
  color: var(--white);
  transform: scale(1.15);
}

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

.button-2 {
  background: linear-gradient(135deg, var(--accent-color), var(--dark-accent));
  color: var(--white);
  padding: 1.1rem 2.5rem;
  border: 3px solid var(--primary-color);
  border-radius: 5px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  margin-top: 65px;
  box-shadow: 0 6px 25px rgba(29, 185, 84, 0.5);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.button-2:hover {
  background: linear-gradient(135deg, var(--primary-color), var(--dark-primary));
  color: var(--white);
  transform: translateY(-4px);
  box-shadow: 0 10px 35px rgba(255, 70, 85, 0.6);
}

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

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

/* Game Details Section with Themed Cards */
.game-details {
    padding: 75px 35px;
    text-align: center;
    background: linear-gradient(135deg, var(--dark-gray), var(--black));
    margin: 3.5rem auto;
    max-width: 1350px;
    border-radius: 15px;
    box-shadow: 0 12px 50px var(--shadow);
    border: 3px solid var(--primary-color);
}

.game-details h2 {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 22px;
    font-weight: 400;
    font-family: 'Bebas Neue', cursive;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(255, 70, 85, 0.6);
}

.game-details h3 {
    font-size: 2.6rem;
    color: var(--accent-color);
    margin-bottom: 65px;
    font-weight: 400;
    font-family: 'Bebas Neue', cursive;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.game-detail-item {
    background: var(--black);
    padding: 42px 36px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    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;
}

/* Rural Paradise 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 22px 60px rgba(102, 187, 106, 0.4);
    background: linear-gradient(135deg, var(--black), rgba(102, 187, 106, 0.1));
}

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

/* Animation Classics 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 22px 60px rgba(255, 167, 38, 0.4);
    background: linear-gradient(135deg, var(--black), rgba(255, 167, 38, 0.1));
}

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

/* Holiday Spectacular 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 22px 60px rgba(66, 165, 245, 0.4);
    background: linear-gradient(135deg, var(--black), rgba(66, 165, 245, 0.1));
}

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

.game-detail-item h4 {
    font-size: 2.4rem;
    margin-bottom: 22px;
    font-weight: 400;
    font-family: 'Bebas Neue', cursive;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    gap: 1.8rem;
    padding: 2.2rem;
  }
  
  nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
  
  nav a {
    font-size: 0.85rem;
    padding: 0.6rem 1.3rem;
  }
  
  .logo {
    font-size: 2.2rem;
    letter-spacing: 2px;
  }
  
  .hero {
    height: 550px;
  }
  
  .hero-text h1 {
    font-size: 3.5rem;
    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.8rem 2.5rem;
  }
  
  .featured-game-section-1 img {
    width: 100%;
    max-width: 480px;
  }
  
  .featured-game-text h2 {
    font-size: 3.2rem;
  }
  
  .featured-game-text h3 {
    font-size: 2rem;
  }
  
  .featured-game-section-1, .featured-game-section-2 {
    padding: 3.8rem 2.5rem;
    margin: 2.8rem 0;
  }

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

  .game-details {
    padding: 65px 28px;
    margin: 2.8rem 1.5rem;
  }

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

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

  .game-detail-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .game-detail-item {
    padding: 32px 28px;
  }
  
  .game-detail-item h4 {
    font-size: 2rem;
  }
  
  .close-button, #close-game {
    top: 22px;
    right: 22px;
    padding: 14px 22px;
    font-size: 1.25rem;
  }
  
  .overlay iframe, #game-iframe {
    width: 95vw;
    height: 85vh;
  }
}

@media (max-width: 480px) {
  header {
    padding: 1.8rem 1.5rem;
  }
  
  .logo {
    font-size: 1.8rem;
    letter-spacing: 1.5px;
  }
  
  nav a {
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
  }
  
  .hero {
    height: 480px;
  }
  
  .hero-text h1 {
    font-size: 2.8rem;
    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.6rem;
    letter-spacing: 2px;
  }
  
  .featured-game-text h3,
  .featured-game-section-2 h3,
  .game-details h3 {
    font-size: 1.6rem;
  }
  
  .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.6rem;
  }
  
  .policy-subtitle {
    font-size: 1.6rem;
  }
  
  .disclaimer-section, 
  .cookies-policy, 
  .privacy-policy, 
  .terms-section {
    padding: 3rem 2rem;
  }
  
  .game-image img {
    height: auto;
    min-height: 170px;
  }
  
  .game-detail-item h4 {
    font-size: 1.6rem;
  }
  
  .game-detail-item p {
    font-size: 1.05rem;
  }
  
  .sub-header img {
    height: 36px;
    margin: 0 0.8rem;
  }
  
  .footer-icons img {
    height: 40px;
    margin: 0 0.3rem;
  }
  
  footer {
    padding: 2.8rem 2rem 1.5rem;
  }
  
  .play-button, .button, .orange-button, .button-2 {
    padding: 1rem 2.2rem;
    font-size: 1.05rem;
    letter-spacing: 1.5px;
  }
  
  .button-2 {
    margin-top: 55px;
  }
  
  .faq-question {
    padding: 1.5rem;
    font-size: 0.9rem;
  }
  
  .faq-answer {
    padding: 1.5rem;
    font-size: 1rem;
  }
  
  .game-details {
    padding: 55px 22px;
  }
  
  .close-button, #close-game {
    padding: 13px 20px;
    font-size: 1.15rem;
  }
}