:root {
    --lodibet-primary: #F2C14E;
    --lodibet-secondary: #FFD36B;
    --lodibet-card-bg: #111111;
    --lodibet-bg: #0A0A0A;
    --lodibet-text-main: #FFF6D6;
    --lodibet-border: #3A2A12;
    --lodibet-glow: #FFD36B;
    --lodibet-btn-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    --text-on-dark: #FFF6D6;
    --text-on-light: #333333;
}

.page-casino {
    font-family: 'Arial', sans-serif;
    background-color: var(--lodibet-bg);
    color: var(--text-on-dark);
    line-height: 1.6;
    font-size: 16px;
}

.page-casino__section-title {
    font-size: clamp(2em, 4vw, 3em);
    color: var(--lodibet-secondary);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: 0.05em;
}

.page-casino__text-block {
    margin-bottom: 20px;
    color: var(--text-on-dark);
}

.page-casino__highlight {
    color: var(--lodibet-secondary);
    font-weight: bold;
}

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

.page-casino__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 10px;
    padding-bottom: 60px;
    background-color: var(--lodibet-bg);
}

.page-casino__hero-image-wrapper {
    width: 100%;
    max-height: 700px;
    overflow: hidden;
    margin-bottom: 30px;
}

.page-casino__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-casino__hero-content {
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
    box-sizing: border-box;
    z-index: 1;
}

.page-casino__hero-title {
    font-size: clamp(2.8em, 5vw, 4.5em);
    color: var(--lodibet-secondary);
    margin-bottom: 20px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: 0.02em;
}

.page-casino__hero-description {
    font-size: clamp(1.1em, 2vw, 1.4em);
    color: var(--lodibet-text-main);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-casino__btn-primary,
.page-casino__btn-secondary,
.page-casino__btn-tertiary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    text-align: center;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    max-width: 100%;
}

.page-casino__btn-primary {
    background: var(--lodibet-btn-gradient);
    color: #ffffff;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(242, 193, 78, 0.4);
}

.page-casino__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(242, 193, 78, 0.6);
}

.page-casino__btn-secondary {
    background: transparent;
    color: var(--lodibet-primary);
    border: 2px solid var(--lodibet-primary);
}

.page-casino__btn-secondary:hover {
    background: var(--lodibet-primary);
    color: #ffffff;
    transform: translateY(-3px);
}

.page-casino__btn-tertiary {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--lodibet-text-main);
    border: 1px solid var(--lodibet-border);
    font-size: 0.9em;
    padding: 10px 20px;
}

.page-casino__btn-tertiary:hover {
    background-color: var(--lodibet-primary);
    color: #ffffff;
    border-color: var(--lodibet-primary);
}

.page-casino__cta-buttons--center {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.page-casino__about-section {
    background-color: var(--lodibet-bg);
    padding-top: 60px;
    padding-bottom: 60px;
}

.page-casino__games-section {
    background-color: var(--lodibet-card-bg);
    padding-top: 60px;
    padding-bottom: 60px;
}

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