/* style/slot-games.css */

/* Base styles for the page content */
.page-slot-games {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #f0f0f0; /* Light text for dark body background */
    background-color: transparent; /* Inherit from body or shared, ensuring dark background */
}

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

.page-slot-games__section-title {
    font-size: 2.5em;
    color: #FF4500; /* Brand primary color for titles */
    text-align: center;
    margin-bottom: 40px;
    margin-top: 60px;
    font-weight: bold;
}

.page-slot-games__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-slot-games__text-block a {
    color: #1E90FF; /* Auxiliary color for links */
    text-decoration: underline;
}

/* Hero Section */
.page-slot-games__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    text-align: center;
    overflow: hidden;
    padding: 60px 20px;
    padding-top: var(--header-offset, 120px); /* Fixed header spacing */
    background-color: #0a0a0a; /* Dark background for hero */
}

.page-slot-games__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 0.3; /* Slightly transparent to let text stand out */
}

.page-slot-games__hero-title {
    font-size: 3.5em;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-slot-games__hero-description {
    font-size: 1.4em;
    color: #f0f0f0;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.page-slot-games__hero-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    z-index: 1;
}

/* Buttons */
.page-slot-games__btn-primary,
.page-slot-games__btn-secondary,
.page-slot-games__btn-tertiary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-sizing: border-box;
    max-width: 100%; /* Ensure responsiveness */
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Break long words */
    text-align: center;
}

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

.page-slot-games__btn-primary:hover {
    background-color: #e63900;
    border-color: #e63900;
    transform: translateY(-2px);
}

.page-slot-games__btn-secondary {
    background-color: transparent;
    color: #FF4500; /* Primary brand color */
    border: 2px solid #FF4500;
}

.page-slot-games__btn-secondary:hover {
    background-color: #FF4500;
    color: #ffffff;
    transform: translateY(-2px);
}

.page-slot-games__btn-tertiary {
    background-color: #1E90FF; /* Auxiliary brand color */
    color: #ffffff;
    border: 2px solid #1E90FF;
}

.page-slot-games__btn-tertiary:hover {
    background-color: #1a7fdc;
    border-color: #1a7fdc;
    transform: translateY(-2px);
}

.page-slot-games__btn-large {
    padding: 18px 40px;
    font-size: 1.3em;
}

/* Intro Section */
.page-slot-games__intro-section {
    padding: 60px 0;
    text-align: center;
}

.page-slot-games__image-content {
    display: block;
    margin: 40px auto 0 auto;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    min-width: 200px; /* Ensure min size */
    min-height: 200px; /* Ensure min size */
}

/* Game Collection Section */
.page-slot-games__game-collection {
    padding: 60px 0;
    background-color: #1a1a1a; /* Darker background for contrast */
    text-align: center;
}

.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-color: rgba(255, 255, 255, 0.05); /* Slightly transparent white */
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.page-slot-games__game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-slot-games__card-image {
    width: 100%;
    max-width: 400px; /* Limit card image width */
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    min-width: 200px; /* Ensure min size */
    min-height: 200px; /* Ensure min size */
}

.page-slot-games__card-title {
    font-size: 1.6em;
    color: #FF4500;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-slot-games__card-description {
    font-size: 1em;
    color: #cccccc;
    margin-bottom: 20px;
    flex-grow: 1; /* Allow description to take available space */
}

/* Download Guide Section */
.page-slot-games__download-guide {
    padding: 60px 0;
    text-align: center;
}

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

.page-slot-games__step-item {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-align: left;
}

.page-slot-games__step-title {
    font-size: 1.4em;
    color: #1E90FF; /* Auxiliary brand color */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-slot-games__step-item p {
    color: #cccccc;
    font-size: 1em;
}

/* Promotions Section */
.page-slot-games__promotions {
    padding: 60px 0;
    background-color: #1a1a1a;
    text-align: center;
}

.page-slot-games__promo-list {
    list-style: none;
    padding: 0;
    margin: 40px auto;
    max-width: 700px;
    text-align: left;
    color: #f0f0f0;
}

.page-slot-games__promo-item {
    background-color: rgba(255, 255, 255, 0.05);
    margin-bottom: 15px;
    padding: 15px 20px;
    border-left: 5px solid #FF4500;
    border-radius: 5px;
    font-size: 1.1em;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Security Section */
.page-slot-games__security-section {
    padding: 60px 0;
    text-align: center;
}

.page-slot-games__feature-list {
    list-style: none;
    padding: 0;
    margin: 40px auto;
    max-width: 800px;
    text-align: left;
    color: #f0f0f0;
}

.page-slot-games__feature-item {
    background-color: rgba(255, 255, 255, 0.05);
    margin-bottom: 15px;
    padding: 15px 20px;
    border-left: 5px solid #1E90FF;
    border-radius: 5px;
    font-size: 1.1em;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}