/* style/slot-games.css */
:root {
    --primary-color: #CC0000;
    --secondary-color: #FFD700;
    --text-dark: #000000;
    --text-light: #ffffff;
    --bg-light: #f5f5f5;
    --bg-dark: #222222;
    --border-color: #e0e0e0;
}

.page-slot-games {
    font-family: 'Arial', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-light);
}

.page-slot-games .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-slot-games section {
    padding: 60px 0;
    text-align: center;
}

.page-slot-games section:nth-of-type(even) {
    background-color: #fcfcfc;
}

.page-slot-games h1,
.page-slot-games h2,
.page-slot-games h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: bold;
}

.page-slot-games h1 {
    font-size: 3.2em;
    color: var(--text-light);
}

.page-slot-games h2 {
    font-size: 2.5em;
}

.page-slot-games h3 {
    font-size: 1.8em;
}

.page-slot-games p {
    font-size: 1.1em;
    margin-bottom: 15px;
}

.page-slot-games .cta-button,
.page-slot-games .btn-primary,
.page-slot-games .btn-secondary,
.page-slot-games .btn-promo,
.page-slot-games .btn-small {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    border: none;
}

.page-slot-games .cta-button {
    background: var(--secondary-color);
    color: var(--text-dark);
    padding: 18px 45px;
    font-size: 1.3em;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-slot-games .cta-button:hover {
    background: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-slot-games .btn-primary {
    background: var(--primary-color);
    color: var(--text-light);
}

.page-slot-games .btn-primary:hover {
    background: #a30000;
    transform: translateY(-2px);
}

.page-slot-games .btn-secondary {
    background: var(--bg-dark);
    color: var(--text-light);
}

.page-slot-games .btn-secondary:hover {
    background: #333333;
    transform: translateY(-2px);
}

.page-slot-games .btn-promo {
    background: var(--secondary-color);
    color: var(--text-dark);
    padding: 12px 25px;
    font-size: 1em;
}

.page-slot-games .btn-promo:hover {
    background: #e6c200;
    transform: translateY(-2px);
}

.page-slot-games .btn-small {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 8px 15px;
    font-size: 0.9em;
    border-radius: 5px;
    margin-top: 10px;
}

.page-slot-games .btn-small:hover {
    background: #a30000;
}

/* Hero Section */
.page-slot-games .hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--bg-dark) 100%);
    color: var(--text-light);
}

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

.page-slot-games .hero-image {
    width: 100%;
    margin-bottom: 30px;
}

.page-slot-games .hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-slot-games .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.page-slot-games .hero-content p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 20px auto 30px;
    color: rgba(255, 255, 255, 0.9);
}

/* Intro Section */
.page-slot-games .intro-section {
    background-color: var(--bg-light);
    color: var(--text-dark);
}

.page-slot-games .intro-section p strong {
    color: var(--primary-color);
}

/* Quick Links Section */
.page-slot-games .quick-links-section {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.page-slot-games .quick-links-section h2 {
    color: var(--secondary-color);
}

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

.page-slot-games .link-card {
    background: #333333;
    padding: 30px;
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-light);
    transition: transform 0.3s ease, background-color 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-slot-games .link-card:hover {
    transform: translateY(-5px);
    background: #444444;
}

.page-slot-games .link-card .link-icon {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 8px;
}

.page-slot-games .link-card h3 {
    color: var(--secondary-color);
    font-size: 1.4em;
    margin-bottom: 10px;
}

.page-slot-games .link-card p {
    font-size: 0.95em;
    color: rgba(255, 255, 255, 0.8);
}

/* Games Showcase Section */
.page-slot-games .games-showcase-section {
    background-color: var(--bg-light);
}

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

.page-slot-games .game-card {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 20px;
}

.page-slot-games .game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-slot-games .game-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 15px;
}

.page-slot-games .game-card h3 {
    color: var(--primary-color);
    font-size: 1.5em;
    margin-bottom: 10px;
    padding: 0 15px;
}

.page-slot-games .game-card p {
    font-size: 0.95em;
    color: #555555;
    padding: 0 15px;
    flex-grow: 1;
}

.page-slot-games .games-summary {
    margin-top: 30px;
    font-style: italic;
    color: #666;
}

/* Promotions Section */
.page-slot-games .promotions-section {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.page-slot-games .promotions-section h2 {
    color: var(--secondary-color);
}

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

.page-slot-games .promo-card {
    background: #333333;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background-color 0.3s ease;
    padding-bottom: 20px;
}

.page-slot-games .promo-card:hover {
    transform: translateY(-5px);
    background: #444444;
}

.page-slot-games .promo-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 15px;
    border-bottom: 1px solid #4a4a4a;
}

.page-slot-games .promo-card h3 {
    color: var(--secondary-color);
    font-size: 1.5em;
    margin-bottom: 10px;
    padding: 0 15px;
}

.page-slot-games .promo-card p {
    font-size: 0.95em;
    color: rgba(255, 255, 255, 0.8);
    padding: 0 15px;
    flex-grow: 1;
}

/* Safety & Support Section */
.page-slot-games .safety-support-section {
    background-color: var(--bg-light);
}

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

.page-slot-games .info-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.page-slot-games .info-card:hover {
    transform: translateY(-5px);
}

.page-slot-games .info-card img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 8px;
}

.page-slot-games .info-card h3 {
    color: var(--primary-color);
    font-size: 1.4em;
    margin-bottom: 10px;
}

.page-slot-games .info-card p {
    font-size: 0.95em;
    color: #555555;
}

/* FAQ Section */
.page-slot-games .faq-section {
    background-color: #fcfcfc;
}

.page-slot-games .faq-list {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-slot-games .faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.page-slot-games .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background: #ffffff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.page-slot-games .faq-question:hover {
    background: #f0f0f0;
}

.page-slot-games .faq-question h3 {
    margin: 0;
    font-size: 1.25em;
    color: var(--text-dark);
    text-align: left;
    flex-grow: 1;
}

.page-slot-games .faq-toggle {
    font-size: 28px;
    font-weight: bold;
    color: var(--primary-color);
    transition: transform 0.3s ease;
    line-height: 1;
}

.page-slot-games .faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.page-slot-games .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    padding: 0 25px;
    background: #f9f9f9;
    text-align: left;
}

.page-slot-games .faq-item.active .faq-answer {
    max-height: 500px; /* Sufficient height to contain content */
    padding: 20px 25px;
    border-top: 1px solid var(--border-color);
}

.page-slot-games .faq-answer p {
    margin-bottom: 10px;
    color: #444444;
}

/* Blog Section */
.page-slot-games .blog-section {
    background-color: var(--bg-light);
}

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

.page-slot-games .blog-card {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

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

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

.page-slot-games .blog-card .card-content {
    padding: 20px;
}

.page-slot-games .blog-card h3 {
    font-size: 1.4em;
    margin-bottom: 10px;
    line-height: 1.3;
}

.page-slot-games .blog-card h3 a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-slot-games .blog-card h3 a:hover {
    color: var(--secondary-color);
}

.page-slot-games .blog-card p {
    font-size: 0.95em;
    color: #555555;
    margin-bottom: 15px;
}

.page-slot-games .read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-slot-games .read-more:hover {
    color: var(--secondary-color);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-slot-games h1 {
        font-size: 2.8em;
    }
    .page-slot-games h2 {
        font-size: 2em;
    }
    .page-slot-games h3 {
        font-size: 1.6em;
    }
    .page-slot-games .cta-button {
        padding: 15px 35px;
        font-size: 1.1em;
    }
    .page-slot-games .link-card .link-icon {
        width: 80px;
        height: 80px;
    }
    .page-slot-games .info-card img {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 768px) {
    .page-slot-games section {
        padding: 40px 0;
    }
    .page-slot-games .hero-section {
        padding: 60px 15px;
    }
    .page-slot-games .hero-content h1 {
        font-size: 2.2em;
    }
    .page-slot-games .hero-content p {
        font-size: 1em;
        margin: 15px auto 25px;
    }
    .page-slot-games h2 {
        font-size: 1.8em;
    }
    .page-slot-games h3 {
        font-size: 1.4em;
    }
    .page-slot-games .cta-button {
        padding: 12px 30px;
        font-size: 1em;
    }
    .page-slot-games .links-grid,
    .page-slot-games .game-grid,
    .page-slot-games .promo-grid,
    .page-slot-games .info-grid,
    .page-slot-games .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-slot-games .faq-question {
        padding: 15px 20px;
    }
    .page-slot-games .faq-question h3 {
        font-size: 1.1em;
    }
    .page-slot-games .faq-toggle {
        font-size: 24px;
    }
    .page-slot-games .faq-answer {
        padding: 0 20px;
    }
    .page-slot-games .faq-item.active .faq-answer {
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .page-slot-games .hero-content h1 {
        font-size: 1.8em;
    }
    .page-slot-games h2 {
        font-size: 1.6em;
    }
    .page-slot-games p {
        font-size: 0.9em;
    }
    .page-slot-games .cta-button {
        padding: 10px 25px;
        font-size: 0.9em;
    }
    .page-slot-games .link-card,
    .page-slot-games .game-card,
    .page-slot-games .promo-card,
    .page-slot-games .info-card,
    .page-slot-games .blog-card {
        padding: 20px;
    }
    .page-slot-games .link-card .link-icon {
        width: 60px;
        height: 60px;
    }
    .page-slot-games .info-card img {
        width: 50px;
        height: 50px;
    }
}