/* style/slot-games.css */

/* General Page Styling */
.page-slot-games {
    font-family: 'Arial', sans-serif;
    color: #333333; /* Dark text for light body background */
    line-height: 1.6;
    background-color: #f9f9f9; /* Light background for the main content area */
}

.page-slot-games__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    box-sizing: border-box;
}

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

.page-slot-games__section-title {
    font-size: 38px;
    color: #26A9E0; /* Primary brand color for titles */
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.page-slot-games__text-block {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #555555;
}

/* Links within content */
.page-slot-games__text-block a,
.page-slot-games p a,
.page-slot-games li a {
    color: #26A9E0;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.page-slot-games__text-block a:hover,
.page-slot-games p a:hover,
.page-slot-games li a:hover {
    color: #1a7fb3; /* Darker shade on hover */
}


/* Hero Section */
.page-slot-games__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: var(--header-offset, 120px); /* Fixed header spacing */
    background: linear-gradient(135deg, #e0f2f7, #ffffff); /* Light gradient background */
    overflow: hidden; /* Ensure no overflow */
}

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

.page-slot-games__hero-image {
    width: 100%;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

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

.page-slot-games__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-slot-games__main-title {
    font-size: 48px;
    color: #000000; /* Darker color for main title for contrast */
    margin-bottom: 15px;
    font-weight: 800;
    line-height: 1.1;
}

.page-slot-games__hero-description {
    font-size: 20px;
    color: #333333;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-slot-games__cta-buttons {
    display: flex;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
    justify-content: center;
    gap: 20px;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    box-sizing: border-box;
}

.page-slot-games__cta-button {
    display: inline-block;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word; /* Ensure long words break */
    box-sizing: border-box;
    max-width: 100%; /* Ensure button doesn't overflow */
}

.page-slot-games__cta-button.page-slot-games__btn-primary {
    background: #26A9E0; /* Primary brand color */
    color: #ffffff;
    border: 2px solid #26A9E0;
}

.page-slot-games__cta-button.page-slot-games__btn-primary:hover {
    background: #1a7fb3; /* Darker shade */
    border-color: #1a7fb3;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.page-slot-games__cta-button.page-slot-games__btn-secondary {
    background: #ffffff;
    color: #26A9E0;
    border: 2px solid #26A9E0;
}

.page-slot-games__cta-button.page-slot-games__btn-secondary:hover {
    background: #f0f8ff; /* Lighter shade */
    color: #1a7fb3;
    border-color: #1a7fb3;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

/* Feature Grid */
.page-slot-games__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: left;
}

.page-slot-games__feature-item {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-slot-games__feature-item:hover {
    transform: translateY(-5px);
}

.page-slot-games__feature-item img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    object-fit: cover;
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px; /* Enforce minimum size */
}

.page-slot-games__feature-title {
    font-size: 24px;
    color: #26A9E0;
    margin-bottom: 10px;
    font-weight: 700;
}

/* Registration Guide */
.page-slot-games__registration-guide {
    background: #26A9E0; /* Primary brand color background */
    color: #ffffff; /* White text for dark background */
}

.page-slot-games__registration-guide .page-slot-games__section-title,
.page-slot-games__registration-guide .page-slot-games__text-block {
    color: #ffffff;
}

.page-slot-games__registration-guide a {
    color: #ffffff;
    text-decoration: underline;
}

.page-slot-games__registration-guide a:hover {
    color: #f0f8ff;
}

.page-slot-games__step-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    text-align: left;
}

.page-slot-games__step-list li {
    background: rgba(255, 255, 255, 0.15); /* Slightly transparent white background */
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-slot-games__step-title {
    font-size: 22px;
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: 600;
}

.page-slot-games__step-list p {
    font-size: 16px;
    color: #f0f0f0;
}

.page-slot-games__cta-center {
    margin-top: 40px;
}

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

.page-slot-games__game-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.page-slot-games__game-card img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
    object-fit: cover;
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px; /* Enforce minimum size */
}

.page-slot-games__card-title {
    font-size: 22px;
    color: #26A9E0;
    margin-bottom: 10px;
    font-weight: 700;
}

.page-slot-games__card-title a {
    color: #26A9E0;
    text-decoration: none;
}

.page-slot-games__card-title a:hover {
    text-decoration: underline;
}

.page-slot-games__game-card p {
    font-size: 16px;
    color: #555555;
    margin-bottom: 20px;
    flex-grow: 1; /* Allow paragraph to take available space */
}

.page-slot-games__btn-link {
    display: inline-block;
    padding: 10px 25px;
    background: #26A9E0;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    max-width: 100%;
}

.page-slot-games__btn-link:hover {
    background: #1a7fb3;
}

/* Promotions Section */
.page-slot-games__promotions-section {
    background: #f0f8ff; /* Light blue background */
    color: #333333;
}

.page-slot-games__promo-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    text-align: left;
}

.page-slot-games__promo-list li {
    background: #ffffff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.page-slot-games__promo-title {
    font-size: 22px;
    color: #26A9E0;
    margin-bottom: 10px;
    font-weight: 700;
}

.page-slot-games__promo-list p {
    font-size: 16px;
    color: #555555;
}

/* Security & Support Section */
.page-slot-games__security-support-section {
    background: #ffffff;
}

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

.page-slot-games__info-card {
    background: #f0f8ff; /* Light blue card background */
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-slot-games__info-title {
    font-size: 22px;
    color: #26A9E0;
    margin-bottom: 10px;
    font-weight: 700;
}

/* FAQ Section */
.page-slot-games__faq-section {
    background: #f9f9f9;
    padding-bottom: 80px;
}

.page-slot-games__faq-list {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.page-slot-games__faq-item {
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-slot-games__faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    padding: 0 15px;
    opacity: 0;
}

.page-slot-games__faq-item.active .page-slot-games__faq-answer {
    max-height: 2000px !important; /* Use !important and large value */
    padding: 20px 15px !important;
    opacity: 1;
    background: #ffffff;
    border-radius: 0 0 5px 5px;
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.03);
}