
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #333;
  min-height: 100vh;
}

a {
  text-decoration: none;
  color: #fff;
  transition: all 0.3s ease;
}

h1, h2, h3 {
  margin-top: 0;
  font-weight: 700;
}

section {
  padding: 80px 20px;
  text-align: center;
}

.btn {
  display: inline-block;
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
  color: #fff;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 14px;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 107, 107, 0.4);
  background: linear-gradient(135deg, #ee5a52 0%, #ff6b6b 100%);
}

.warning-banner {
  background: linear-gradient(135deg, #ffeaa7 0%, #fdcb6e 100%);
  color: #2d3436;
  padding: 15px 20px;
  font-weight: 600;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: relative;
  overflow: hidden;
  line-height: 1.5;
}

.warning-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.hero {
  background: linear-gradient(135deg, #2d3436 0%, #636e72 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.hero h1 {
  font-size: 3.5em;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  position: relative;
  z-index: 1;
}

.hero p {
  font-size: 1.4em;
  margin-bottom: 30px;
  opacity: 0.9;
  position: relative;
  z-index: 1;
}

.games-section {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  margin: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.games-section h2 {
  font-size: 2.5em;
  color: #2d3436;
  margin-bottom: 50px;
}

.games-section .games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
  padding: 0 20px;
}

.game-card {
  background: #fff;
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.2);
  position: relative;
  overflow: hidden;
}

.game-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 100%);
}

.game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.game-card img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.game-card:hover img {
  transform: scale(1.05);
}

.game-card h3 {
  font-size: 1.5em;
  margin: 20px 0 15px 0;
  color: #2d3436;
}

.game-card a {
  margin-top: 15px;
}

footer {
  background: linear-gradient(135deg, #2d3436 0%, #636e72 100%);
  color: #ddd;
  padding: 40px 20px;
  text-align: center;
  position: relative;
}

footer a {
  color: #ff6b6b;
  font-weight: 600;
}

footer a:hover {
  color: #ee5a52;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #2d3436 0%, #636e72 100%);
  color: #fff;
  padding: 20px;
  text-align: center;
  z-index: 9999;
  box-shadow: 0 -5px 25px rgba(0,0,0,0.3);
  backdrop-filter: blur(10px);
}

.cookie-banner button {
  margin-left: 15px;
  padding: 10px 20px;
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
  color: #fff;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cookie-banner button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

iframe {
  width: 100%;
  max-width: 640px;
  height: 480px;
  border-radius: 15px;
  margin-top: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* About */
.about {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  margin: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.about h2 {
  font-size: 2.5em;
  margin-bottom: 30px;
  color: #2d3436;
  position: relative;
}

.about h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 100%);
  border-radius: 2px;
}

.about p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.2em;
  color: #636e72;
  line-height: 1.8;
}

/* Testimonials */
.testimonials {
  background: rgba(245,245,245,0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  margin: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.testimonials h2 {
  font-size: 2.5em;
  margin-bottom: 50px;
  color: #2d3436;
  position: relative;
}

.testimonials h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 100%);
  border-radius: 2px;
}

.testimonial-card {
  background: #fff;
  padding: 30px;
  margin: 25px auto;
  max-width: 600px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  position: relative;
  transition: transform 0.3s ease;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 4em;
  color: #ff6b6b;
  opacity: 0.3;
  font-family: serif;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-card p {
  font-style: italic;
  color: #636e72;
  font-size: 1.1em;
  margin-bottom: 20px;
}

.testimonial-card strong {
  display: block;
  margin-top: 15px;
  color: #2d3436;
  font-weight: 600;
}

/* Benefits */
.benefits {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  margin: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.benefits h2 {
  font-size: 2.5em;
  margin-bottom: 50px;
  color: #2d3436;
  position: relative;
}

.benefits h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 100%);
  border-radius: 2px;
}

.benefits ul {
  list-style: none;
  padding: 0;
  max-width: 700px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.benefits li {
  background: #fff;
  margin: 0;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  font-size: 1.1em;
  transition: transform 0.3s ease;
  border-left: 4px solid #ff6b6b;
}

.benefits li:hover {
  transform: translateY(-5px);
}

/* Contact */
.contact {
  background: rgba(245,245,245,0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  margin: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.contact h2 {
  font-size: 2.5em;
  margin-bottom: 30px;
  color: #2d3436;
  position: relative;
}

.contact h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 100%);
  border-radius: 2px;
}

.contact p {
  margin: 15px 0;
  font-size: 1.2em;
  color: #636e72;
}

.contact-form {
  max-width: 600px;
  margin: 40px auto 0;
  text-align: left;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #2d3436;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 2px solid #ddd;
  border-radius: 10px;
  font-size: 16px;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ff6b6b;
  box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

.form-group textarea {
  height: 120px;
  resize: vertical;
}

.form-submit {
  text-align: center;
  margin-top: 30px;
}

/* FAQ Section */
.faq {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  margin: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.faq h2 {
  font-size: 2.5em;
  margin-bottom: 50px;
  color: #2d3436;
  position: relative;
}

.faq h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 100%);
  border-radius: 2px;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  margin-bottom: 20px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.faq-question {
  padding: 25px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
  transition: all 0.3s ease;
  position: relative;
}

.faq-question::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 100%);
}

.faq-question:hover {
  background: linear-gradient(135deg, #f0f2f5 0%, #f8f9fa 100%);
}

.faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  color: #2d3436;
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.faq-question svg {
  color: #ff6b6b;
  flex-shrink: 0;
}

.faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  color: #ff6b6b;
  transition: transform 0.3s ease;
  min-width: 30px;
  text-align: center;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background: #fff;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 25px 25px 25px;
}

.faq-answer p {
  margin: 0;
  color: #636e72;
  line-height: 1.6;
  font-size: 1.05em;
}

.faq-answer a {
  color: #ff6b6b;
  text-decoration: underline;
  font-weight: 600;
}

.faq-answer a:hover {
  color: #ee5a52;
}

/* Bottom Warning Section */
.bottom-warning {
  background: rgba(255, 243, 205, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  margin: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  border: 2px solid rgba(255, 193, 7, 0.3);
}

.bottom-warning-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.bottom-warning h3 {
  font-size: 1.8em;
  color: #d68910;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 700;
}

.bottom-warning p {
  color: #636e72;
  line-height: 1.7;
  margin-bottom: 15px;
  text-align: center;
  font-size: 1.1em;
}

.bottom-warning a {
  color: #ff6b6b;
  text-decoration: underline;
  font-weight: 600;
}

.bottom-warning a:hover {
  color: #ee5a52;
}

/* Legal Content Pages */
.legal-content {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  margin: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.legal-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.legal-section {
  margin-bottom: 50px;
  padding: 30px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.legal-section:hover {
  transform: translateY(-5px);
}

.legal-section h2 {
  font-size: 1.6em;
  color: #2d3436;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  padding-bottom: 15px;
}

.legal-section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 100%);
  border-radius: 2px;
}

.legal-section h2 svg {
  color: #ff6b6b;
  flex-shrink: 0;
}

.legal-section p {
  color: #636e72;
  line-height: 1.7;
  margin-bottom: 15px;
  font-size: 1.05em;
}

.legal-section ul {
  margin: 20px 0;
  padding-left: 0;
  list-style: none;
}

.legal-section li {
  margin: 12px 0;
  padding-left: 25px;
  position: relative;
  color: #636e72;
  line-height: 1.6;
}

.legal-section li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #ff6b6b;
  font-weight: bold;
}

.legal-section a {
  color: #ff6b6b;
  text-decoration: underline;
  font-weight: 600;
}

.legal-section a:hover {
  color: #ee5a52;
}

.highlight-box {
  background: linear-gradient(135deg, #fff5f5 0%, #ffeaa7 20%, #fff5f5 100%);
  border: 2px solid #ff6b6b;
  border-radius: 15px;
  padding: 25px;
  margin: 20px 0;
  position: relative;
}

.highlight-box::before {
  content: '⚠️';
  position: absolute;
  top: -15px;
  left: 25px;
  background: #fff;
  padding: 5px 10px;
  border-radius: 50%;
  font-size: 1.2em;
}

.contact-info {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 10px;
  margin-top: 15px;
  border-left: 4px solid #ff6b6b;
}

.contact-info p {
  margin: 8px 0;
  font-size: 1em;
}

/* iframe section for games */
.iframe-section {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  margin: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  text-align: center;
  padding: 30px;
}

.iframe-section iframe {
  width: 100%;
  height: 600px;
  border: none;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Thank You Page */
.thank-you-content {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  margin: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.thank-you-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.thank-you-card {
  background: #fff;
  border-radius: 20px;
  padding: 50px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.icon-success {
  margin-bottom: 30px;
  animation: successPulse 2s ease-in-out infinite;
}

@keyframes successPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.thank-you-card h2 {
  font-size: 2.2em;
  color: #27ae60;
  margin-bottom: 20px;
  font-weight: 700;
}

.thank-you-card p {
  color: #636e72;
  line-height: 1.7;
  font-size: 1.1em;
  margin-bottom: 30px;
}

.next-steps {
  margin: 40px 0;
  text-align: left;
}

.next-steps h3 {
  font-size: 1.5em;
  color: #2d3436;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}

.next-steps h3 svg {
  color: #ff6b6b;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.step-item {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  transition: transform 0.3s ease;
  border: 2px solid transparent;
}

.step-item:hover {
  transform: translateY(-5px);
  border-color: #ff6b6b;
}

.step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
  margin: 0 auto 15px auto;
}

.step-item h4 {
  font-size: 1.2em;
  color: #2d3436;
  margin-bottom: 10px;
}

.step-item p {
  color: #636e72;
  font-size: 0.95em;
  margin: 0;
}

.contact-reminder {
  background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
  padding: 30px;
  border-radius: 15px;
  margin: 30px 0;
  border-left: 4px solid #ff6b6b;
}

.contact-reminder h3 {
  font-size: 1.3em;
  color: #2d3436;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}

.contact-reminder h3 svg {
  color: #ff6b6b;
}

.contact-details {
  text-align: center;
}

.contact-details p {
  margin: 8px 0;
  color: #636e72;
  font-size: 1em;
}

.actions {
  margin-top: 40px;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 100%);
  color: white;
  padding: 15px 30px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 107, 107, 0.4);
}

.btn-secondary {
  background: transparent;
  color: #ff6b6b;
  border: 2px solid #ff6b6b;
  padding: 13px 28px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: #ff6b6b;
  color: white;
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5em;
  }
  
  .hero p {
    font-size: 1.2em;
  }
  
  section {
    padding: 60px 15px;
  }
  
  .games-section .games-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .benefits ul {
    grid-template-columns: 1fr;
  }
  
  .bottom-warning h3 {
    font-size: 1.5em;
  }
  
  .bottom-warning p {
    font-size: 1em;
  }
  
  .warning-banner {
    padding: 12px 15px;
    font-size: 14px;
  }
  
  .faq h2 {
    font-size: 2em;
  }
  
  .faq-question {
    padding: 20px 15px;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  
  .faq-question h3 {
    font-size: 1.1em;
  }
  
  .faq-toggle {
    align-self: flex-end;
    margin-top: -35px;
  }
  
  .faq-item.active .faq-answer {
    padding: 0 15px 20px 15px;
  }
  
  .legal-section {
    padding: 20px 15px;
    margin-bottom: 30px;
  }
  
  .legal-section h2 {
    font-size: 1.3em;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .legal-section p {
    font-size: 1em;
  }
  
  .legal-section li {
    padding-left: 20px;
  }
  
  .highlight-box {
    padding: 20px 15px;
  }
  
  .contact-info {
    padding: 15px;
  }
  
  .thank-you-card {
    padding: 30px 20px;
  }
  
  .thank-you-card h2 {
    font-size: 1.8em;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
  }
  
  .actions {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-primary, .btn-secondary {
    width: 100%;
    max-width: 250px;
    text-align: center;
  }
  
  .iframe-section {
    padding: 20px 15px;
  }
  
  .iframe-section iframe {
    height: 400px;
  }
}
