/* ===================== RESET ===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Inter', sans-serif;
  color: #2b1d1d;
  line-height: 1.6;
  background: #fffdfb;
}
a {
  text-decoration: none;
  color: inherit;
}

/* ===================== CONTAINER ===================== */
.sw-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===================== HEADER ===================== */
.sw-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ffffff;
  box-shadow: 0 3px 10px rgba(160, 0, 0, 0.1);
  padding: 15px 0;
}
.sw-header .sw-brand {
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  font-weight: 800;
}
.sw-header .sw-brand span span {
  color: #b3001b;
}
.sw-nav {
  display: flex;
  gap: 25px;
}
.sw-nav a {
  font-weight: 700;
  transition: color 0.3s;
}
.sw-nav a:hover {
  color: #b3001b;
}
.sw-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  border: none;
  background: none;
  cursor: pointer;
}
.sw-burger span {
  width: 25px;
  height: 3px;
  background: #2b1d1d;
  border-radius: 2px;
}

/* ===================== HERO ===================== */
.sw-hero {
  background: linear-gradient(135deg, #5a0b0b, #7a1c1c);
  color: #fff;
  padding: 100px 0;
}

.sw-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 50px;
}

.sw-hero-text h2 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffd700; /* золотой акцент */
}

.sw-hero-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 30px;
  color: #fff;
  max-width: 550px;
}

.sw-btn-main {
  background: #b3001b;
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  margin-right: 10px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.sw-btn-main:hover {
  background: #d70028;
  transform: scale(1.05);
}

.sw-btn-secondary {
  background: transparent;
  border: 2px solid #ffd700;
  color: #ffd700;
  padding: 10px 26px;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.sw-btn-secondary:hover {
  background: #ffd700;
  color: #4b0d14;
}

.sw-hero-image img {
  width: 100%;
  max-width: 480px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* ===================== OFFERS ===================== */
.sw-offers {
  position: relative;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
  padding: 80px 0;
  overflow: hidden;
}

.sw-offers h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #801313;
  text-align: center;
  margin-bottom: 40px;
}

/* === OFFER CARD === */
.sw-offers {
  background: linear-gradient(135deg, #fff5f5, #ffecec);
  padding: 80px 0;
  text-align: center;
}

.sw-section-title {
  font-size: 2.2rem;
  color: #ffd700;
  margin-bottom: 10px;
  font-weight: 800;
}

.sw-section-sub {
  color: #7a1c1c;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

.sw-offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.sw-offer-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px 25px;
  box-shadow: 0 6px 20px rgba(90, 11, 11, 0.15);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.sw-offer-card:hover {
  border-color: #ffd700;
  box-shadow: 0 10px 30px rgba(90, 11, 11, 0.3);
  transform: translateY(-4px);
}

.sw-offer-top {
  flex-direction: column;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  min-height: 120px;
}

.sw-offer-logo img {
  width: 100%;
  min-height: 141px;
  height: auto;
  border-radius: 8px;
}

.sw-rating {
  font-size: 40px;
  color: #ffd700;
  font-weight: 700;
}

.sw-rating b {
  color: #5a0b0b;
  font-size: 1rem;
  margin-left: 6px;
}

.sw-offer-content h3 {
  color: #4b0d14;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.sw-offer-content p {
  color: #7a1c1c;
  font-size: 1rem;
  margin-bottom: 15px;
}

.sw-payments span {
  display: inline-block;
  background: #fdf3d1;
  color: #4b0d14;
  font-size: 0.8rem;
  padding: 4px 8px;
  border-radius: 4px;
  margin: 0 4px 4px 0;
  font-weight: 600;
}

.sw-offer-actions {
  margin-top: 20px;
}

.sw-btn-bonus {
  display: inline-block;
  background: linear-gradient(135deg, #a30000, #ff002b);
  color: #fff;
  padding: 12px 32px;
  border-radius: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(163, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.sw-btn-bonus:hover {
  background: linear-gradient(135deg, #b81414, #ff4b4b);
  box-shadow: 0 6px 20px rgba(163, 0, 0, 0.4);
  transform: translateY(-3px);
}

.sw-offer-actions small {
  display: block;
  margin-top: 12px;
  color: #7a1c1c;
  font-size: 0.8rem;
}

.sw-offer-actions a {
  color: #fff;
}
a {
  text-decoration: none;
}
.sw-about {
  background: radial-gradient(circle at top, #fffdfb 0%, #fff5f0 100%);
  padding: 100px 0;
  position: relative;
  text-align: center;
}

/* gold top line */
.sw-about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #b3001b, #ffd700, #b3001b);
}

/* header */
.sw-about-head {
  max-width: 800px;
  margin: 0 auto 60px;
}

.sw-about-kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #b3001b;
  color: #fff;
  padding: 6px 16px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  box-shadow: 0 0 15px rgba(179, 0, 27, 0.3);
}

.sw-about-title {
  font-size: 2rem;
  font-weight: 800;
  color: #4b0d14;
  margin: 18px 0 10px;
}

.sw-about-sub {
  color: #661a1a;
  font-size: 1.05rem;
  opacity: 0.9;
  line-height: 1.7;
}

/* grid */
.sw-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}
.sw-feature-card {
  background: #fff;
  border-radius: 18px;
  padding: 40px 25px;
  box-shadow: 0 10px 25px rgba(179, 0, 27, 0.1);
  border: 1px solid #f6d9d9;
  transition: all 0.3s ease;
}

.sw-feature-card:hover {
  transform: translateY(-6px);
  border-color: #ffd700;
  box-shadow: 0 12px 30px rgba(179, 0, 27, 0.25);
}

/* icon */
.sw-feature-icon {
  font-size: 3rem;
  color: #ffd700;
  background: #b3001b;
  width: 90px;
  height: 90px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 0 25px rgba(179, 0, 27, 0.4);
  transition: all 0.3s ease;
}

.sw-feature-card:hover .sw-feature-icon {
  transform: scale(1.1);
  box-shadow: 0 0 35px rgba(255, 215, 0, 0.6);
}

/* text */
.sw-feature-title {
  font-size: 1.3rem;
  color: #4b0d14;
  font-weight: 700;
  margin-bottom: 12px;
}

.sw-feature-desc {
  color: #661a1a;
  font-size: 1rem;
  line-height: 1.6;
}

/* ===================== FAQ ===================== */
/* ===== FAQ SECTION ===== */
.sw-faq {
  position: relative;
  padding: 100px 0;
  color: #fff;
  text-align: center;
  
  overflow: hidden;
}

.sw-faq-overlay {
  position: absolute;
  inset: 0;
  background: rgba(40, 0, 10, 0.75);
  backdrop-filter: blur(3px);
  z-index: 1;
}

.sw-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* HEADER */
.sw-faq-kicker {
  color: #ffd700;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.sw-faq-kicker i {
  color: #ffd700;
  font-size: 1.2rem;
  animation: swStarPulse 2s infinite ease-in-out;
}

.sw-section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.sw-faq .sw-section-sub {
  max-width: 700px;
  margin: 0 auto 50px;
  color: #f9eaea;
}

/* GRID */
.sw-faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  text-align: left;
}

/* ITEMS */
.sw-faq-item {
  background: linear-gradient(135deg, #5a0b0b, #7a1c1c);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.sw-faq-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.15);
}

.sw-faq-question {
  width: 100%;
  background: none;
  border: none;
  color: #fff;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  cursor: pointer;
}

.sw-faq-icon {
  color: #ffd700;
  font-size: 1.4rem;
  transition: transform 0.3s ease;
}

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

.sw-faq-answer {
  max-height: 0;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
  padding: 0 20px;
  
}

.sw-faq-item.active .sw-faq-answer {
  max-height: 250px;
  padding: 15px 20px 25px;
}

.sw-faq-answer p {
  color: #f3f3f3;
  line-height: 1.6;
}

.sw-faq-answer a {
  color: #ffd700;
  text-decoration: underline;
  transition: color 0.2s;
}

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

@keyframes swStarPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.3); }
}

/* ===================== RESPONSIBLE ===================== */
.sw-responsible {
  padding: 60px 0;
  background: #fff9f7;
  text-align: center;
}
.sw-responsible h2 {
  color: #801313;
}
.sw-responsible .sw-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 25px;
}
.sw-responsible .sw-logos img {
  width: 100px;
}
.sw-secure {
  position: relative;
  padding: 100px 0;

  color: #fff;
  overflow: hidden;
}

.sw-secure-overlay {
  position: absolute;
  inset: 0;
  background: rgba(40, 0, 10, 0.85);
  backdrop-filter: blur(4px);
  z-index: 1;
}

.sw-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* HEADER */
.sw-secure-kicker {
  color: #ffd700;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.sw-secure-kicker i {
  color: #ffd700;
  font-size: 1.3rem;
  animation: swPulse 2s infinite ease-in-out;
}

.sw-secure-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.sw-secure-sub {
  max-width: 750px;
  margin: 0 auto 50px;
  color: #f9eaea;
  line-height: 1.6;
}

/* PANELS */
.sw-secure-panels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.sw-secure-panel {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 14px;
  padding: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.05);
}

.sw-secure-panel:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.15);
}

.sw-secure-panel h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #ffd700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sw-secure-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sw-secure-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.5;
}

.sw-secure-icon {
  color: #ffd700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.sw-secure-list a {
  color: #ffd700;
  text-decoration: underline;
  transition: color 0.3s;
}

.sw-secure-list a:hover {
  color: #fff;
}

@keyframes swPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.8; }
}
/* ===================== FOOTER ===================== */
/* ========== FOOTER (BritCasinoDeals) ========== */

.sw-footer {
  background: linear-gradient(180deg, #4b0d14 0%, #2b0106 100%);
  color: #fff;
  padding: 60px 0 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.sw-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 3px;
  background: linear-gradient(90deg, #d4af37 0%, #fff 50%, #d4af37 100%);
  opacity: 0.6;
}

.sw-footer h2 {
  font-size: 1.8rem;
  color: #ffd700;
  margin-bottom: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.sw-footer p {
  max-width: 800px;
  margin: 0.75rem auto;
  font-size: 1rem;
  line-height: 1.6;
  color: #fff;
}

.sw-footer a {
  color: #ffd700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.sw-footer a:hover {
  color: #fff;
}

.sw-footer .sw-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  margin: 30px 0 50px;
}

.sw-footer .sw-logos img {
  height: 40px;
  opacity: 0.85;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.sw-footer .sw-logos img:hover {
  transform: scale(1.1);
  opacity: 1;
}

.sw-footer img[alt="18+ Only"] {
  display: block;
  margin: 0 auto 20px;
  opacity: 0.9;
}

.sw-footer-pages {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin: 20px 0 25px;
}

.sw-footer-pages a {
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.sw-footer-pages a:hover {
  border-color: #ffd700;
}

.sw-footer-bottom p:last-child {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 10px;
}


/* ===================== POPUP ===================== */
.sw-age-popup {
  position: fixed;
  inset: 0;
  background: rgba(179, 0, 27, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.sw-popup-content {
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  text-align: center;
  max-width: 700px;
  width: 90%;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}
.sw-popup-content h2 {
  color: #801313;
  margin-bottom: 15px;
}
.sw-popup-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}
.btn-block {
  display: flex;
}
.sw-age-warning {
  position: relative;
  padding: 10% 0;
  background: url('../img/age-bg.jpg') center center / cover fixed no-repeat;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.sw-age-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(80, 0, 0, 0.85),
    rgba(50, 0, 0, 0.85)
  );
  backdrop-filter: blur(3px);
  z-index: 1;
}

.sw-container {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.sw-age-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.sw-age-icon {
  font-size: 3rem;
  color: #ffd700;
  text-shadow: 0 0 12px rgba(255, 215, 0, 0.6);
  animation: swPulseGold 2s infinite ease-in-out;
}

.sw-age-text h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #ffd700;
  letter-spacing: 0.5px;
}

.sw-age-text p {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  font-size: 1rem;
  color: #f3f3f3;
}

.sw-age-text a {
  color: #ffd700;
  text-decoration: underline;
  transition: color 0.3s;
}

.sw-age-text a:hover {
  color: #fff;
}

@keyframes swPulseGold {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.8; }
}
.sw-privacy {
  background: linear-gradient(180deg, #1e0000, #2a0000);
  color: #fff;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.sw-privacy::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(255, 215, 0, 0.05), transparent 70%);
  z-index: 0;
}

.sw-privacy .sw-container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.sw-privacy-intro {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 60px;
  text-align: center;
  color: #ffd700;
  border-bottom: 1px solid rgba(255, 215, 0, 0.3);
  padding-bottom: 20px;
}

/* ===== Article Blocks ===== */
.sw-privacy-block {
  margin-bottom: 50px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.05);
  transition: all 0.3s ease;
}

.sw-privacy-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.15);
}

.sw-privacy-block h2 {
  color: #ffd700;
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.sw-privacy-block p {
  color: #f4f4f4;
  line-height: 1.7;
  font-size: 1rem;
}

.sw-privacy-list {
  margin: 15px 0 20px 25px;
}

.sw-privacy-list li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}

.sw-privacy-list li::before {
  content: "🎯";
  position: absolute;
  left: 0;
  top: 0;
}

/* ===== Final Article ===== */
.sw-privacy-block.final {
  border-color: #ffd700;
  background: rgba(255, 215, 0, 0.05);
}

/* ===== Links ===== */
.sw-privacy a {
  color: #ffd700;
  text-decoration: underline;
  transition: 0.3s;
}

.sw-privacy a:hover {
  color: #fff;
}
/* ===================== RESPONSIVE ===================== */
@media (max-width: 900px) {
  header .sw-container {
  display: flex
;
    justify-content: space-between;
    align-items: center;
}
  .sw-btn-main {
    margin-right: 0;
    margin-bottom: 10px;
  }
  .btn-block {
    flex-direction: column;
  }
  .btn-block a {
    width: max-content;
  }
  .sw-hero-grid {
    flex-direction: column-reverse;
        display: flex
;
  }

  .sw-hero-text p {
    margin: 0 auto 30px;
  }

  .sw-hero-image img {
    margin: 0 auto;
  }
}
@media(max-width: 768px) {
  .sw-feature-grid {
    grid-template-columns: 1fr;
  }
  .sw-offer-card {
    text-align: center;
  }
  .sw-offer-top {
    flex-direction: column;
    gap: 10px;
  }
  .sw-nav { display: none; flex-direction: column; gap: 15px; }
  .sw-nav.active { display: flex; background: #fff; position: absolute; top: 60px; left: 0; width: 100%; padding: 15px 0; box-shadow: 0 5px 15px rgba(0,0,0,0.1); padding: 10px; }
  .sw-burger { display: flex; }
  .sw-offer-card { flex-direction: column; text-align: center; }
  .sw-offer-cta { flex-direction: row; gap: 20px; margin-top: 15px; }
  .sw-hero h1 { font-size: 2rem; }
  .sw-footer {
    padding: 50px 15px 35px;
  }

  .sw-footer h2 {
    font-size: 1.5rem;
  }

  .sw-footer .sw-logos img {
    height: 32px;
  }

  .sw-footer-pages {
    gap: 10px;
  }
  /* ===== Animation to Cross ===== */
.sw-burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

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

@media (max-width: 768px) {
  .sw-popup-buttons {
    flex-direction: column;
  }
  .sw-about-title {
    font-size: 1.7rem;
  }
  .sw-about-sub {
    font-size: 1rem;
  }
}
