/* style/blog-top-slot-games-2024.css */

:root {
    --primary-color: #C61F1F;
    --secondary-color: #E53030;
    --card-bg: #2A1212;
    --bg-color: #140C0C;
    --text-main: #FFF1E8;
    --border-color: #6A1E1E;
    --gold-color: #F3C54D;
    --deep-red-color: #7E0D0D;
}

.page-blog-top-slot-games-2024 {
    font-family: Arial, sans-serif;
    color: var(--text-main);
    background-color: var(--bg-color);
    line-height: 1.6;
}

.page-blog-top-slot-games-2024__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-blog-top-slot-games-2024__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding as body handles header offset */
    background-color: var(--bg-color);
}

.page-blog-top-slot-games-2024__hero-container {
    position: relative;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-blog-top-slot-games-2024__hero-image {
    width: 100%;
    margin-bottom: 30px;
}

.page-blog-top-slot-games-2024__hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}

.page-blog-top-slot-games-2024__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    padding: 0 15px;
}

.page-blog-top-slot-games-2024__main-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    color: var(--gold-color);
    margin-bottom: 15px;
    font-weight: bold;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-blog-top-slot-games-2024__hero-description {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: var(--text-main);
    max-width: 800px;
    margin: 0 auto 30px auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

.page-blog-top-slot-games-2024__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: none;
}

.page-blog-top-slot-games-2024__cta-button:hover {
    background: linear-gradient(180deg, #D86A14 0%, #FFB04A 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-blog-top-slot-games-2024__section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--gold-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-blog-top-slot-games-2024__text-block {
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 20px;
    text-align: justify;
}

.page-blog-top-slot-games-2024__intro-section {
    background-color: #1e0e0e;
    padding: 60px 0;
    border-bottom: 1px solid var(--border-color);
}

.page-blog-top-slot-games-2024__intro-section img {
    display: block;
    margin: 30px auto 0 auto;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.page-blog-top-slot-games-2024__top-games-section {
    background-color: var(--card-bg);
    padding: 60px 0;
    border-bottom: 1px solid var(--border-color);
}

.page-blog-top-slot-games-2024__game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-blog-top-slot-games-2024__game-card {
    background-color: #2A1212;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    padding-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-top-slot-games-2024__game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-blog-top-slot-games-2024__game-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid var(--border-color);
    display: block;
}

.page-blog-top-slot-games-2024__card-title {
    font-size: 1.5rem;
    color: var(--gold-color);
    margin: 20px 15px 10px 15px;
    font-weight: bold;
}

.page-blog-top-slot-games-2024__card-description {
    font-size: 0.95rem;
    color: var(--text-main);
    padding: 0 15px;
    margin-bottom: 20px;
}

.page-blog-top-slot-games-2024__btn-primary {
    display: inline-block;
    padding: 10px 25px;
    background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
}

.page-blog-top-slot-games-2024__btn-primary:hover {
    background: linear-gradient(180deg, #D86A14 0%, #FFB04A 100%);
    transform: translateY(-1px);
}

.page-blog-top-slot-games-2024__button-group {
    text-align: center;
    margin-top: 40px;
}

.page-blog-top-slot-games-2024__btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    background-color: transparent;
    color: var(--gold-color);
    text-decoration: none;
    border: 2px solid var(--gold-color);
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.page-blog-top-slot-games-2024__btn-secondary:hover {
    background-color: var(--gold-color);
    color: var(--bg-color);
    transform: translateY(-1px);
}

.page-blog-top-slot-games-2024__features-section {
    background-color: #1e0e0e;
    padding: 60px 0;
    border-bottom: 1px solid var(--border-color);
}

.page-blog-top-slot-games-2024__feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-blog-top-slot-games-2024__feature-item {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.page-blog-top-slot-games-2024__feature-title {
    font-size: 1.4rem;
    color: var(--gold-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-blog-top-slot-games-2024__strategy-section {
    background-color: var(--bg-color);
    padding: 60px 0;
    border-bottom: 1px solid var(--border-color);
}

.page-blog-top-slot-games-2024__strategy-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
}

.page-blog-top-slot-games-2024__strategy-text {
    flex: 1;
    min-width: 300px;
}

.page-blog-top-slot-games-2024__strategy-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.page-blog-top-slot-games-2024__strategy-list li {
    background-color: #2A1212;
    border: 1px solid var(--border-color);
    margin-bottom: 10px;
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 1rem;
    color: var(--text-main);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-top-slot-games-2024__strategy-list li strong {
    color: var(--gold-color);
}

.page-blog-top-slot-games-2024__strategy-image {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-blog-top-slot-games-2024__faq-section {
    background-color: #1e0e0e;
    padding: 60px 0;
    border-bottom: 1px solid var(--border-color);
}

.page-blog-top-slot-games-2024__faq-list {
    margin-top: 40px;
}

details.page-blog-top-slot-games-2024__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  background: var(--card-bg);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
details.page-blog-top-slot-games-2024__faq-item summary.page-blog-top-slot-games-2024__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
}
details.page-blog-top-slot-games-2024__faq-item summary.page-blog-top-slot-games-2024__faq-question::-webkit-details-marker {
  display: none;
}
details.page-blog-top-slot-games-2024__faq-item summary.page-blog-top-slot-games-2024__faq-question:hover {
  background: rgba(var(--primary-color), 0.1);
}
.page-blog-top-slot-games-2024__faq-qtext {
  flex: 1;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: var(--text-main);
}
.page-blog-top-slot-games-2024__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--gold-color);
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}
details.page-blog-top-slot-games-2024__faq-item .page-blog-top-slot-games-2024__faq-answer {
  padding: 0 20px 20px;
  background: rgba(var(--card-bg), 0.5);
  border-radius: 0 0 8px 8px;
  color: var(--text-main);
}

.page-blog-top-slot-games-2024__related-articles-section {
    background-color: var(--bg-color);
    padding: 60px 0;
}

.page-blog-top-slot-games-2024__article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-blog-top-slot-games-2024__article-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-top-slot-games-2024__article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-blog-top-slot-games-2024__article-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-bottom: 1px solid var(--border-color);
    display: block;
}

.page-blog-top-slot-games-2024__article-card .page-blog-top-slot-games-2024__card-title {
    text-align: left;
    margin: 20px 20px 10px 20px;
}

.page-blog-top-slot-games-2024__article-card .page-blog-top-slot-games-2024__card-title a {
    color: var(--gold-color);
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-blog-top-slot-games-2024__article-card .page-blog-top-slot-games-2024__card-title a:hover {
    color: var(--primary-color);
}

.page-blog-top-slot-games-2024__article-card .page-blog-top-slot-games-2024__card-description {
    text-align: left;
    padding: 0 20px;
    font-size: 0.9rem;
    color: var(--text-main);
    margin-bottom: 15px;
}

.page-blog-top-slot-games-2024__article-date {
    display: block;
    text-align: left;
    padding: 0 20px 20px;
    font-size: 0.85rem;
    color: rgba(var(--text-main), 0.7);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-blog-top-slot-games-2024__container {
        padding: 15px;
    }
    .page-blog-top-slot-games-2024__main-title {
        font-size: clamp(2rem, 5vw, 3rem);
    }
    .page-blog-top-slot-games-2024__section-title {
        font-size: clamp(1.6rem, 4vw, 2.5rem);
    }
    .page-blog-top-slot-games-2024__game-grid {
        gap: 20px;
    }
    .page-blog-top-slot-games-2024__feature-list {
        gap: 20px;
    }
    .page-blog-top-slot-games-2024__strategy-content {
        flex-direction: column;
    }
    .page-blog-top-slot-games-2024__strategy-image {
        max-width: 100%;
    }
    .page-blog-top-slot-games-2024__article-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-blog-top-slot-games-2024 {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-blog-top-slot-games-2024__hero-section {
        padding-top: 10px !important;
        padding-bottom: 40px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-blog-top-slot-games-2024__hero-image img {
        border-radius: 4px;
    }
    .page-blog-top-slot-games-2024__cta-button {
        padding: 12px 30px;
        font-size: 16px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    .page-blog-top-slot-games-2024__main-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }
    .page-blog-top-slot-games-2024__hero-description {
        font-size: clamp(0.9rem, 2.8vw, 1.1rem);
    }
    .page-blog-top-slot-games-2024__section-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }
    .page-blog-top-slot-games-2024__text-block {
        font-size: 1rem;
    }
    .page-blog-top-slot-games-2024__game-grid {
        grid-template-columns: 1fr;
    }
    .page-blog-top-slot-games-2024__feature-list {
        grid-template-columns: 1fr;
    }
    .page-blog-top-slot-games-2024__strategy-list li {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
    details.page-blog-top-slot-games-2024__faq-item summary.page-blog-top-slot-games-2024__faq-question { padding: 15px; }
    .page-blog-top-slot-games-2024__faq-qtext { font-size: 15px; }
    .page-blog-top-slot-games-2024__article-grid {
        grid-template-columns: 1fr;
    }
    .page-blog-top-slot-games-2024 img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    .page-blog-top-slot-games-2024__intro-section,
    .page-blog-top-slot-games-2024__top-games-section,
    .page-blog-top-slot-games-2024__features-section,
    .page-blog-top-slot-games-2024__strategy-section,
    .page-blog-top-slot-games-2024__faq-section,
    .page-blog-top-slot-games-2024__related-articles-section {
        padding: 40px 0;
    }
    .page-blog-top-slot-games-2024__container {
        padding-left: 15px;
        padding-right: 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .page-blog-top-slot-games-2024__button-group a {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-blog-top-slot-games-2024__game-card img,
    .page-blog-top-slot-games-2024__article-card img {
        height: auto; /* Allow height to adjust on mobile */
    }
}