.page-slot-games {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #FFF3E6; /* Text Main */
    background-color: #0D0E12; /* Background */
}

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

.page-slot-games__section-title {
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    color: #FF8C1A; /* Main color for titles */
    line-height: 1.2;
}

.page-slot-games__section-description {
    font-size: 18px;
    text-align: center;
    margin-bottom: 40px;
    color: #FFF3E6;
}

.page-slot-games__text-main {
    color: #FFF3E6;
}

.page-slot-games__dark-section {
    background-color: #0D0E12;
    padding: 60px 0;
}

.page-slot-games__light-bg {
    background-color: #17191F; /* Card BG, used for lighter sections for contrast */
    padding: 60px 0;
}

/* Hero Section */
.page-slot-games__hero-section {
    position: relative;
    padding-top: 10px; /* Small top margin, as body padding handles header offset */
    padding-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-slot-games__hero-image {
    width: 100%;
    max-height: 600px;
    overflow: hidden;
    position: relative;
    z-index: 0;
    margin-bottom: 30px;
}

.page-slot-games__hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.page-slot-games__hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 20px;
    max-width: 900px;
}

.page-slot-games__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: #FF8C1A;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.page-slot-games__hero-description {
    font-size: 20px;
    margin-bottom: 30px;
    color: #FFF3E6;
}

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

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

.page-slot-games__btn-primary {
    background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%); /* Button gradient */
    color: #ffffff;
    border: 2px solid transparent;
}

.page-slot-games__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 140, 26, 0.4);
}

.page-slot-games__btn-secondary {
    background: #17191F; /* Card BG */
    color: #FF8C1A; /* Main color */
    border: 2px solid #A84F0C; /* Border */
}

.page-slot-games__btn-secondary:hover {
    background: #2a2d38;
    color: #FFA53A;
    border-color: #FFB04D;
    transform: translateY(-2px);
}

/* Introduction Section */
.page-slot-games__introduction-section {
    padding: 60px 0;
}

.page-slot-games__intro-grid {
    display: flex;
    gap: 40px;
    align-items: center;
}

.page-slot-games__intro-text {
    flex: 1;
    font-size: 17px;
    line-height: 1.8;
}

.page-slot-games__intro-text p {
    margin-bottom: 15px;
}

.page-slot-games__intro-image {
    flex: 1;
    text-align: center;
}

.page-slot-games__intro-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-slot-games__intro-button {
    margin-top: 20px;
}

/* Games Showcase Section */
.page-slot-games__games-showcase {
    padding: 60px 0;
}

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

.page-slot-games__product-card {
    background: #17191F; /* Card BG */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid #A84F0C;
}

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

.page-slot-games__product-card img {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
}

.page-slot-games__card-title {
    font-size: 22px;
    font-weight: bold;
    margin: 20px 15px 10px;
    color: #FF8C1A;
}

.page-slot-games__card-description {
    font-size: 15px;
    color: #FFF3E6;
    padding: 0 15px 20px;
    min-height: 75px;
}

.page-slot-games__card-button {
    display: inline-block;
    background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-bottom: 20px;
    transition: background 0.3s ease;
}

.page-slot-games__card-button:hover {
    opacity: 0.9;
}

/* Providers Section */
.page-slot-games__providers-section {
    padding: 60px 0;
}

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

.page-slot-games__provider-card {
    background: #0D0E12;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    border: 1px solid #A84F0C;
    padding: 20px;
}

.page-slot-games__provider-card img {
    max-width: 100%;
     /* Consistent height for logos */
    object-fit: contain;
    margin-bottom: 15px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-slot-games__provider-card .page-slot-games__card-title {
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 10px;
}

.page-slot-games__provider-card .page-slot-games__card-description {
    font-size: 14px;
    min-height: unset;
    padding: 0;
}

.page-slot-games__view-all-button-container {
    text-align: center;
    margin-top: 30px;
}

/* Promotions Section */
.page-slot-games__promotions-section {
    padding: 60px 0;
}

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

.page-slot-games__promo-card {
    background: #17191F;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid #A84F0C;
}

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

.page-slot-games__promo-card img {
    width: 100%;
    height: 250px; /* Fixed height for promo images */
    object-fit: cover;
    display: block;
}

.page-slot-games__promo-card .page-slot-games__card-title {
    margin-top: 20px;
}

.page-slot-games__promo-card .page-slot-games__card-description {
    min-height: 60px;
}

/* Guide Section */
.page-slot-games__guide-section {
    padding: 60px 0;
}

.page-slot-games__guide-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.8;
}

.page-slot-games__guide-content ol {
    list-style-type: decimal;
    padding-left: 25px;
    margin: 20px 0;
}

.page-slot-games__guide-content li {
    margin-bottom: 10px;
}

.page-slot-games__guide-content strong {
    color: #FF8C1A;
}

.page-slot-games__guide-button {
    margin-top: 30px;
    text-align: center;
    display: block;
}

/* Tips Section */
.page-slot-games__tips-section {
    padding: 60px 0;
}

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