/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  background: #0c1022;
  color: #f5f5f5;
}
a { color: #f5c542; text-decoration: none; transition: 0.3s; }
a:hover { color: #fff176; }

/* Container */
.container { width: 90%; max-width: 1200px; margin: 0 auto; }

/* Header */
.header {
  background: rgba(10, 14, 30, 0.9);
  position: fixed;
  width: 100%; top: 0; left: 0;
  z-index: 1000;
}
.header-container {
  display: flex; justify-content: space-between; align-items: center;
  padding: 15px 0;
}
.logo { font-size: 1.5rem; font-weight: 700; color: #f5c542; display: flex; align-items: center; }
.nav ul { display: flex; gap: 20px; }
.nav ul li a { font-weight: 700; }
.burger { display: none; background: none; border: none; font-size: 1.8rem; color: #f5c542; }

/* Hero */
.hero {
  height: 90vh; display: flex; align-items: center; justify-content: center;
  text-align: center; background: linear-gradient(to right, #141a34, #0c1022);
  padding-top: 70px;
}
.hero h1 { font-size: 2.5rem; margin-bottom: 15px; }
.hero p { font-size: 1.2rem; margin-bottom: 20px; color: #ccc; }
.btn-primary {
  background: #f5c542; color: #0c1022; padding: 12px 25px;
  border-radius: 30px; font-weight: bold; transition: 0.3s;
}
.btn-primary:hover { background: #ffda66; }

/* Offers */
.offers { padding: 60px 0; }
.offers h2 { text-align: center; margin-bottom: 40px; }
.offers-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px;
}
.offer-card {
  background: #1a1f3c; padding: 20px; border-radius: 15px; text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3); transition: transform 0.3s;
}
/* Burger */
.burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 20px;
  cursor: pointer;
}

.burger span {
  display: block;
  height: 3px;
  background: #fff;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 400px;
  color: #fff;
  padding: 2rem;
  background: url('../img/casino-bg.jpg') center/cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.4); /* затемнение */
  backdrop-filter: blur(8px); /* размытие */
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.hero p {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.btn {
  display: inline-block;
  background: #e8b923;
  color: #0f1116;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s;
}

.btn:hover {
  background: #d19e10;
}

/* ===== CartÃ£o de oferta ===== */
.offer{
  display:grid; gap:1rem; grid-template-columns: 1.4fr 1fr;
  background:var(--card); border:1px solid var(--border); border-radius:1rem; padding:1rem; box-shadow:var(--shadow);
}
.offer__left{ display:flex; gap:1rem; align-items:flex-start }
.offer__logo{
  display: flex; height:88px; border-radius:.7rem; background:linear-gradient(180deg,#292949,#20203a);
  display:grid; place-items:center; font-weight:800; letter-spacing:.5px; color:#fff; border:1px solid #2f2f52
}
.offer__meta{ display:flex; flex-direction:column; gap:.4rem }
.offer__name{ margin:.1rem 0 0; font-size:1.2rem }
.offer__desc{ margin:.2rem 0 0; color:var(--muted) }
.rating{ display:inline-flex; align-items:center; gap:.2rem; color:#ffd56a }
.rating__num{ margin-left:.4rem; color:var(--muted); font-weight:700 }

.offer__right{ display:flex; flex-direction:column; justify-content:space-between; gap:1rem }
.offer__payments{ background:#1a1a2e; border:1px solid #2a2a44; border-radius:.8rem; padding:.8rem }
.paytitle{ font-weight:700; margin-bottom:.5rem }
.paylist{ display:flex; flex-wrap:wrap; gap:.4rem; list-style:none; padding:0; margin:0 }
.pay{
  padding:.25rem .5rem; background:#232340; border:1px solid #2e2e53; border-radius:.5rem; font-size:.9rem; color:#d9d9ea
}
.pay--brand i{ margin-right:.35rem }
.pay--muted{ opacity:.65 }

.offer__bonus{
  display:flex; align-items:center; justify-content:space-between; gap:.8rem;
  background:#1a1a2e; border:1px solid #2a2a44; border-radius:.8rem; padding:.8rem
}
.bonus__line{ display:flex; align-items:center; gap:.5rem }

/* Footer */
.footer {
  text-align: center;
  padding: 20px;
  background: #1a1d24;
  font-size: 0.9rem;
  color: #aaa;
}

.offer-card:hover { transform: translateY(-5px); }
.offer-card h3 { color: #f5c542; margin-bottom: 10px; }
.btn-secondary {
  display: inline-block; margin-top: 10px;
  padding: 10px 20px; background: transparent; border: 2px solid #f5c542;
  color: #f5c542; border-radius: 30px; transition: 0.3s;
}
.btn-secondary:hover { background: #f5c542; color: #0c1022; }

/* About */
.about { padding: 60px 0; background: #11152c; text-align: center; }
.about h2 { margin-bottom: 20px; }

/* FAQ */
.faq-section { padding: 60px 0; }
.faq-question {
  width: 100%; text-align: left; padding: 15px; background: #1a1f3c;
  border: none; color: #f5c542; font-size: 1.1rem; display: flex; justify-content: space-between;
  cursor: pointer; margin-bottom: 5px; border-radius: 10px;
}
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.5s ease; background: #22264a; padding: 0 15px; border-radius: 0 0 10px 10px; }
.faq-answer p { padding: 15px 0; color: #ddd; }

/* Responsible */
.responsible { padding: 60px 0; background: #141a34; }
.responsible ul { margin-top: 15px; list-style: none; }
.responsible ul li { margin: 10px 0; }

.footer-lusitano {
  background: linear-gradient(180deg,#0c1022 0%,#141a34 100%);
  color: #f5f5f5;
  padding: 60px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-family: "Inter", sans-serif;
}

.footer-left, .footer-right {
  flex: 1;
}

.footer-brand {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 1.5rem;
  color: #f5c542;
}

.footer-brand-icon {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-right: 10px;
  border-radius: 8px;
  background: #f5c542;
  color: #0c1022;
}

.footer-lead {
  margin-top: 1rem;
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.5;
}

.footer-right h5 {
  color: #f5c542;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #f5f5f5;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #ffd56a;
  text-decoration: underline;
}

.footer-agegate {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  color: #ccc;
}

.footer-ageicon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 28px;
  border-radius: 8px;
  background: #f5c542;
  font-weight: 800;
  color: #0c1022;
}

.footer-seals {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(60px,1fr));
  gap: 14px;
  align-items: center;
  justify-items: center;
  margin-top: 2rem;
}

.footer-seals figure {
  margin: 0;
  padding: 10px;
  background: rgba(255,255,255,0.06);
  border-radius: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.footer-seals figure:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  background: rgba(255,255,255,0.1);
}

.footer-seals img {
  height: 34px;
  width: auto;
  object-fit: contain;
}

.footer-note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #999;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; width: 100%; background: #1a1f3c;
  color: #fff; display: flex; justify-content: space-between; align-items: center;
  padding: 10px 20px; z-index: 10000;
}
.cookie-banner button {
  background: #f5c542; border: none; padding: 8px 15px; border-radius: 20px; cursor: pointer;
}

#scrollTopBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    
    background: #f5c542;
    border: none;
    padding: 10px;
    border-radius: 50%;
    font-size: 30px;
    width: 54px;
    cursor: pointer;
}
.responsible {
  background: #141a34;
  color: #f5f5f5;
  font-family: "Inter", sans-serif;
  padding: 60px 0;
}

.responsible-title {
  color: #f5c542;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 20px;
}

.responsible-lead {
  color: #ccc;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.responsible-info h3 {
  color: #f5c542;
  margin-top: 30px;
  margin-bottom: 10px;
}

.responsible-info ul {
  list-style: disc;
  padding-left: 20px;
  color: #ddd;
  margin-bottom: 20px;
}

.responsible-info ul li {
  margin-bottom: 8px;
}

.responsible-info a {
  color: #f5c542;
  text-decoration: none;
  transition: 0.3s;
}

.responsible-info a:hover {
  color: #fff176;
  text-decoration: underline;
}
.guide {
  padding: 4rem 0;
  background: var(--bg); /* ex: #0f0f1f */
  color: var(--text);    /* ex: #e0e0f0 */
}

.guide .container {
  max-width: 1000px;
  margin: 0 auto;
}

.guide h3.text-center {
  text-align: center;
  font-size: 1.3rem;
  line-height: 1.6;
  color: #fff;
}

.guide-block {
  margin-bottom: 2.5rem;
  padding: 1.5rem 1.8rem;
  background: var(--card); /* ex: #1a1a2e */
  border-radius: 1rem;
  border: 1px solid var(--border); /* ex: #2a2a44 */
  box-shadow: var(--shadow);
}

.guide-block h2 {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  color: #ffd56a;
}

.guide-block p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--muted);
}

.guide-block ul.two-cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem 1rem;
  list-style: disc;
  padding-left: 1.2rem;
}

.guide-block.final {
  border: 2px solid #ffd56a;
  background: #1e1e35;
}
.parallax-section {
  position: relative;
  height: 400px; /* средняя высота */
  background-image: url('../img/parallax-bg.jpg'); /* твой фон */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.parallax-section .overlay {
  background-color: rgba(0, 0, 0, 0.5); /* тёмная полупрозрачная наложка */
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  padding: 1rem;
}

.parallax-section h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.parallax-section p {
  font-size: 1.2rem;
}
.faq-section h2 {
    margin-bottom: 20px;
}

@media (max-width:900px){
    .footer-seals {
        flex-direction: column;
        grid-template-columns: none;
        
    }
  .offer{ grid-template-columns:1fr }
  .grid-2{ grid-template-columns:1fr }
  .logos{ grid-template-columns:repeat(3,minmax(0,1fr)) }
}

/* Responsive */
@media(max-width: 768px) {
    #burger span {
  display: block;
  height: 3px;
  background: #f5c542;
  border-radius: 3px;
  transition: all 0.3s ease;
}
#burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}
#burger.active span:nth-child(2) {
  opacity: 0;
}
#burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}
  .nav { display: none; }
      .burger {
        display: flex
;
        float: right;
        position: relative;
        top: -30px;
    }
  .nav.active { display: block; position: absolute; top: 60px; left: 0; width: 100%; background: #11152c; }
  .nav ul { flex-direction: column; padding: 20px; gap: 15px; }
}
