/* Base styles for the Social Casino LP */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: #242424;
  background-color: #f9f9fb;
  line-height: 1.6;
  min-height: 100vh !important;
  display: flex;
  flex-direction: column;
}

a {
  color: #0077ff;
  text-decoration: none;
}


/* Container */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header */
.site-header {
  background: #0a0a23;
  color: #fff;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}
.logo {
  font-weight: 700;
  font-size: 1.25rem;
  color: #fff;
}
.nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 1rem;
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}
.nav-toggle:focus {
  outline: 2px solid #aad8ff;
  outline-offset: 2px;
}

/* Responsive navigation */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }
  .nav {
    position: absolute;
    top: 100%;
    right: 0;
    background: #0a0a23;
    width: 200px;
    transform: translateY(-20px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }
  .nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .nav ul {
    flex-direction: column;
    gap: 0;
  }
  .nav li {
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .nav a {
    display: block;
    padding: 0.75rem 1rem;
  }
  .header-inner {
    position: relative;
  }
}
.nav a {
  color: #fff;
  font-weight: 500;
}
.nav a:hover {
  color: #aad8ff;
}

/* Hero */
.hero {
  position: relative;
  color: #fff;
  text-align: center;
}
.hero-bg {
  width: 100%;
  height: 450px;
  object-fit: cover;
  filter: brightness(0.55);
}
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}
.hero .lead {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}
.cta {
  display: inline-block;
  background: #ff8900;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  margin-right: 1rem;
  transition: background 0.2s ease;
}
.cta:hover {
  background: #ff7300;
  text-decoration: none;
}
.badges {
  margin-top: 1rem;
}
.badge {
  display: inline-block;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
  margin-right: 0.5rem;
}
.micro-link {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: #aad8ff;
}
.micro-link:hover {
  text-decoration: underline;
}

/* Sections */
.section {
  padding: 3rem 0;
}
.section h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  text-align: center;
}
.step-number {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  background: #ff8900;
  color: #fff;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

/* Games Gallery */
.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
}
.game-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  transition: box-shadow 0.2s ease;
}
.game-card:hover {
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.game-thumb {
  background: linear-gradient(145deg, #453fff, #8d4fff);
  height: 120px;
  border-radius: 6px;
  margin-bottom: 0.75rem;
}
.game-card h3 {
  margin: 0.5rem 0;
  font-size: 1.1rem;
}
.game-card p {
  font-size: 0.875rem;
  color: #555;
}
.cta-link {
  display: inline-block;
  margin-top: 1.5rem;
  color: #0077ff;
  font-weight: 500;
}
.cta-link:hover {
  text-decoration: underline;
}

/* Responsible Play */
.responsible-play {
  background: #f2f2fa;
  text-align: center;
}
.responsible-play p {
  margin-bottom: 1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.btn-secondary {
  display: inline-block;
  background: #fff;
  color: #ff8900;
  border: 2px solid #ff8900;
  padding: 0.6rem 1.4rem;
  border-radius: 4px;
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease;
}
.btn-secondary:hover {
  background: #ff8900;
  color: #fff;
  text-decoration: none;
}
.btn-link {
  background: none;
  border: none;
  color: #0077ff;
  padding: 0;
  font-size: 1rem;
  cursor: pointer;
}
.btn-link:hover {
  text-decoration: underline;
}

/* FAQ */
.faq details {
  margin-bottom: 1rem;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  padding: 0.75rem 1rem;
  background: #fff;
}
.panel{
  padding:0rem 1rem !important;

}

/* Contact page */
.contact-section p {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}
.contact-info, .contact-form-wrapper {
  flex: 1 1 300px;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.contact-info h2 {
  margin-top: 0;
  font-size: 1.2rem;
}
.contact-info address {
  font-style: normal;
  margin-bottom: 1rem;
  color: #555;
  line-height: 1.5;
}
.contact-info p {
  margin: 0 0 1rem 0;
}
.contact-form-wrapper h2 {
  margin-top: 0;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.contact-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #333;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-bottom: 1rem;
  font-family: inherit;
  font-size: 1rem;
}
.contact-form textarea {
  resize: vertical;
}
.contact-form button {
  align-self: start;
}
@media (max-width: 768px) {
  .contact-grid {
    flex-direction: column;
  }
}
.faq summary {
  font-weight: 600;
  cursor: pointer;
}
.faq p {
  margin-top: 0.5rem;
}

/* Footer */
.site-footer {
  background: #0a0a23;
  color: #fff;
  padding: 2rem 0;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
}
.footer-links a {
  color: #aad8ff;
  font-size: 0.875rem;
}
.footer-links a:hover {
  color: #fff;
  text-decoration: underline;
}
.footer-note {
  font-size: 0.75rem;
  text-align: center;
  color: #c5c5dd;
}

/* Modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 2000;
}
.modal-content {
  background: #fff;
  color: #333;
  padding: 2rem;
  border-radius: 8px;
  max-width: 480px;
  width: 90%;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.25);
}
.modal-actions {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.btn-primary {
  display: inline-block;
  background: #ff8900;
  color: #fff;
  padding: 0.6rem 1.4rem;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}
.btn-primary:hover {
  background: #ff7300;
}
.btn-secondary {
  display: inline-block;
  background: transparent;
  color: #ff8900;
  border: 2px solid #ff8900;
  padding: 0.6rem 1.4rem;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.btn-secondary:hover {
  background: #ff8900;
  color: #fff;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0a0a23;
  color: #fff;
  padding: 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 1500;
}
.cookie-banner p {
  margin: 0;
  font-size: 0.875rem;
  flex: 1;
}
.cookie-actions {
  display: flex;
  gap: 0.75rem;
}
.cookie-banner .btn-secondary {
  border-color: #aad8ff;
  color: #aad8ff;
}
.cookie-banner .btn-secondary:hover {
  background: #aad8ff;
  color: #0a0a23;
}
.cookie-banner .btn-link {
  color: #aad8ff;
  padding: 0;
}
.cookie-banner.show {
  visibility: visible;
  opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 1.75rem;
  }
  .hero .lead {
    font-size: 1rem;
  }
  .step-number {
    width: 32px;
    height: 32px;
    line-height: 32px;
    font-size: 0.875rem;
  }
  .nav ul {
    gap: 0.75rem;
  }
}
footer{
  margin-top: auto ;
}
main {
  flex: 1;
}