/* style/casino.css */
:root {
    --primary-color: #FFD700;
    --secondary-color: #8B0000;
    --text-light: #ffffff;
    --text-dark: #333333;
    --bg-dark: #333;
    --bg-light: #f9f9f9;
    --border-color: #e0e0e0;
}

.page-casino {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-light); /* Body background is dark (#333), so text is light */
    background-color: var(--bg-dark); /* Fallback, but main body bg is from shared */
}

.page-casino__section {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.page-casino__section:nth-of-type(even) {
    background-color: rgba(255, 255, 255, 0.05);
}

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

.page-casino__section-title {
    font-size: 36px;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    line-height: 1.3;
}

.page-casino__section-title--light {
    color: var(--text-light);
}

.page-casino__text-block {
    font-size: 17px;
    line-height: 1.7;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px auto;
    color: var(--text-light);
}

.page-casino__text-block--light {
    color: var(--text-light);
}

/* Hero Section */
.page-casino__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); /* Ensure space below fixed header */
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--text-light);
}

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

.page-casino__hero-image {
    width: 100%;
    margin-bottom: 30px;
}

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

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

.page-casino__main-title {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--text-light);
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-casino__intro-text {
    font-size: 20px;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-light);
}

.page-casino__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary-color);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: none;
}

.page-casino__cta-button:hover {
    background: var(--secondary-color);
    color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-casino__cta-button--centered {
    margin-left: auto;
    margin-right: auto;
    display: block; /* For single centered button */
    width: fit-content;
}

/* Introduction Section */
.page-casino__introduction p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text-light);
    text-align: justify;
}

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

.page-casino__game-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    padding-bottom: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-casino__game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-casino__game-card img {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-bottom: 2px solid var(--primary-color);
    margin-bottom: 20px;
}

.page-casino__game-title {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
    padding: 0 15px;
}

.page-casino__game-description {
    font-size: 15px;
    color: var(--text-light);
    padding: 0 15px;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-casino__btn-secondary {
    display: inline-block;
    padding: 10px 25px;
    background: var(--secondary-color);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
}

.page-casino__btn-secondary:hover {
    background: var(--primary-color);
    color: var(--text-dark);
    transform: translateY(-2px);
}

.page-casino__cta-group {
    margin-top: 50px;
    text-align: center;
}

/* Live Experience Section */
.page-casino__live-experience .page-casino__section-title {
    color: var(--primary-color);
}

.page-casino__content-flex {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.page-casino__text-content {
    flex: 1;
    min-width: 300px;
}

.page-casino__text-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text-light);
    text-align: justify;
}

.page-casino__btn-primary {
    display: inline-block;
    padding: 15px 30px;
    background: var(--primary-color);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-casino__btn-primary:hover {
    background: var(--secondary-color);
    color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Benefits Section */
.page-casino__benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-casino__benefit-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-casino__benefit-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.page-casino__benefit-card img {
    
    
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 50%;
    background-color: var(--primary-color);
    padding: 10px;
}

.page-casino__benefit-title {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-casino__benefit-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Guide Section */
.page-casino__guide .page-casino__section-title {
    color: var(--primary-color);
}

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

.page-casino__guide-step {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    transition: background 0.3s ease, transform 0.3s ease;
}

.page-casino__guide-step:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.page-casino__step-icon {
    width: 100px;
    height: 100px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.3);
}

.page-casino__step-icon img {
    
    
    object-fit: contain;
}

.page-casino__step-title {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-casino__guide-step p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* FAQ Section */
.page-casino__faq-section {
    background-color: rgba(255, 255, 255, 0.05);
}

.page-casino__faq-section .page-casino__section-title {
    color: var(--text-light);
}

.page-casino__faq-list {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-casino__image-content {
    flex: 1;
    min-width: 400px;
    text-align: center;
}

.page-casino__image-content img {
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}