:root {
    --primary-color: #11A84E;
    --secondary-color: #22C768;
    --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --card-bg: #11271B;
    --page-bg: #08160F;
    --text-main: #F2FFF6;
    --text-secondary: #A7D9B8;
    --border-color: #2E7A4E;
    --glow-color: #57E38D;
    --gold-color: #F2C14E;
    --divider-color: #1E3A2A;
    --deep-green: #0A4B2C;
}

.page-jackpot-slots {
    font-family: 'Arial', sans-serif;
    color: var(--text-main);
    background-color: var(--page-bg);
    line-height: 1.6;
    padding-bottom: 60px;
}

.page-jackpot-slots__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: 10px;
    background-color: var(--deep-green);
    overflow: hidden;
}

.page-jackpot-slots__hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.page-jackpot-slots__hero-image {
    width: 100%;
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-jackpot-slots__hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    object-fit: cover;
}

.page-jackpot-slots__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    max-width: 900px;
}

.page-jackpot-slots__main-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--gold-color);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-jackpot-slots__description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-jackpot-slots__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--button-gradient);
    color: var(--text-main);
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.25rem;
    font-weight: bold;
    margin-top: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: none;
    cursor: pointer;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-jackpot-slots__cta-button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-jackpot-slots__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: var(--gold-color);
    text-align: center;
    margin-bottom: 40px;
    padding-top: 40px;
    text-shadow: 0 0 8px rgba(242, 193, 78, 0.3);
}

.page-jackpot-slots__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-jackpot-slots__text-block {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    text-align: justify;
}

.page-jackpot-slots__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.page-jackpot-slots__grid--2-cols {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.page-jackpot-slots__card,
.page-jackpot-slots__promo-card,
.page-jackpot-slots__feature-item,
.page-jackpot-slots__strategy-item {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-jackpot-slots__card:hover,
.page-jackpot-slots__promo-card:hover,
.page-jackpot-slots__feature-item:hover,
.page-jackpot-slots__strategy-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-jackpot-slots__card img,
.page-jackpot-slots__promo-card img,
.page-jackpot-slots__feature-item img,
.page-jackpot-slots__strategy-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
    max-width: 100%;
    display: block;
}

.page-jackpot-slots__card-title,
.page-jackpot-slots__promo-title,
.page-jackpot-slots__feature-title,
.page-jackpot-slots__strategy-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 15px;
    line-height: 1.3;
}

.page-jackpot-slots__card-text,
.page-jackpot-slots__promo-text,
.page-jackpot-slots__feature-text,
.page-jackpot-slots__strategy-text {
    font-size: 1rem;
    color: var(--text-secondary);
    text-align: justify;
}

.page-jackpot-slots__dark-bg {
    background-color: var(--deep-green);
    padding: 60px 0;
}

.page-jackpot-slots__game-types-section,
.page-jackpot-slots__strategy-section {
    padding: 60px 0;
}

.page-jackpot-slots__button-group {
    text-align: center;
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.page-jackpot-slots__faq-section {
    padding: 60px 0;
    background-color: var(--page-bg);
}

.page-jackpot-slots__faq-list {
    margin-top: 30px;
}

details.page-jackpot-slots__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  background: var(--card-bg);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
details.page-jackpot-slots__faq-item summary.page-jackpot-slots__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  color: var(--text-main);
  font-weight: 600;
}
details.page-jackpot-slots__faq-item summary.page-jackpot-slots__faq-question::-webkit-details-marker {
  display: none;
}
details.page-jackpot-slots__faq-item summary.page-jackpot-slots__faq-question:hover {
  background: var(--deep-green);
}
.page-jackpot-slots__faq-qtext {
  flex: 1;
  font-size: 1.1rem;
  line-height: 1.5;
  text-align: left;
  color: var(--text-main);
}
.page-jackpot-slots__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: var(--gold-color);
  flex-shrink: 0;
  margin-left: 15px;
  width: 32px;
  text-align: center;
}
details.page-jackpot-slots__faq-item .page-jackpot-slots__faq-answer {
  padding: 0 25px 25px;
  background: var(--deep-green);
  border-radius: 0 0 10px 10px;
  color: var(--text-secondary);
  font-size: 1rem;
}
.page-jackpot-slots__faq-answer p {
    margin: 0;
    color: var(--text-secondary);
}

.page-jackpot-slots__conclusion-section {
    padding: 80px 0;
    text-align: center;
    background-color: var(--deep-green);
}