.blob{width:100%;box-shadow:0 0 0 0#000;transform:scale(1);animation:pulse 2s infinite}@keyframes pulse{0%{transform:scale(.95);box-shadow:0 0 0 0 rgba(0,0,0,.7)}70%{transform:scale(1);box-shadow:0 0 0 10px transparent}to{transform:scale(.95);box-shadow:0 0 0 0 transparent}}.promocode{border-style:dashed;font-size:2em;margin:auto;width:50%;padding:10px;text-align:center;display:block}.cta-button{display:inline-block;padding:.5rem 1rem;background-color:#07c;color:#fff;text-align:center;font-size:14px;font-weight:600;text-decoration:none;border-radius:3px;transition:background-color .3s}.cta-button:hover{background-color:#005fa3;text-decoration:none}@media (max-width:767px){.hide-on-mobile{display:none}}
/* SpellWin Casino Custom Styles - Unique naming to avoid conflicts */

/* Main Container */
.sw-container {
  width: 1400px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
}

@media (min-width: 1400px) {
  .sw-container {
    width: 1400px;
  }
}

/* Section Styles */
.sw-intro-section,
.sw-features-section,
.sw-bonuses-section,
.sw-games-section,
.sw-payments-section {
  width: 100%;
  box-sizing: border-box;
  padding: 30px 0;
}

/* Title Wrappers */
.sw-title-wrapper {
  text-align: center;
  margin-bottom: 25px;
  position: relative;
}

.sw-title-wrapper::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #7b4397, #dc2430);
  margin: 15px auto 0;
  border-radius: 2px;
}

/* Titles */
.sw-main-title {
  font-size: 48px;
  color: #7b4397;
  margin: 0 0 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  font-weight: 700;
}

.sw-section-title {
  font-size: 36px;
  color: #7b4397;
  margin: 0 0 15px;
  position: relative;
  display: inline-block;
}

.sw-feature-title,
.sw-bonus-title,
.sw-category-title,
.sw-payment-title,
.sw-faq-title {
  font-size: 24px;
  color: #7b4397;
  margin: 0 0 15px;
  font-weight: 600;
}

.sw-tips-title,
.sw-steps-title {
  font-size: 18px;
  color: #4d4d4d;
  margin: 0 0 10px;
  font-weight: 600;
}

/* Content Sections */
.sw-intro-content,
.sw-features-content,
.sw-bonuses-content,
.sw-games-content,
.sw-payments-content {
  line-height: 1.6;
}

/* Feature Cards */
.sw-feature-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-left: 5px solid #7b4397;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sw-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

/* Bonus Blocks */
.sw-bonus-block {
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.sw-bonus-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #7b4397, #dc2430);
}

.sw-bonus-content {
  position: relative;
  z-index: 1;
}

/* Tips Container */
.sw-tips-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.sw-tips-block {
  flex: 1 1 calc(50% - 20px);
  min-width: 280px;
  background-color: #f0f4f8;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
  .sw-tips-block {
    flex: 1 1 100%;
  }
}

/* Lists */
.sw-tips-list,
.sw-steps-list {
  margin: 0;
  padding: 0 0 0 20px;
}

.sw-tips-list li,
.sw-steps-list li {
  margin-bottom: 10px;
  position: relative;
  line-height: 1.5;
}

.sw-steps-list li {
  padding-left: 5px;
}

.sw-tips-list li::marker {
  color: #7b4397;
  font-weight: bold;
}

/* Game Categories Grid */
.sw-games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 25px;
  margin-top: 25px;
}

@media (max-width: 768px) {
  .sw-games-grid {
    grid-template-columns: 1fr;
  }
}

.sw-game-category {
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.sw-game-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.sw-category-content {
  flex-grow: 1;
}

/* Payment Blocks */
.sw-payment-block {
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.sw-payment-steps,
.sw-payment-tips {
  margin-top: 20px;
  background-color: #fff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.03);
}

/* FAQ Block */
.sw-faq-block {
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.sw-faq-item {
  margin-bottom: 20px;
  border-bottom: 1px solid #eaeaea;
  padding-bottom: 15px;
}

.sw-faq-item:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}

.sw-question {
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.sw-answer {
  color: #555;
}

/* Divider */
.sw-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(123, 67, 151, 0.3), transparent);
  margin: 40px 0;
  width: 100%;
}

/* Emoji Styling */
.sw-emoji {
  display: inline-block;
  margin-left: 5px;
  vertical-align: middle;
  font-size: 90%;
}

/* Mobile Responsiveness */
@media (max-width: 1400px) {
  .sw-container {
    padding: 0 20px;
  }
}

@media (max-width: 992px) {
  .sw-main-title {
    font-size: 36px;
  }
  
  .sw-section-title {
    font-size: 30px;
  }
  
  .sw-feature-title,
  .sw-bonus-title,
  .sw-category-title,
  .sw-payment-title,
  .sw-faq-title {
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  .sw-main-title {
    font-size: 32px;
  }
  
  .sw-section-title {
    font-size: 26px;
  }
  
  .sw-feature-title,
  .sw-bonus-title,
  .sw-category-title,
  .sw-payment-title,
  .sw-faq-title {
    font-size: 20px;
  }
  
  .sw-feature-card,
  .sw-bonus-block,
  .sw-game-category,
  .sw-payment-block,
  .sw-faq-block {
    padding: 20px;
  }
  
  .sw-tips-container {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .sw-main-title {
    font-size: 28px;
  }
  
  .sw-section-title {
    font-size: 24px;
  }
  
  .sw-feature-card,
  .sw-bonus-block,
  .sw-game-category,
  .sw-payment-block,
  .sw-payment-steps,
  .sw-payment-tips,
  .sw-faq-block {
    padding: 15px;
  }
}

/* Special styling touches */
.sw-bonus-title {
  display: inline-block;
  position: relative;
}

.sw-bonus-title::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #7b4397, #dc2430);
  border-radius: 1.5px;
}

.sw-question {
  display: flex;
  align-items: center;
}

.sw-question::before {
  content: "Q";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background-color: #7b4397;
  color: white;
  border-radius: 50%;
  margin-right: 10px;
  font-size: 14px;
  font-weight: bold;
}
/* SpellWin Casino Additional Styles - Part 2 */

/* Registration Section */
.sw-registration-section,
.sw-join-section,
.sw-support-section,
.sw-mobile-section {
  width: 100%;
  box-sizing: border-box;
  padding: 30px 0;
}

.sw-registration-content,
.sw-join-content,
.sw-support-content,
.sw-mobile-content {
  line-height: 1.6;
}

/* Subsection Title */
.sw-subsection-title {
  font-size: 24px;
  color: #7b4397;
  margin: 30px 0 15px;
  font-weight: 600;
}

/* Registration Steps */
.sw-registration-steps {
  margin: 25px 0;
  padding: 25px;
  background-color: #f8f9fa;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.sw-numbered-steps {
  counter-reset: step-counter;
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.sw-numbered-steps li {
  position: relative;
  margin-bottom: 30px;
  padding-left: 50px;
  counter-increment: step-counter;
}

.sw-numbered-steps li:last-child {
  margin-bottom: 0;
}

.sw-numbered-steps li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #7b4397, #dc2430);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.sw-step-title {
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
  font-size: 18px;
}

.sw-step-content {
  color: #555;
}

/* Verification Block */
.sw-verification-block {
  margin: 25px 0;
  padding: 25px;
  background-color: #f8f9fa;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.sw-verification-item {
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eaeaea;
}

.sw-verification-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.sw-verification-title {
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.sw-verification-content {
  color: #555;
}

.sw-document-list li {
  margin-bottom: 10px;
}

/* Join Call-to-Action */
.sw-join-callout {
  background: linear-gradient(135deg, rgba(123, 67, 151, 0.1), rgba(220, 36, 48, 0.1));
  border-radius: 10px;
  padding: 30px;
  font-size: 18px;
  line-height: 1.6;
  border-left: 5px solid #7b4397;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
}

/* Support Blocks */
.sw-support-block {
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.sw-support-block:hover {
  transform: translateY(-5px);
}

.sw-support-title {
  font-size: 22px;
  color: #7b4397;
  margin: 0 0 15px;
  font-weight: 600;
  position: relative;
  display: inline-block;
}

.sw-support-title::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #7b4397, #dc2430);
  border-radius: 1.5px;
}

.sw-support-block-content {
  color: #555;
}

/* Email & Language Lists */
.sw-email-list,
.sw-language-list,
.sw-resource-list,
.sw-hours-list,
.sw-perks-list {
  padding-left: 20px;
  margin: 15px 0;
}

.sw-email-list li,
.sw-language-list li,
.sw-resource-list li,
.sw-hours-list li,
.sw-perks-list li {
  margin-bottom: 10px;
  position: relative;
}

.sw-language-list {
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
  padding-left: 0;
}

.sw-language-list li {
  flex: 0 0 calc(20% - 10px);
  margin-right: 10px;
  margin-bottom: 10px;
  background-color: #f0f4f8;
  padding: 8px 12px;
  border-radius: 5px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

@media (max-width: 992px) {
  .sw-language-list li {
    flex: 0 0 calc(25% - 10px);
  }
}

@media (max-width: 768px) {
  .sw-language-list li {
    flex: 0 0 calc(33.33% - 10px);
  }
}

@media (max-width: 576px) {
  .sw-language-list li {
    flex: 0 0 calc(50% - 10px);
  }
}

/* Mobile Gaming Section */
.sw-mobile-info {
  position: relative;
  padding: 25px;
  background-color: #f8f9fa;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.sw-mobile-perks {
  margin: 20px 0;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  border-left: 4px solid #7b4397;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.03);
}

.sw-perks-list li {
  margin-bottom: 12px;
  padding-left: 30px;
  position: relative;
}

.sw-perks-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  background-color: #7b4397;
  color: white;
  font-size: 12px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Загальні стилі */
.logo {
    display: flex;
    align-items: center;
    width: 280px;
}
.logo-img {
    width: 80px;
}
.logo-title {
    margin-left: 10px;
    font-size: 1.1em;
}
header {
    position: relative;
    background: var(--button-base);
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

menu li {
    margin: 0 6px;
}

menu li a {
    text-decoration: none;
    font-size: 16px;
}

menu li a:hover {
    color: #00bfff;
}

/* Кнопка меню для мобільної версії */
.menu-button {
    display: none; /* Сховати на десктопі */
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
}

/* Сховане меню для мобільної версії */
.mobile-menu {
    display: none; /* Ховається за замовчуванням */
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 20px;
    background: #333;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    list-style: none;
    padding: 10px 0;
    width: 200px;
    z-index: 10;
}

.mobile-menu li {
    margin: 10px 0;
    text-align: center;
}

.mobile-menu li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}

.mobile-menu li a:hover {
    color: #00bfff;
}

/* adaption */
@media (max-width: 768px) {
    menu {
        display: flex; /* hide standard menu */
    }

    menu li.hom {
        display: none;
    }

    .menu-button {
        display: block; /* show menu on mob */
        padding-right: 8px;
        padding-left: 8px;
    }
}

/* banner section */
.header-background-img {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 6px;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-background-img-content {
    text-align: center;
    color: black;
    padding: 20px;
    border-radius: 10px;
    max-width: 500px;
}

.header-background-img-content strong {
    color: white;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    font-size: 50px;
    margin: 0;
}

.header-background-img-content p {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    font-size: 20px;
    margin: 10px 0;
}

.button {
    display: inline-block;
    background: orange;
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    transition: background 0.3s ease;
}

.button:hover {
    background: darkorange;
}

.games-images {
    margin-top: 15px;
    overflow-x: scroll;
    overflow-y: hidden;
    /* height: 340px; */
    white-space:nowrap;
    background-color: var(--button-base);
}

.games-images img {
    width: 200px;
    height: 200px;
}

/* slider */

.slider-container {
    padding: 20px;
    background: var(--button-base);
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    margin: 20px auto;
}

.slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.slider-header span {
    margin: 0;
    font-size: 20px;
    font-weight: bold;
}

.slider-header .controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.slider-header .view-all {
    font-size: 14px;
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.slider-header .view-all span {
    background: #ddd;
    color: #555;
    border-radius: 50%;
    font-size: 12px;
    padding: 3px 6px;
}

.slider-header .nav-button {
    width: 30px;
    height: 30px;
    border: none;
    background: var(--links);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
}

.slider-header .nav-button:hover {
    background: #ccc;
}

.slider {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-behavior: smooth;
    transition: max-height 0.3s ease;
}

.slider::-webkit-scrollbar {
    display: none; /* Приховуємо скролбар */
}

.slider-item {
    flex: 0 0 auto;
    width: 150px;
    height: 150px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    background: #ddd;
    position: relative;
}

.slider-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* "View all" */
.expanded {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
    max-height: none;
}

.hidden {
    display: none;
}

.footer-provider-images
{
    margin-top: 15px;
    overflow-y: hidden;
    white-space:nowrap;
    border-radius: 6px;
    background-color: var(--button-base);
    text-align: center;
}

.footer-provider-images img {
    padding: 15px;
    max-height: 80px;
}

.footer-technical-page {
    margin-top: 15px;
    color: var(--links);
    text-align: center;
}
.footer-technical-page a{
    padding: 5px;
    font-size: 1.5em;

}
