/* style/slot-games-video.css */

/* Base styles for the page content */
.page-slot-games-video {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Default text color for dark body background */
    background-color: transparent; /* Body background is handled by shared.css */
}

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

/* Header offset for desktop */
.page-slot-games-video__hero-section {
    padding-top: var(--header-offset, 120px);
}

.page-slot-games-video__section-title {
    font-size: 2.5em;
    color: #ffffff; /* Light text for dark sections */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-slot-games-video__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: center;
}

/* Hero Section */
.page-slot-games-video__hero-section {
    position: relative;
    width: 100%;
    height: 70vh; /* Adjust as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.page-slot-games-video__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.page-slot-games-video__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-slot-games-video__hero-content {
    max-width: 800px;
    color: #ffffff;
    padding: 20px;
}

.page-slot-games-video__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFFFFF;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.page-slot-games-video__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

.page-slot-games-video__hero-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Buttons */
.page-slot-games-video__btn-primary,
.page-slot-games-video__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-align: center;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    max-width: 100%;
}

.page-slot-games-video__btn-primary {
    background-color: #C30808;
    color: #FFFF00;
    border: 2px solid #C30808;
}

.page-slot-games-video__btn-primary:hover {
    background-color: #a30606;
    transform: translateY(-2px);
}

.page-slot-games-video__btn-secondary {
    background-color: #017439;
    color: #ffffff;
    border: 2px solid #017439;
}

.page-slot-games-video__btn-secondary:hover {
    background-color: #005f2c;
    transform: translateY(-2px);
}

/* Dark sections */
.page-slot-games-video__dark-section {
    background-color: #017439;
    color: #ffffff;
    padding: 60px 0;
}

/* Introduction Section */
.page-slot-games-video__introduction-section .page-slot-games-video__text-block {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Features Section */
.page-slot-games-video__features-section {
    padding: 60px 0;
    background-color: #000000;
}

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

.page-slot-games-video__feature-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    color: #ffffff;
}