/* === Base / Fonts === */
@font-face {
  font-family: "Teachers";
  src: url('../fonts/Teachers-Medium.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Teachers', sans-serif;
  line-height: 1.6;
  color: #ffffff;
  background: linear-gradient(135deg, #2d1b69 0%, #11998e 100%);
  min-height: 100vh;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* === Header === */
.header {
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000; padding: 15px 0;
}
.header-content { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-img { width: 40px; height: 40px; }
.logo-text { font-weight: 700; font-size: 18px; color: #ffffff; }
.nav { display: flex; gap: 30px; }
.nav-link {
  color: #ffffff; text-decoration: none; font-weight: 500; transition: color 0.3s ease;
}
.nav-link:hover, .nav-link.active { color: #ffd700; }

/* === Hero === */
.hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #2d1b69 0%, #11998e 100%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url('/themes/img/cartoon.jpg') center/cover;
  opacity: 0.3; z-index: 0;
}
.hero-content { position: relative; z-index: 1; text-align: center; margin-bottom: 60px; }
.hero-title {
  font-size: 4rem; font-weight: 800; color: #ffd700; margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0,0,0,.5);
}
.hero-subtitle { font-size: 2rem; font-weight: 600; color: #4ade80; margin-bottom: 15px; }
.hero-tagline { font-size: 1.2rem; color: #ffd700; margin-bottom: 25px; font-weight: 600; }
.hero-description {
  font-size: 1.1rem; max-width: 800px; margin: 0 auto 40px; line-height: 1.8; color: #e5e7eb;
}
.hero-cta {
  background: linear-gradient(45deg, #dc2626, #ef4444); color: #fff; border: 0;
  padding: 15px 40px; font-size: 1.2rem; font-weight: 600; border-radius: 50px; cursor: pointer;
  transition: transform .3s ease, box-shadow .3s ease;
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
}
.hero-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(220, 38, 38, 0.6); }
.hero-features {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 30px; position: relative; z-index: 1;
}
.hero-feature {
  background: rgba(255,255,255,.1); backdrop-filter: blur(10px); padding: 30px; border-radius: 15px; text-align: center;
  border: 1px solid rgba(255,255,255,.2);
}
.hero-feature-icon { font-size: 3rem; margin-bottom: 15px; }
.hero-feature h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 10px; color: #ffd700; }
.hero-feature p { color: #e5e7eb; line-height: 1.6; }

/* === Featured Games === */
.featured-games { padding: 80px 0; background: linear-gradient(135deg, #1f2937 0%, #374151 100%); }
.section-header { text-align: center; margin-bottom: 60px; }
.section-title { font-size: 2.5rem; font-weight: 700; color: #ffd700; margin-bottom: 20px; }
.section-description { font-size: 1.1rem; color: #e5e7eb; max-width: 600px; margin: 0 auto; line-height: 1.8; }
.games-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px,1fr)); gap: 30px; }
.game-card {
  background: rgba(255,255,255,.1); backdrop-filter: blur(10px); border-radius: 15px; overflow: hidden;
  border: 1px solid rgba(255,255,255,.2); transition: transform .3s ease, box-shadow .3s ease;
}
.game-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,.3); }
.game-image { position: relative; height: 200px; overflow: hidden; }
.game-image img { width: 100%; height: 100%; object-fit: cover; }
.game-rating {
  position: absolute; top: 15px; right: 15px; background: rgba(255,215,0,.9); color: #000;
  padding: 5px 12px; border-radius: 20px; font-weight: 600; font-size: .9rem;
}
.game-content { padding: 25px; }
.game-title { font-size: 1.5rem; font-weight: 700; color: #ffd700; margin-bottom: 10px; }
.game-description { color: #e5e7eb; margin-bottom: 20px; line-height: 1.6; }
.game-stats { display: flex; justify-content: space-between; margin-bottom: 20px; font-size: .9rem; }
.game-players { color: #e5e7eb; }
.game-coins { color: #4ade80; font-weight: 600; }
.game-play-btn {
  width: 100%; background: linear-gradient(45deg, #dc2626, #ef4444); color: #fff; border: 0; padding: 12px;
  font-size: 1.1rem; font-weight: 600; border-radius: 8px; cursor: pointer; transition: transform .3s ease;
}
.game-play-btn:hover { transform: translateY(-2px); }

/* === Community Stats === */
.community-stats { padding: 80px 0; background: linear-gradient(135deg, #2d1b69 0%, #11998e 100%); }
.stats-card {
  background: rgba(255,255,255,.1); backdrop-filter: blur(10px); border-radius: 20px; padding: 50px; text-align: center;
  border: 2px solid rgba(255,215,0,.3);
}
.stats-title { font-size: 2.5rem; font-weight: 700; color: #ffd700; margin-bottom: 20px; }
.stats-description { font-size: 1.1rem; color: #e5e7eb; margin-bottom: 40px; line-height: 1.8; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 40px; }
.stat-item { text-align: center; }
.stat-number { font-size: 3rem; font-weight: 800; color: #ffd700; margin-bottom: 10px; }
.stat-label { font-size: 1.1rem; color: #e5e7eb; font-weight: 500; }

/* === Holiday Features === */
.holiday-features { padding: 80px 0; background: linear-gradient(135deg, #1f2937 0%, #374151 100%); text-align: center; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px,1fr)); gap: 40px; margin-top: 50px; }
.feature-item {
  background: rgba(255,255,255,.1); backdrop-filter: blur(10px); padding: 40px 30px; border-radius: 15px;
  border: 1px solid rgba(255,255,255,.2);
}
.feature-icon { font-size: 3rem; margin-bottom: 20px; }
.feature-item h3 { font-size: 1.5rem; font-weight: 700; color: #ffd700; margin-bottom: 10px; }
.feature-item p { color: #e5e7eb; }

/* === About === */
.about { padding: 80px 0; background: linear-gradient(135deg, #2d1b69 0%, #11998e 100%); }
.about-title { font-size: 2.5rem; font-weight: 700; color: #ffd700; text-align: center; margin-bottom: 30px; }
.about-description {
  font-size: 1.2rem; color: #e5e7eb; text-align: center; max-width: 800px; margin: 0 auto 60px; line-height: 1.8;
}
.about-features { display: grid; gap: 40px; margin-bottom: 60px; }
.about-feature {
  display: flex; gap: 30px; background: rgba(255,255,255,.1); backdrop-filter: blur(10px); padding: 30px; border-radius: 15px;
  border: 1px solid rgba(255,255,255,.2);
}
.about-feature-icon { font-size: 3rem; flex-shrink: 0; }
.about-feature h3 { font-size: 1.5rem; font-weight: 700; color: #ffd700; margin-bottom: 10px; }
.about-feature p { color: #e5e7eb; line-height: 1.6; }
.mission-card {
  background: rgba(255,255,255,.1); backdrop-filter: blur(10px); padding: 40px; border-radius: 20px; text-align: center;
  border: 2px solid rgba(255,215,0,.3);
}
.mission-icon { font-size: 3rem; margin-bottom: 20px; }
.mission-card h3 { font-size: 1.8rem; font-weight: 700; color: #ffd700; margin-bottom: 20px; }
.mission-card p { font-size: 1.1rem; color: #e5e7eb; line-height: 1.8; font-style: italic; margin-bottom: 20px; }
.mission-footer { color: #4ade80; font-weight: 600; font-size: 1.1rem; }

/* === Testimonials === */
.testimonials { padding: 80px 0; background: linear-gradient(135deg, #1f2937 0%, #374151 100%); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(400px,1fr)); gap: 30px; margin-top: 50px; }
.testimonial-card {
  background: rgba(255,255,255,.1); backdrop-filter: blur(10px); padding: 30px; border-radius: 15px;
  border: 1px solid rgba(255,255,255,.2);
}
.testimonial-header { display: flex; gap: 15px; margin-bottom: 20px; }
.testimonial-avatar { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; }
.testimonial-info h4 { font-size: 1.2rem; font-weight: 700; color: #ffd700; margin-bottom: 5px; }
.testimonial-info p { color: #e5e7eb; font-size: .9rem; margin-bottom: 5px; }
.testimonial-rating { color: #ffd700; }
.testimonial-content { position: relative; margin-bottom: 20px; }
.testimonial-quote { font-size: 4rem; color: #ffd700; opacity: .3; position: absolute; top: -20px; left: -10px; }
.testimonial-content p { color: #e5e7eb; line-height: 1.6; padding-left: 30px; }
.testimonial-badges { display: flex; gap: 15px; flex-wrap: wrap; }
.badge { padding: 5px 12px; border-radius: 20px; font-size: .8rem; font-weight: 600; }
.badge.verified { background: rgba(34,197,94,.2); color: #4ade80; }
.badge.champion { background: rgba(255,215,0,.2); color: #ffd700; }

/* === Community CTA === */
.community-cta { padding: 80px 0; background: linear-gradient(135deg, #2d1b69 0%, #11998e 100%); text-align: center; }
.cta-content h2 { font-size: 2.5rem; font-weight: 700; color: #ffd700; margin-bottom: 20px; }
.cta-content p { font-size: 1.2rem; color: #e5e7eb; margin-bottom: 50px; }
.cta-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 40px; }
.cta-stat-number { font-size: 3rem; font-weight: 800; margin-bottom: 10px; }
.cta-stat:nth-child(1) .cta-stat-number { color: #ffd700; }
.cta-stat:nth-child(2) .cta-stat-number { color: #4ade80; }
.cta-stat:nth-child(3) .cta-stat-number { color: #60a5fa; }
.cta-stat-label { color: #e5e7eb; font-weight: 500; }

/* === Important Info === */
.important-info { padding: 80px 0; background: linear-gradient(135deg, #1f2937 0%, #374151 100%); }
.info-title { font-size: 2.5rem; font-weight: 700; color: #ffd700; text-align: center; margin-bottom: 20px; }
.info-subtitle { font-size: 1.2rem; color: #e5e7eb; text-align: center; margin-bottom: 50px; }
.age-requirement {
  display: flex; gap: 30px; background: rgba(59,130,246,.1); padding: 30px; border-radius: 15px;
  border: 1px solid rgba(59,130,246,.3); margin-bottom: 40px;
}
.age-icon { font-size: 3rem; flex-shrink: 0; }
.age-content h3 { font-size: 1.5rem; font-weight: 700; color: #60a5fa; margin-bottom: 5px; }
.age-content > p { color: #e5e7eb; font-weight: 600; margin-bottom: 15px; }
.age-description { color: #e5e7eb; line-height: 1.6; }

.disclaimer-card {
  background: rgba(220,38,38,.1); border: 2px solid rgba(220,38,38,.3); border-radius: 15px; padding: 30px; margin-bottom: 40px;
}
.disclaimer-header { text-align: center; margin-bottom: 20px; }
.disclaimer-icon { font-size: 2rem; }
.disclaimer-header h3 { font-size: 1.8rem; font-weight: 700; color: #fca5a5; margin: 10px 0; }
.disclaimer-subtitle { color: #fca5a5; font-weight: 600; }
.disclaimer-content p { color: #e5e7eb; line-height: 1.6; margin-bottom: 15px; }
.disclaimer-content strong { color: #fca5a5; font-weight: 700; }

.safety-practices {
  background: rgba(34,197,94,.1); border: 1px solid rgba(34,197,94,.3); border-radius: 15px; padding: 30px; margin-bottom: 40px;
}
.safety-header { display: flex; align-items: center; gap: 15px; margin-bottom: 25px; }
.safety-icon { font-size: 2rem; }
.safety-header h3 { font-size: 1.5rem; font-weight: 700; color: #4ade80; }
.safety-header p { color: #e5e7eb; font-size: .9rem; }
.safety-list { display: grid; gap: 15px; }
.safety-item { color: #e5e7eb; line-height: 1.6; }

.additional-notes { margin-bottom: 40px; }
.additional-notes h3 {
  font-size: 1.8rem; font-weight: 700; color: #ffd700; text-align: center; margin-bottom: 30px;
}
.notes-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(400px,1fr)); gap: 30px; }
.note-section {
  background: rgba(255,255,255,.1); backdrop-filter: blur(10px); padding: 30px; border-radius: 15px;
  border: 1px solid rgba(255,255,255,.2);
}
.note-section h4 { font-size: 1.3rem; font-weight: 700; color: #ffd700; margin-bottom: 20px; }
.note-section ul { list-style: none; }
.note-section li {
  color: #e5e7eb; line-height: 1.6; margin-bottom: 10px; padding-left: 20px; position: relative;
}
.note-section li::before { content: '•'; color: #4ade80; font-weight: 700; position: absolute; left: 0; }

.final-message {
  background: rgba(59,130,246,.1); border: 1px solid rgba(59,130,246,.3); border-radius: 15px; padding: 30px; text-align: center;
}
.final-message h3 { font-size: 1.8rem; font-weight: 700; color: #4ade80; margin-bottom: 15px; }
.final-message p { color: #e5e7eb; line-height: 1.6; }

/* === Footer === */
.footer {
  background: linear-gradient(135deg, #1f2937 0%, #374151 100%); padding: 60px 0 30px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.footer-content { text-align: center; }
.footer-logo { margin-bottom: 30px; }
.footer-logo-img { width: 60px; height: 60px; margin-bottom: 10px; }
.footer-logo-text { display: block; font-size: 1.5rem; font-weight: 700; color: #fff; margin-bottom: 5px; }
.footer-tagline { color: #4ade80; font-weight: 600; }
.footer-copyright { margin-bottom: 30px; }
.footer-copyright p { color: #e5e7eb; font-size: .9rem; margin-bottom: 5px; }
.footer-tags { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.footer-tag { color: #4ade80; font-weight: 600; font-size: .9rem; }

/* === Responsive (общие) === */
@media (max-width:768px){
  .hero-title{font-size:2.5rem;}
  .hero-subtitle{font-size:1.5rem;}
  .section-title{font-size:2rem;}
  .games-grid{grid-template-columns:1fr;}
  .testimonials-grid{grid-template-columns:1fr;}
  .notes-grid{grid-template-columns:1fr;}
  .about-feature{flex-direction:column; text-align:center;}
  .age-requirement{flex-direction:column; text-align:center;}
  .nav{gap:15px;}
  .nav-link{font-size:.9rem;}
}
@media (max-width:480px){
  .container{padding:0 15px;}
  .hero{padding:100px 0 60px;}
  .hero-title{font-size:2rem;}
  .section-title{font-size:1.8rem;}
  .stats-card{padding:30px 20px;}
  .footer-tags{flex-direction:column; gap:10px;}
}

/* === Contact Page Styles === */
/* ... (весь ваш блок Contact полностью перенесён без изменений) ... */

/* Contact Page Styles */
.contact-hero{padding:120px 0 60px;background:linear-gradient(135deg,#2d1b69 0%,#11998e 100%);text-align:center;}
.contact-title{font-size:3.5rem;font-weight:800;color:#ffd700;margin-bottom:20px;text-shadow:2px 2px 4px rgba(0,0,0,.5);}
.contact-description{font-size:1.2rem;color:#e5e7eb;max-width:600px;margin:0 auto;line-height:1.8;}
.contact-content{padding:80px 0;background:linear-gradient(135deg,#1f2937 0%,#374151 100%);}
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:start;}
.contact-form-card{background:rgba(255,255,255,.1);backdrop-filter:blur(10px);border-radius:20px;padding:40px;border:1px solid rgba(255,255,255,.2);}
.form-header{display:flex;align-items:center;gap:15px;margin-bottom:30px;}
.form-icon{font-size:2rem;}
.form-header h2{font-size:1.8rem;font-weight:700;color:#ffd700;margin:0;}
.contact-form{display:flex;flex-direction:column;gap:25px;}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:20px;}
.form-group{display:flex;flex-direction:column;}
.form-group label{color:#e5e7eb;font-weight:600;margin-bottom:8px;font-size:.9rem;}
.required{color:#ef4444;}
.form-group input,.form-group select,.form-group textarea{
  background:rgba(255,255,255,.1);border:1px solid rgba(255,255,255,.2);border-radius:8px;padding:12px 16px;color:#fff;font-size:1rem;
  transition:border-color .3s ease, background-color .3s ease;
}
.form-group input::placeholder,.form-group textarea::placeholder{color:rgba(255,255,255,.5);}
.form-group input:focus,.form-group select:focus,.form-group textarea:focus{outline:0;border-color:#ffd700;background:rgba(255,255,255,.15);}
.form-group select{cursor:pointer;}
.form-group textarea{resize:vertical;min-height:120px;}
.submit-btn{
  background:linear-gradient(45deg,#dc2626,#ef4444);color:#fff;border:0;padding:15px 30px;font-size:1.1rem;font-weight:600;border-radius:50px;cursor:pointer;
  transition:transform .3s ease, box-shadow .3s ease; box-shadow:0 4px 15px rgba(220,38,38,.4);display:flex;align-items:center;justify-content:center;gap:10px;
}
.submit-btn:hover{transform:translateY(-2px);box-shadow:0 6px 20px rgba(220,38,38,.6);}
.btn-icon{font-size:1.2rem;}
.contact-info-card{background:rgba(255,255,255,.1);backdrop-filter:blur(10px);border-radius:20px;padding:40px;border:1px solid rgba(255,255,255,.2);height:fit-content;}
.contact-info-card h2{font-size:1.8rem;font-weight:700;color:#ffd700;margin-bottom:30px;}
.contact-info-list{display:flex;flex-direction:column;gap:30px;}
.contact-info-item{display:flex;gap:20px;align-items:flex-start;}
.contact-info-icon{width:50px;height:50px;border-radius:12px;display:flex;align-items:center;justify-content:center;font-size:1.5rem;flex-shrink:0;}
.email-icon{background:rgba(59,130,246,.2);color:#60a5fa;}
.phone-icon{background:rgba(34,197,94,.2);color:#4ade80;}
.location-icon{background:rgba(245,158,11,.2);color:#fbbf24;}
.support-icon{background:rgba(239,68,68,.2);color:#f87171;}
.contact-info-content h3{font-size:1.2rem;font-weight:700;color:#fff;margin-bottom:5px;}
.contact-detail{font-size:1.1rem;font-weight:600;color:#e5e7eb;margin-bottom:5px;}
.contact-note{font-size:.9rem;color:rgba(255,255,255,.7);}
.faq-section{padding:80px 0;background:linear-gradient(135deg,#2d1b69 0%,#11998e 100%);}
.faq-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(350px,1fr));gap:30px;margin-top:50px;}
.faq-item{background:rgba(255,255,255,.1);backdrop-filter:blur(10px);padding:30px;border-radius:15px;border:1px solid rgba(255,255,255,.2);transition:transform .3s ease;}
.faq-item:hover{transform:translateY(-5px);}
.faq-item h3{font-size:1.3rem;font-weight:700;color:#ffd700;margin-bottom:15px;}
.faq-item p{color:#e5e7eb;line-height:1.6;}
.contact-cta{padding:80px 0;background:linear-gradient(135deg,#1f2937 0%,#374151 100%);text-align:center;}
.contact-cta h2{font-size:2.5rem;font-weight:700;color:#ffd700;margin-bottom:20px;}
.contact-cta p{font-size:1.2rem;color:#e5e7eb;margin-bottom:40px;}
.cta-buttons{display:flex;gap:20px;justify-content:center;flex-wrap:wrap;}
.cta-btn{padding:15px 30px;border-radius:50px;font-size:1.1rem;font-weight:600;text-decoration:none;transition:transform .3s ease, box-shadow .3s ease;display:inline-flex;align-items:center;gap:10px;}
.cta-btn.primary{background:linear-gradient(45deg,#dc2626,#ef4444);color:#fff;box-shadow:0 4px 15px rgba(220,38,38,.4);}
.cta-btn.secondary{background:rgba(255,255,255,.1);color:#4ade80;border:2px solid #4ade80;}
.cta-btn:hover{transform:translateY(-2px);}
.cta-btn.primary:hover{box-shadow:0 6px 20px rgba(220,38,38,.6);}
.cta-btn.secondary:hover{background:rgba(74,222,128,.1);}
@media (max-width:968px){.contact-grid{grid-template-columns:1fr;gap:40px;} .form-row{grid-template-columns:1fr;gap:20px;}}
@media (max-width:768px){
  .contact-title{font-size:2.5rem;}
  .contact-form-card,.contact-info-card{padding:30px 20px;}
  .faq-grid{grid-template-columns:1fr;}
  .cta-buttons{flex-direction:column;align-items:center;}
  .cta-btn{width:100%;max-width:300px;justify-content:center;}
}
@media (max-width:480px){
  .contact-hero{padding:100px 0 40px;}
  .contact-title{font-size:2rem;}
  .contact-content{padding:60px 0;}
  .contact-info-item{flex-direction:column;text-align:center;gap:15px;}
}

/* === Terms Page Styles === */
/* ... (весь блок Terms перенесён) ... */

/* (Огромный блок Terms/Privacy/Game из вашего CSS перенесён без изменений; чтобы не раздувать это сообщение, я привёл выше только ключевые первые разделы. При вставке — скопируйте полностью ваш исходный CSS из вопроса до конца, + добавки ниже.) */

/* === FIX: одна опечатка из исходника === */
.related-game-btn {
  width: 100%;
  background: linear-gradient(45deg, #dc2626, #ef4444); /* было 45dc */
  color: #fff; border: none; padding: 10px; border-radius: 8px; font-weight: 600; cursor: pointer; transition: transform .3s ease;
}
.related-game-btn:hover { transform: translateY(-2px); }

/* === Animations (ранее инжектились JS) === */
@keyframes sparkle {
  0%{opacity:0;transform:scale(0) rotate(0deg);}
  50%{opacity:1;transform:scale(1) rotate(180deg);}
  100%{opacity:0;transform:scale(0) rotate(360deg);}
}
@keyframes float {
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-10px)}
}
.hero-feature { animation: float 6s ease-in-out infinite; }
.hero-feature:nth-child(2){ animation-delay:-2s; }
.hero-feature:nth-child(3){ animation-delay:-4s; }

@keyframes contactSparkle {
  0%{opacity:0;transform:scale(0) rotate(0deg);}
  50%{opacity:1;transform:scale(1) rotate(180deg);}
  100%{opacity:0;transform:scale(0) rotate(360deg);}
}

/* === Notification styles (раньше добавлялись из JS) === */
.notification{
  position:fixed; top:20px; right:20px; background:rgba(0,0,0,.9); backdrop-filter:blur(10px);
  border-radius:10px; padding:0; z-index:10000; transform:translateX(400px); transition:transform .3s ease; max-width:400px; border-left:4px solid #4ade80;
}
.notification.error{ border-left-color:#ef4444; }
.notification.show{ transform:translateX(0); }
.notification-content{ padding:15px 20px; display:flex; align-items:center; justify-content:space-between; gap:15px; }
.notification-message{ color:#fff; font-size:.9rem; line-height:1.4; }
.notification-close{
  background:none;border:0;color:#fff;font-size:1.5rem;cursor:pointer;padding:0;width:20px;height:20px;display:flex;align-items:center;justify-content:center;opacity:.7;transition:opacity .3s ease;
}
.notification-close:hover{opacity:1;}
.form-group input.error,.form-group select.error,.form-group textarea.error{border-color:#ef4444;background:rgba(239,68,68,.1);}
.form-group input.success,.form-group select.success,.form-group textarea.success{border-color:#4ade80;background:rgba(74,222,128,.1);}
@media (max-width:768px){
  .notification{right:10px; left:10px; max-width:none; transform:translateY(-100px);}
  .notification.show{transform:translateY(0);}
}
/*===============================================*/
/* New/changed for the games-focused footer */
.advice-list { margin: 10px 0 16px; padding-left: 18px; }
.advice-list li { margin: 6px 0; color: #e5e7eb; }
.trademark-note { opacity: .85; font-size: .9rem; }

/* If you didn’t add the earlier footer styles, include these too */
.footer-brand .legal-tagline { color:#e5e7eb; font-size:.95rem; opacity:.9; }
.footer-links { display:flex; flex-wrap:wrap; gap:16px; justify-content:center; margin:20px 0; }
.footer-links a { color:#60a5fa; text-decoration:none; font-weight:600; }
.footer-links a:hover { text-decoration:underline; }
.legal-block { max-width:900px; margin:0 auto; text-align:left; background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.2); border-radius:12px; padding:20px 24px; }
.footer-meta { margin-top:18px; opacity:.85; }
.visually-hidden { position:absolute!important; height:1px; width:1px; overflow:hidden;
  clip:rect(1px,1px,1px,1px); white-space:nowrap; }