/* style/slot-games.css */
.page-slot-games {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f4f7f6;
}

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

.page-slot-games section {
    padding: 60px 0;
    margin-bottom: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

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

.page-slot-games .section-title {
    font-size: 38px;
    color: #1A2B42;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-slot-games .section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-slot-games h1 {
    font-size: 48px;
    color: #ffffff;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.page-slot-games h2 {
    font-size: 32px;
    color: #1A2B42;
    margin-bottom: 25px;
}

.page-slot-games h3 {
    font-size: 24px;
    color: #1A2B42;
    margin-bottom: 15px;
}

.page-slot-games p {
    font-size: 17px;
    color: #555;
    margin-bottom: 15px;
}

.page-slot-games a {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-slot-games a:hover {
    color: #e6c200;
    text-decoration: underline;
}

.page-slot-games .highlight {
    color: #FFD700;
    font-weight: bold;
}

/* 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, #1A2B42 0%, #3a507a 100%); /* Adjusted for better contrast */
    box-shadow: none;
    border-radius: 0;
}

.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: 12px;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

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

.page-slot-games .hero-content p {
    color: #e0e0e0;
    font-size: 19px;
    margin-bottom: 30px;
}

.page-slot-games .cta-button {
    display: inline-block;
    padding: 18px 45px;
    background: #FFD700;
    color: #1A2B42;
    text-decoration: none;
    border-radius: 8px;
    font-size: 20px;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(255, 215, 0, 0.4);
    border: none;
    cursor: pointer;
}

.page-slot-games .cta-button:hover {
    background: #e6c200;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
    color: #1A2B42;
}

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

.page-slot-games .feature-item {
    background-color: #fdfdfd;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slot-games .feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
}

.page-slot-games .feature-item h3 {
    color: #1A2B42;
    margin-top: 15px;
    font-size: 22px;
}

.page-slot-games .feature-item p {
    font-size: 16px;
    color: #666;
}

.page-slot-games .feature-icon {
    width: 150px; /* Enlarge image size */
    height: 150px; /* Enlarge image size */
    object-fit: contain;
    margin: 0 auto 15px;
    border-radius: 8px;
}

/* How-to-play Section */
.page-slot-games .step-by-step {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-slot-games .step-item {
    background-color: #fdfdfd;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.page-slot-games .step-item h3 {
    color: #1A2B42;
    font-size: 22px;
    margin-bottom: 15px;
}

.page-slot-games .step-item p {
    font-size: 16px;
    color: #666;
}

.page-slot-games .btn-small {
    display: inline-block;
    padding: 10px 25px;
    background: #FFD700;
    color: #1A2B42;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    margin-top: 15px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-slot-games .btn-small:hover {
    background: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
    color: #1A2B42;
}

/* Strategies Section */
.page-slot-games .strategy-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-slot-games .strategy-list li {
    background-color: #fdfdfd;
    padding: 25px 30px;
    border-left: 5px solid #FFD700;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: background-color 0.3s ease;
}

.page-slot-games .strategy-list li:hover {
    background-color: #fffbf0;
}

.page-slot-games .strategy-list li h3 {
    color: #1A2B42;
    margin-bottom: 10px;
    font-size: 20px;
}

.page-slot-games .strategy-list li p {
    font-size: 16px;
    color: #666;
}

/* FAQ Section */
.page-slot-games .faq-list {
    margin-top: 30px;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #f5f5f5;
}

.faq-question h3 {
    margin: 0;
    font-size: 19px;
    color: #1A2B42;
}

.faq-toggle {
    font-size: 24px;
    font-weight: bold;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    padding: 0 25px;
    background: #f9f9f9;
    color: #666;
}

.faq-answer p {
    margin: 0;
    padding-bottom: 15px;
    font-size: 16px;
}

.faq-item.active .faq-answer {
    max-height: 500px; /* Sufficient height for content */
    padding: 15px 25px;
    border-top: 1px solid #eee;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    color: #1A2B42;
}

/* Conclusion Section */
.page-slot-games .action-buttons {
    text-align: center;
    margin-top: 40px;
}

.page-slot-games .secondary-button {
    display: inline-block;
    padding: 18px 45px;
    background: #1A2B42;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 20px;
    font-weight: bold;
    margin-left: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
}

.page-slot-games .secondary-button:hover {
    background: #2b4060;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    color: #ffffff;
}

/* Floating Buttons */
.page-slot-games .floating-buttons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.page-slot-games .btn-register, .page-slot-games .btn-login {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    padding: 12px 0;
    background-color: #FFD700;
    color: #1A2B42;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.page-slot-games .btn-login {
    background-color: #1A2B42;
    color: #FFD700;
}

.page-slot-games .btn-register:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    color: #1A2B42;
}

.page-slot-games .btn-login:hover {
    background-color: #2b4060;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    color: #FFD700;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-slot-games .section-title {
        font-size: 32px;
    }
    .page-slot-games h1 {
        font-size: 40px;
    }
    .page-slot-games h2 {
        font-size: 28px;
    }
    .page-slot-games h3 {
        font-size: 20px;
    }
    .page-slot-games p {
        font-size: 16px;
    }
    .page-slot-games .cta-button, .page-slot-games .secondary-button {
        padding: 15px 35px;
        font-size: 18px;
    }
    .page-slot-games .secondary-button {
        margin-left: 10px;
    }
    .page-slot-games .floating-buttons {
        right: 15px;
        bottom: 15px;
    }
    .page-slot-games .btn-register, .page-slot-games .btn-login {
        width: 100px;
        padding: 10px 0;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .page-slot-games section {
        padding: 40px 0;
    }
    .page-slot-games .hero-section {
        padding: 60px 15px;
    }
    .page-slot-games .section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    .page-slot-games h1 {
        font-size: 34px;
    }
    .page-slot-games h2 {
        font-size: 24px;
    }
    .page-slot-games h3 {
        font-size: 18px;
    }
    .page-slot-games .cta-button, .page-slot-games .secondary-button {
        padding: 12px 25px;
        font-size: 16px;
        margin: 10px 0;
        width: 100%;
    }
    .page-slot-games .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    .page-slot-games .secondary-button {
        margin-left: 0;
    }
    .page-slot-games .features-grid, .page-slot-games .step-by-step {
        grid-template-columns: 1fr;
    }
    .faq-question {
        padding: 15px 20px;
    }
    .faq-question h3 {
        font-size: 17px;
    }
    .faq-toggle {
        font-size: 20px;
    }
    .faq-answer {
        padding: 0 20px;
    }
    .faq-item.active .faq-answer {
        padding: 15px 20px;
    }
    .page-slot-games .floating-buttons {
        right: 10px;
        bottom: 10px;
        gap: 8px;
    }
    .page-slot-games .btn-register, .page-slot-games .btn-login {
        width: 90px;
        padding: 8px 0;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .page-slot-games .section-title {
        font-size: 24px;
    }
    .page-slot-games h1 {
        font-size: 28px;
    }
    .page-slot-games .hero-content p {
        font-size: 16px;
    }
    .page-slot-games .feature-icon {
        width: 120px;
        height: 120px;
    }
}