:root {
    --primary-color: #E61E50;
    --primary-hover: #C51641;
    --accent-glow: rgba(230, 30, 80, 0.4);
    --bg-main: #FFFFFF;
    --bg-surface: #FDF2F5;
    --bg-card: #FFFFFF;
    --bg-muted: #F8F9FA;
    --text-primary: #2D0A14;
    --text-secondary: #7A5C65;
    --border-color: #F0E2E6;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-primary);
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.text-muted {
    color: var(--text-secondary) !important;
}

a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.btn-primary-gaming {
    background: linear-gradient(135deg, #E61E50, #FF4D7D);
    color: #FFFFFF;
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px var(--accent-glow);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary-gaming:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 20px var(--accent-glow);
    color: #FFFFFF;
}

.card-gaming {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background: var(--bg-card);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-gaming:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(230, 30, 80, 0.15);
}

.smooth-transition {
    transition: all 0.3s ease-in-out;
}

/* ===== header ===== */
.luckvoraulen-header {
    background-color: #FFFFFF !important;
    border-bottom: 2px solid #F0E2E6;
    z-index: 1050;
    width: 100%;
    top: 0;
    left: 0;
}

.luckvoraulen-header .navbar {
    padding: 1rem 0;
    background-color: #FFFFFF !important;
}

.luckvoraulen-header .header-logo {
    max-width: 45px;
    height: auto;
    object-fit: contain;
}

.luckvoraulen-header .brand-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #2D0A14;
    letter-spacing: -0.5px;
}

.luckvoraulen-header .nav-link {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #2D0A14 !important;
    padding: 0.5rem 1.25rem !important;
    transition: color 0.3s ease;
}

.luckvoraulen-header .nav-link:hover,
.luckvoraulen-header .nav-link:focus {
    color: #E61E50 !important;
}

.luckvoraulen-header .dropdown-menu {
    border: none;
    box-shadow: 0 10px 30px rgba(45, 10, 20, 0.1);
    border-radius: 12px;
    padding: 0.75rem;
    background-color: #FFFFFF;
}

.luckvoraulen-header .dropdown-item {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: #2D0A14;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.luckvoraulen-header .dropdown-item:hover {
    background-color: #FDF2F5;
    color: #E61E50;
}

.luckvoraulen-header .navbar-toggler {
    border: none;
    color: #2D0A14;
    font-size: 1.5rem;
    padding: 0;
}

.luckvoraulen-header .navbar-toggler:focus {
    box-shadow: none;
}

.luckvoraulen-header .btn-start-playing {
    background: linear-gradient(135deg, #E61E50, #FF4D7D);
    color: #FFFFFF !important;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(230, 30, 80, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
    text-align: center;
}

.luckvoraulen-header .btn-start-playing:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 30, 80, 0.4);
    background: #C51641;
}

@media (max-width: 991.98px) {
    .luckvoraulen-header .navbar-collapse {
        background-color: #FFFFFF;
        padding: 1.5rem 0;
    }

    .luckvoraulen-header .nav-link {
        padding: 0.75rem 0 !important;
        border-bottom: 1px solid #F0E2E6;
    }

    .luckvoraulen-header .dropdown-menu {
        box-shadow: none;
        padding-left: 1rem;
        border-left: 2px solid #FDF2F5;
        margin-bottom: 1rem;
    }

    .luckvoraulen-header .btn-start-playing {
        width: 100%;
        margin-top: 1rem;
    }
}

/* ===== hero ===== */
.luck-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
    background: #FFFFFF;
}

.luck-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(45, 10, 20, 0.85) 0%, rgba(230, 30, 80, 0.4) 100%);
}

.luck-hero__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    line-height: 1.2;
}

.luck-hero__subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    max-width: 500px;
}

.luck-hero__form-card {
    background: #FFFFFF;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    max-width: 450px;
}

.luck-hero__form-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    color: #2D0A14;
}

.luck-hero__label {
    font-size: 0.85rem;
    color: #7A5C65;
    font-weight: 600;
}

.luck-hero__input-wrapper .luck-hero__input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #E61E50;
    font-size: 1.2rem;
}

.luck-hero__input {
    border: 2px solid #F0E2E6;
    border-radius: 8px;
    padding: 12px 12px 12px 45px;
    font-family: 'Inter', sans-serif;
    color: #2D0A14;
    background: #FDF2F5;
    transition: border-color 0.3s ease;
}

.luck-hero__input:focus {
    outline: none;
    border-color: #E61E50;
}

.luck-hero__check-label {
    font-size: 0.8rem;
    color: #7A5C65;
}

.luck-hero__btn-submit {
    background: linear-gradient(135deg, #E61E50, #FF4D7D);
    border: none;
    border-radius: 8px;
    color: #FFFFFF;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(230, 30, 80, 0.3);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.luck-hero__btn-submit:hover {
    transform: translateY(-2px);
    opacity: 0.95;
}

.luck-hero__disclaimer {
    font-size: 0.75rem;
    color: #7A5C65;
    line-height: 1.4;
}

.luck-hero__card {
    height: 100%;
    min-height: 200px;
    transition: transform 0.3s ease;
}

.luck-hero__grid-item--large .luck-hero__card {
    min-height: 350px;
}

.luck-hero__card:hover {
    transform: scale(1.02);
}

.luck-hero__card-img {
    height: 100%;
    object-fit: cover;
}

.luck-hero__card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.luck-hero__card-tag {
    background: #E61E50;
    color: #FFFFFF;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 700;
    width: fit-content;
    margin-bottom: 8px;
}

.luck-hero__card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.luck-hero__card-text {
    font-size: 0.85rem;
    opacity: 0.9;
    margin-bottom: 0;
}

@media (max-width: 991.98px) {
    .luck-hero {
        padding: 60px 0;
        text-align: center;
    }

    .luck-hero__subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .luck-hero__form-card {
        margin: 0 auto;
    }

    .luck-hero__title {
        font-size: 18px !important;
    }

    .luck-hero__form-title {
        font-size: 14px !important;
    }

    .luck-hero__card-title {
        font-size: 14px !important;
    }

    .luck-hero__card-text {
        display: none;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .luck-hero__grid {
        margin-top: 40px;
    }
}

/* ===== games_showcase ===== */
.games-showcase .text-primary-dark {
    color: #2D0A14;
    font-family: 'Montserrat', sans-serif;
}

.games-showcase .bg-surface {
    background-color: #FDF2F5;
}

.games-showcase .game-card {
    background: #FFFFFF;
    border: 1px solid #F0E2E6;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.3s ease;
}

.games-showcase .game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(230, 30, 80, 0.12);
}

.games-showcase .game-media {
    position: relative;
    width: 100%;
    aspect-ratio: 16/11;
    overflow: hidden;
}

.games-showcase .game-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.games-showcase .game-card:hover .game-thumb {
    transform: scale(1.05);
}

.games-showcase .game-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(45, 10, 20, 0.85);
    color: #FFFFFF;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(4px);
}

.games-showcase .game-details {
    padding: 1.25rem;
}

.games-showcase .game-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #2D0A14;
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

.games-showcase .btn-play-action {
    display: inline-block;
    text-align: center;
    text-decoration: none;
    background: linear-gradient(135deg, #E61E50, #FF4D7D);
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(230, 30, 80, 0.25);
    border: none;
}

.games-showcase .btn-play-action:hover {
    background: linear-gradient(135deg, #C51641, #E61E50);
    box-shadow: 0 6px 15px rgba(230, 30, 80, 0.4);
    transform: translateY(-1px);
    color: #FFFFFF;
}

@media (max-width: 767px) {
    .games-showcase h2 {
        font-size: 1.5rem;
    }

    .games-showcase .game-name {
        font-size: 1rem;
    }
}

/* ===== features ===== */
.luckvoraulen-features {
    background-color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    overflow: hidden;
}

.luckvoraulen-features .features-badge {
    background-color: #FDF2F5;
    color: #E61E50;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 6px 16px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.luckvoraulen-features .features-main-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #2D0A14;
    line-height: 1.2;
    font-size: calc(1.5rem + 1.5vw);
}

.luckvoraulen-features .features-main-text {
    color: #7A5C65;
    font-size: 1.1rem;
    line-height: 1.6;
}

.luckvoraulen-features .btn-features-action {
    background: linear-gradient(135deg, #E61E50, #FF4D7D);
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(230, 30, 80, 0.3);
}

.luckvoraulen-features .btn-features-action:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(230, 30, 80, 0.4);
    color: #FFFFFF;
}

.luckvoraulen-features .feature-card {
    background: #FFFFFF;
    border: 1px solid #F0E2E6;
    border-radius: 12px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.luckvoraulen-features .feature-card:hover {
    transform: scale(1.03);
    border-color: #E61E50;
    box-shadow: 0 10px 30px rgba(230, 30, 80, 0.1);
}

.luckvoraulen-features .feature-icon-box {
    width: 64px;
    height: 64px;
    background-color: #FDF2F5;
    color: #E61E50;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 2rem;
}

.luckvoraulen-features .feature-card-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #2D0A14;
    font-size: 1.15rem;
}

.luckvoraulen-features .feature-card-text {
    color: #7A5C65;
    font-size: 0.95rem;
    line-height: 1.5;
}

.luckvoraulen-features .disclaimer-text {
    color: #E61E50;
    font-size: 0.75rem;
    opacity: 0.8;
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    .luckvoraulen-features .features-main-title {
        font-size: 1.5rem;
    }

    .luckvoraulen-features .features-main-text {
        font-size: 1rem;
    }

    .luckvoraulen-features .features-content {
        text-align: center;
    }

    .luckvoraulen-features .features-cta-wrapper {
        display: flex;
        justify-content: center;
    }
}

/* ===== testimonials ===== */
.luck-testimonials {
    background-color: #FFFFFF;
    padding: 80px 0;
    overflow: hidden;
}

.luck-testimonials__heading {
    font-family: 'Montserrat', sans-serif;
    color: #2D0A14;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.luck-testimonials__lead {
    font-family: 'Inter', sans-serif;
    color: #7A5C65;
    font-size: 1.1rem;
    line-height: 1.6;
}

.luck-testimonials__card {
    background: #FFFFFF;
    border: 1px solid #F0E2E6;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.luck-testimonials__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(230, 30, 80, 0.08);
}

.luck-testimonials__icon-box i {
    color: #E61E50;
    font-size: 2.5rem;
    opacity: 0.2;
}

.luck-testimonials__text {
    font-family: 'Inter', sans-serif;
    color: #2D0A14;
    font-size: 1rem;
    line-height: 1.7;
    font-style: italic;
}

.luck-testimonials__avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #E61E50;
}

.luck-testimonials__name {
    font-family: 'Montserrat', sans-serif;
    color: #2D0A14;
    font-size: 1.1rem;
    font-weight: 700;
}

.luck-testimonials__status {
    font-family: 'Inter', sans-serif;
    color: #7A5C65;
    font-size: 0.85rem;
    font-weight: 500;
}

.luck-testimonials__disclaimer {
    background-color: #FDF2F5;
    color: #7A5C65;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    border-left: 4px solid #E61E50;
    display: inline-block;
}

@media (max-width: 768px) {
    .luck-testimonials {
        padding: 60px 0;
    }

    .luck-testimonials__heading {
        font-size: 1.5rem;
    }

    .luck-testimonials__lead {
        font-size: 1rem;
    }
}

/* ===== footer ===== */
.footer-section {
    background-color: #FFFFFF;
    color: #2D0A14;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

.footer-disclaimer-wrapper {
    background-color: #FDF2F5;
    border: 2px solid #F0E2E6;
    border-radius: 12px;
    position: relative;
}

.disclaimer-icon i {
    font-size: 2rem;
    color: #E61E50;
}

.disclaimer-text {
    font-size: 0.9rem;
    color: #7A5C65;
    line-height: 1.6;
}

.footer-h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #2D0A14;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-logo {
    max-width: 50px;
    height: auto;
    display: block;
}

.footer-brand-desc {
    font-size: 0.95rem;
    color: #7A5C65;
    max-width: 320px;
}

.footer-link {
    color: #7A5C65;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: block;
    padding-bottom: 8px;
}

.footer-link:hover {
    color: #E61E50;
    padding-left: 5px;
}

.footer-input {
    background: #FFFFFF;
    border: 1px solid #F0E2E6;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    color: #2D0A14;
}

.footer-input:focus {
    outline: none;
    border-color: #E61E50;
    box-shadow: 0 0 0 3px rgba(230, 30, 80, 0.1);
}

.footer-input::placeholder {
    color: #7A5C65;
    opacity: 0.7;
}

.footer-btn {
    border: none;
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer-btn-primary {
    background: linear-gradient(135deg, #E61E50, #FF4D7D);
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(230, 30, 80, 0.3);
}

.footer-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 30, 80, 0.4);
    background: linear-gradient(135deg, #C51641, #E61E50);
}

.footer-btn-secondary {
    background: #F8F9FA;
    color: #2D0A14;
    border: 1px solid #F0E2E6;
}

.footer-btn-secondary:hover {
    background: #FDF2F5;
    border-color: #E61E50;
}

.footer-age-badge .age-icon {
    background-color: #E61E50;
    color: #FFFFFF;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.85rem;
}

.footer-age-badge .age-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: #2D0A14;
}

.partner-logo img {
    max-width: 120px;
    height: auto;
    filter: none !important;
    transition: transform 0.3s ease;
}

.partner-logo:hover img {
    transform: scale(1.05);
}

.footer-copyright p {
    font-size: 0.85rem;
    color: #7A5C65;
}

.age-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.age-modal-card {
    background: #FFFFFF;
    border-radius: 16px;
    max-width: 500px;
    width: 100%;
    border: 2px solid #E61E50;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.age-modal-title {
    font-family: 'Montserrat', sans-serif;
    color: #2D0A14;
    font-weight: 800;
}

.age-modal-text {
    color: #7A5C65;
    font-size: 1.1rem;
}

@media (max-width: 767px) {
    .footer-disclaimer-wrapper {
        padding: 1.5rem !important;
    }

    .disclaimer-icon {
        text-align: center;
        margin-bottom: 10px;
    }

    .disclaimer-text {
        text-align: center;
        font-size: 0.85rem;
    }

    .age-modal-title {
        font-size: 1.25rem;
    }

    .age-modal-text {
        font-size: 0.95rem;
    }
}

.luckvoraulen-header {
    background-color: #FFFFFF !important;
    border-bottom: 2px solid #F0E2E6;
    z-index: 1050;
}

.luckvoraulen-header .navbar-brand .brand-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #2D0A14;
}

.luckvoraulen-header .nav-link {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #2D0A14 !important;
}

.luckvoraulen-header .btn-start-playing {
    background: linear-gradient(135deg, #E61E50, #FF4D7D);
    color: #FFFFFF !important;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
}

.luck-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: 100px 0 60px;
}

.luck-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(45, 10, 20, 0.85) 0%, rgba(230, 30, 80, 0.4) 100%);
}

.luck-hero__form-card {
    background: #FFFFFF;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.luck-hero__input {
    border: 2px solid #F0E2E6;
    border-radius: 8px;
    padding: 12px 12px 12px 45px;
    background: #FDF2F5;
}

.luck-hero__input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #E61E50;
}

.luck-hero__btn-submit {
    background: linear-gradient(135deg, #E61E50, #FF4D7D);
    border: none;
    border-radius: 8px;
    color: #FFFFFF;
    font-weight: 700;
}

.luck-catalog-section .luck-catalog-controls {
    background-color: #FDF2F5;
    border: 2px solid #F0E2E6;
}

.luck-catalog-section .luck-catalog-search-input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    border-radius: 8px;
    border: 1px solid #F0E2E6;
    background: #FFFFFF;
    color: #2D0A14;
}

.luck-catalog-section .search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #E61E50;
}

.luck-catalog-section .luck-catalog-filter-btn {
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    border: 1px solid #E61E50;
    background: transparent;
    color: #E61E50;
    font-weight: 600;
    transition: all 0.3s ease;
}

.luck-catalog-section .luck-catalog-filter-btn.active,
.luck-catalog-section .luck-catalog-filter-btn:hover {
    background: linear-gradient(135deg, #E61E50, #FF4D7D);
    color: #FFFFFF;
    border-color: transparent;
}

.luck-catalog-section .luck-catalog-sort-select {
    width: 100%;
    padding: 0.75rem;
    border-radius: 8px;
    border: 1px solid #F0E2E6;
    background: #FFFFFF;
    color: #2D0A14;
}

.luck-game-card {
    background: #FFFFFF;
    border: 1px solid #F0E2E6;
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.luck-game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(230, 30, 80, 0.1);
}

.luck-game-card-img-box {
    height: 180px;
}

.luck-game-card-img-box img {
    object-fit: cover;
}

.luck-game-card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #E61E50;
    color: #FFFFFF;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
}

.luck-game-card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    color: #2D0A14;
}

.luck-game-card-text {
    font-size: 0.9rem;
    color: #7A5C65;
}

.luck-game-card-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: linear-gradient(135deg, #E61E50, #FF4D7D);
    color: #FFFFFF;
    text-decoration: none;
    padding: 0.75rem;
    border-radius: 8px;
    font-weight: 700;
}

.footer-section {
    background-color: #FFFFFF;
    border-top: 2px solid #F0E2E6;
}

.footer-disclaimer-wrapper {
    background-color: #FDF2F5;
    border: 2px solid #F0E2E6;
    border-radius: 12px;
}

.footer-btn-primary {
    background: linear-gradient(135deg, #E61E50, #FF4D7D);
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
}

.age-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.age-modal-card {
    background: #FFFFFF;
    border-radius: 16px;
    max-width: 500px;
    width: 90%;
    border: 2px solid #E61E50;
}

@media (max-width: 768px) {
    .luck-hero__title {
        font-size: 24px !important;
    }

    .luck-hero__subtitle {
        font-size: 14px !important;
    }

    .luck-game-card-title {
        font-size: 16px !important;
    }
}


/* ===== PAGE: privacy ===== */
.policy-content-body { font-family: 'Inter', sans-serif; color: #2D0A14; line-height: 1.8; padding: 40px 20px; max-width: 900px; margin: 0 auto; }
.policy-content-body h1 { font-family: 'Montserrat', sans-serif; color: #E61E50; margin-bottom: 1.5rem; }
.policy-content-body h2 { font-family: 'Montserrat', sans-serif; color: #E61E50; margin-top: 2.5rem; margin-bottom: 1.25rem; font-weight: 700; }
.policy-content-body p { margin-bottom: 1.25rem; font-size: 1rem; color: #7A5C65; }
.policy-content-body ul { margin-bottom: 1.5rem; padding-left: 1.25rem; list-style-type: none; }
.policy-content-body ul li { position: relative; padding-left: 1.5rem; margin-bottom: 0.75rem; color: #7A5C65; }
.policy-content-body ul li::before { content: '\2022'; color: #E61E50; font-weight: bold; display: inline-block; width: 1em; margin-left: -1em; }
.policy-content-body .badge { font-family: 'Montserrat', sans-serif; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; background-color: #E61E50 !important; }
.policy-content-body strong { color: #2D0A14; font-weight: 600; }
@media (max-width: 768px) {
  .policy-content-body { padding: 30px 15px; }
  .policy-content-body h1 { font-size: 1.75rem; }
  .policy-content-body h2 { font-size: 1.4rem; }
  .policy-content-body p, .policy-content-body li { font-size: 0.95rem; }
}

/* ===== PAGE: terms ===== */
.policy-content-wrapper .policy-content-body { font-family: 'Inter', sans-serif; color: #7A5C65; max-width: 900px; margin: 0 auto; line-height: 1.6; }
.policy-content-wrapper .terms-main-title { font-family: 'Montserrat', sans-serif; font-weight: 800; color: #2D0A14; font-size: 2.5rem; letter-spacing: -0.02em; }
.policy-content-wrapper .terms-subtitle { font-family: 'Montserrat', sans-serif; font-weight: 700; color: #E61E50; font-size: 1.25rem; margin-bottom: 1rem; border-bottom: 2px solid #FDF2F5; padding-bottom: 0.5rem; }
.policy-content-wrapper .terms-subtitle i { color: #E61E50; font-size: 1.5rem; }
.policy-content-wrapper .terms-intro-text { font-size: 1.1rem; color: #2D0A14; margin-bottom: 2rem; }
.policy-content-wrapper .terms-list { list-style: none; padding-left: 0; }
.policy-content-wrapper .terms-list li { position: relative; padding-left: 1.5rem; margin-bottom: 0.75rem; }
.policy-content-wrapper .terms-list li::before { content: '→'; position: absolute; left: 0; color: #E61E50; font-weight: bold; }
.policy-content-wrapper .terms-section p { margin-bottom: 1rem; }
.policy-content-wrapper .border-top { border-color: #F0E2E6 !important; }
@media (max-width: 768px) {
  .policy-content-wrapper .terms-main-title { font-size: 1.125rem; }
  .policy-content-wrapper .terms-subtitle { font-size: 1rem; }
  .policy-content-wrapper .terms-intro-text { font-size: 0.95rem; }
}

/* ===== PAGE: disclaimer ===== */
.policy-content-wrapper { padding: 40px 0; background-color: #FFFFFF; font-family: 'Inter', sans-serif; } .policy-content-body { max-width: 900px; margin: 0 auto; padding: 0 20px; color: #2D0A14; } .policy-content-body h2 { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 24px; color: #E61E50; margin-top: 32px; margin-bottom: 16px; border-left: 4px solid #E61E50; padding-left: 15px; } .policy-content-body p { font-size: 16px; line-height: 1.8; color: #7A5C65; margin-bottom: 20px; text-align: justify; hyphens: auto; } .policy-content-body ul { margin-bottom: 24px; padding-left: 20px; list-style-type: none; } .policy-content-body li { position: relative; font-size: 15px; color: #7A5C65; margin-bottom: 12px; padding-left: 25px; line-height: 1.6; } .policy-content-body li::before { content: ''; position: absolute; left: 0; top: 10px; width: 8px; height: 8px; background-color: #E61E50; border-radius: 50%; } @media (max-width: 768px) { .policy-content-body h2 { font-size: 18px; margin-top: 24px; } .policy-content-body p, .policy-content-body li { font-size: 14px; } .policy-content-wrapper { padding: 20px 0; } }

/* ===== PAGE: cookies ===== */
.policy-content-body { padding: 40px 20px; color: #7A5C65; font-family: 'Inter', sans-serif; line-height: 1.8; } .policy-content-body h2 { font-family: 'Montserrat', sans-serif; font-weight: 700; color: #2D0A14; position: relative; } .policy-content-body h3 { font-family: 'Montserrat', sans-serif; font-weight: 600; } .policy-content-body .text-primary { color: #E61E50 !important; } .policy-content-body .bg-surface { background-color: #FDF2F5; transition: transform 0.3s ease; border: 1px solid #F0E2E6; } .policy-content-body .bg-muted { background-color: #F8F9FA; border-left: 4px solid #E61E50 !important; } .policy-content-body .card:hover { transform: translateY(-5px); } @media (max-width: 768px) { .policy-content-body { padding: 30px 15px; } .policy-content-body h2 { font-size: 1.25rem; } .policy-content-body h3 { font-size: 1.1rem; } .policy-content-body .fs-2 { font-size: 1.5rem !important; } }

/* ===== PAGE: rgp ===== */
.policy-content-wrapper { padding: 60px 0; background-color: #FFFFFF; } .policy-content-body { max-width: 900px; margin: 0 auto; color: #2D0A14; font-family: 'Inter', sans-serif; line-height: 1.8; } .policy-content-body h2 { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 28px; color: #E61E50; margin-bottom: 24px; border-bottom: 2px solid #F0E2E6; padding-bottom: 12px; } .policy-content-body h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 22px; color: #2D0A14; margin: 32px 0 16px; } .policy-content-body h4 { font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 18px; color: #7A5C65; margin: 24px 0 12px; } .policy-content-body p { margin-bottom: 20px; font-size: 16px; } .policy-content-body ul { margin-bottom: 24px; padding-left: 20px; list-style-type: none; } .policy-content-body li { position: relative; padding-left: 25px; margin-bottom: 12px; font-size: 16px; } .policy-content-body li::before { content: '\2022'; color: #E61E50; font-weight: bold; display: inline-block; width: 1em; margin-left: -1em; position: absolute; left: 0; } @media (max-width: 768px) { .policy-content-wrapper { padding: 40px 15px; } .policy-content-body h2 { font-size: 24px; } .policy-content-body h3 { font-size: 20px; } .policy-content-body h4 { font-size: 17px; } .policy-content-body p, .policy-content-body li { font-size: 15px; } }

/* ===== PAGE: about-us ===== */
.about-content-section { background-color: #FFFFFF; }
.about-content-section h1 { font-family: 'Montserrat', sans-serif; font-weight: 800; color: #2D0A14; }
.about-content-section p { color: #7A5C65; font-family: 'Inter', sans-serif; }
.about-content-section .badge-feature { background-color: #FDF2F5; color: #E61E50; padding: 10px 16px; border-radius: 30px; font-weight: 600; font-size: 0.9rem; border: 1px solid #F0E2E6; }
.about-content-section .about-image-wrapper img { width: 100%; height: 500px; object-fit: cover; border: 8px solid #FDF2F5; }

.mission-section { background-color: #FDF2F5; }
.mission-section h2 { font-family: 'Montserrat', sans-serif; font-weight: 700; color: #2D0A14; }
.mission-section .mission-card { background-color: #FFFFFF; border: 1px solid #F0E2E6; border-radius: 16px; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.mission-section .mission-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(230, 30, 80, 0.1); }
.mission-section .mission-icon-box { width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; background-color: #E61E50; color: #FFFFFF; border-radius: 12px; font-size: 24px; }
.mission-section .mission-card h3 { color: #2D0A14; font-weight: 700; }
.mission-section .mission-card p { color: #7A5C65; }

.mission-section .mission-cta { background: linear-gradient(135deg, #E61E50, #FF4D7D); color: #FFFFFF; }
.mission-section .mission-cta h3 { color: #FFFFFF; font-weight: 700; }
.mission-section .mission-cta p { color: rgba(255, 255, 255, 0.9); }
.mission-section .btn-primary-custom { background-color: #FFFFFF; color: #E61E50; border: none; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; transition: all 0.3s ease; border-radius: 8px; }
.mission-section .btn-primary-custom:hover { background-color: #2D0A14; color: #FFFFFF; transform: scale(1.05); }

@media (max-width: 768px) {
    .about-content-section .about-image-wrapper img { height: 300px; }
    .about-content-section h1 { font-size: 24px; }
    .mission-section h2 { font-size: 22px; }
}

/* ===== PAGE: tournament-history ===== */
.history-list-section { background-color: #FFFFFF; font-family: 'Inter', sans-serif; }
.history-list-section__title { font-family: 'Montserrat', sans-serif; font-weight: 800; color: #2D0A14; }
.history-list-section__card { background: #FFFFFF; border: 1px solid #F0E2E6; border-radius: 12px; overflow: hidden; transition: transform 0.3s ease, box-shadow 0.3s ease; box-shadow: 0 4px 6px rgba(0,0,0,0.02); }
.history-list-section__card:hover { transform: translateY(-5px); box-shadow: 0 12px 20px rgba(230, 30, 80, 0.1); }
.history-list-section__img-wrapper { height: 200px; width: 100%; position: relative; background: #F8F9FA; }
.history-list-section__img { width: 100%; height: 100%; object-fit: cover; border-bottom: 2px solid #FDF2F5; }
.history-list-section__body h3 { font-family: 'Montserrat', sans-serif; font-size: 1.25rem; font-weight: 700; color: #2D0A14; margin-bottom: 12px; }
.history-list-section__body p { font-size: 0.95rem; line-height: 1.6; }
.history-list-section .form-control { border-radius: 30px; border: 1px solid #F0E2E6; padding: 12px 20px; font-size: 0.9rem; transition: border-color 0.3s ease; }
.history-list-section .form-control:focus { border-color: #E61E50; outline: none; box-shadow: 0 0 0 4px rgba(230, 30, 80, 0.1); }
.history-list-section .text-primary { color: #E61E50 !important; }

/* ===== PAGE: faq ===== */
.luckvoraulen-faq-section {
  background-color: #FFFFFF;
  color: #2D0A14;
  font-family: 'Inter', sans-serif;
}

.luckvoraulen-faq-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #2D0A14;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.luckvoraulen-faq-intro {
  color: #7A5C65;
  max-width: 600px;
  margin: 0 auto;
}

.luckvoraulen-faq-search-box {
  position: relative;
}

.luckvoraulen-faq-search-box i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #E61E50;
  font-size: 1.2rem;
}

.luckvoraulen-faq-search-box .form-control {
  padding-left: 45px;
  height: 50px;
  border-radius: 12px;
  border: 1px solid #F0E2E6;
  background-color: #FDF2F5;
  color: #2D0A14;
  transition: all 0.3s ease;
}

.luckvoraulen-faq-search-box .form-control:focus {
  border-color: #E61E50;
  box-shadow: 0 0 0 0.25rem rgba(230, 30, 80, 0.15);
  outline: none;
}

.luckvoraulen-faq-search-box .form-control::placeholder {
  color: #7A5C65;
}

.luckvoraulen-filter-btn {
  background-color: #F8F9FA;
  border: 1px solid #F0E2E6;
  color: #7A5C65;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.luckvoraulen-filter-btn:hover {
  background-color: #FDF2F5;
  color: #E61E50;
  border-color: #E61E50;
}

.luckvoraulen-filter-btn.active {
  background-color: #E61E50;
  color: #FFFFFF;
  border-color: #E61E50;
  box-shadow: 0 4px 10px rgba(230, 30, 80, 0.3);
}

.luckvoraulen-faq-item {
  background: #FFFFFF;
  box-shadow: 0 4px 15px rgba(45, 10, 20, 0.05);
  border-radius: 12px !important;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.luckvoraulen-faq-item:hover {
  transform: translateY(-2px);
}

.luckvoraulen-faq-accordion .accordion-button {
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  color: #2D0A14;
  background-color: #FFFFFF;
  border: none;
  display: flex;
  align-items: center;
  gap: 12px;
}

.luckvoraulen-faq-accordion .accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.luckvoraulen-faq-accordion .accordion-button i {
  font-size: 1.25rem;
  color: #E61E50;
}

.luckvoraulen-faq-accordion .accordion-button:not(.collapsed) {
  color: #E61E50;
  background-color: #FDF2F5;
  box-shadow: none;
}

.luckvoraulen-faq-accordion .accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23E61E50' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
}

.luckvoraulen-faq-accordion .accordion-body {
  padding: 0 1.5rem 1.5rem 1.5rem;
  color: #7A5C65;
  line-height: 1.7;
  font-size: 0.95rem;
  background-color: #FDF2F5;
}

.luckvoraulen-faq-support-box {
  background: linear-gradient(135deg, #FDF2F5 0%, #FFFFFF 100%);
  border: 1px solid #F0E2E6;
}

.luckvoraulen-support-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
}

.luckvoraulen-support-btn {
  background: linear-gradient(135deg, #E61E50, #FF4D7D);
  color: #FFFFFF;
  border: none;
  font-weight: 700;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(230, 30, 80, 0.2);
  transition: all 0.3s ease;
}

.luckvoraulen-support-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(230, 30, 80, 0.4);
  color: #FFFFFF;
}

@media (max-width: 768px) {
  .luckvoraulen-faq-title {
    font-size: 1.75rem;
  }
  .luckvoraulen-support-img {
    width: 60px;
    height: 60px;
  }
}

/* ===== PAGE: beginners-guide ===== */
.guide-content { background-color: #FFFFFF; font-family: 'Inter', sans-serif; }
.guide-content__main-title { font-family: 'Montserrat', sans-serif; font-weight: 700; color: #2D0A14; }
.guide-content__intro-text { color: #7A5C65; font-size: 1.1rem; line-height: 1.8; }
.guide-content__step-card { background-color: #FDF2F5; border-radius: 12px; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.guide-content__step-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(230, 30, 80, 0.1) !important; }
.guide-content__icon-wrapper { width: 60px; height: 60px; background: linear-gradient(135deg, #E61E50, #FF4D7D); color: #FFFFFF; display: flex; align-items: center; justify-content: center; border-radius: 50%; font-size: 1.8rem; }
.guide-content__step-title { color: #2D0A14; font-weight: 700; margin-bottom: 1rem; }
.guide-content__step-desc { color: #7A5C65; font-size: 0.95rem; line-height: 1.6; }
.guide-content__details-block { background-color: #F8F9FA; border: 1px solid #F0E2E6; }
.guide-content__feature-list li { color: #2D0A14; font-size: 1.05rem; }
.guide-content__cta-btn { background: linear-gradient(135deg, #E61E50, #FF4D7D); color: #FFFFFF; font-family: 'Montserrat', sans-serif; font-weight: 700; border: none; transition: all 0.3s ease; border-radius: 8px; box-shadow: 0 4px 12px rgba(230, 30, 80, 0.3); }
.guide-content__cta-btn:hover { background: #C51641; color: #FFFFFF; transform: scale(1.05); }
.guide-content .accordion-button:not(.collapsed) { background-color: #FDF2F5; color: #E61E50; box-shadow: none; }
.guide-content .accordion-button { font-weight: 600; font-family: 'Montserrat', sans-serif; color: #2D0A14; border-radius: 8px !important; }
.guide-content .accordion-item { border-radius: 8px; overflow: hidden; }
.guide-content .text-primary { color: #E61E50 !important; }

/* ===== PAGE: hall-of-fame ===== */
.hof-leaderboard {
  padding: 80px 0;
  background-color: #FFFFFF;
}
.hof-leaderboard__title {
  font-family: 'Montserrat', sans-serif;
  color: #2D0A14;
  font-weight: 800;
  margin-bottom: 1rem;
}
.hof-leaderboard__subtitle {
  color: #7A5C65;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}
.hof-card {
  background: #FFFFFF;
  border: 1px solid #F0E2E6;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 15px rgba(230, 30, 80, 0.05);
  height: 100%;
}
.hof-card--main {
  box-shadow: 0 10px 30px rgba(230, 30, 80, 0.08);
}
.hof-card__title {
  font-family: 'Montserrat', sans-serif;
  color: #2D0A14;
  font-weight: 700;
}
.hof-filter-btn {
  background: #FDF2F5;
  border: none;
  padding: 6px 16px;
  border-radius: 20px;
  color: #7A5C65;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
}
.hof-filter-btn.active {
  background: #E61E50;
  color: #FFFFFF;
}
.hof-table {
  margin-bottom: 0;
}
.hof-table__head th {
  border-bottom: 2px solid #F0E2E6;
  color: #7A5C65;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 1px;
  padding: 15px;
}
.hof-table td {
  padding: 20px 15px;
  vertical-align: middle;
  color: #2D0A14;
  border-bottom: 1px solid #F0E2E6;
}
.hof-rank {
  font-weight: 800;
  font-family: 'Montserrat', sans-serif;
}
.hof-player-img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #FDF2F5;
}
.hof-player-img--placeholder {
  background: #F0E2E6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #7A5C65;
}
.hof-points {
  font-weight: 600;
  color: #E61E50;
}
.hof-table__user-row {
  background-color: #FDF2F5;
}
.hof-icon-gold { color: #FFD700; }
.hof-icon-silver { color: #C0C0C0; }
.hof-icon-bronze { color: #CD7F32; }
.achieve-icon {
  width: 40px;
  height: 40px;
  background: #FDF2F5;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #E61E50;
  font-size: 1.2rem;
}
.hof-card--promo {
  background: linear-gradient(135deg, #E61E50 0%, #FF4D7D 100%);
  color: #FFFFFF;
  border: none;
}
.hof-card--promo .hof-card__title, .hof-card--promo h3 {
  color: #FFFFFF;
}
.hof-card--promo p {
  color: rgba(255, 255, 255, 0.9);
}
.promo-icon {
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.3);
}
.hof-card--promo .btn-primary {
  background: #FFFFFF;
  color: #E61E50;
  border: none;
  font-weight: 700;
}
.hof-card--promo .btn-primary:hover {
  background: #FDF2F5;
  color: #C51641;
}
@media (max-width: 768px) {
  .hof-leaderboard {
    padding: 60px 0;
  }
  .hof-table td {
    padding: 12px 10px;
    font-size: 0.9rem;
  }
  .hof-player-img {
    width: 35px;
    height: 35px;
  }
}

.lc-main-comment {
    background-color: #FFFFFF;
    border: 1px solid #F0E2E6;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(45, 10, 20, 0.05);
    transition: transform 0.2s ease;
}

.lc-main-comment:hover {
    transform: translateY(-2px);
}

.lc-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #FFFFFF;
    text-transform: uppercase;
    user-select: none;
}

.lc-avatar-main {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #E61E50 0%, #FF4D7D 100%);
    font-size: 1.25rem;
    border: 2px solid #FFFFFF;
    box-shadow: 0 0 10px rgba(230, 30, 80, 0.2);
}

.lc-author-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #2D0A14;
    font-size: 1.05rem;
    letter-spacing: -0.01em;
}

.lc-comment-timestamp {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #7A5C65;
}

.lc-comment-text {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #2D0A14;
}

.lc-action-btn {
    color: #E61E50;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s ease;
}

.lc-action-btn:hover {
    color: #C51641;
    text-decoration: none;
}

.lc-action-btn i {
    font-size: 1.1rem;
}

.lc-reply-comment {
    background-color: #FDF2F5;
    border: 1px solid #F0E2E6;
    border-left: 4px solid #E61E50;
    border-radius: 8px;
    position: relative;
}

.lc-reply-comment::before {
    content: '';
    position: absolute;
    left: -24px;
    top: 20px;
    width: 24px;
    height: 1px;
    background-color: #F0E2E6;
}

@media (max-width: 768px) {
    .lc-reply-comment {
        margin-left: 1.5rem;
    }

    .lc-reply-comment::before {
        display: none;
    }
}

.lc-avatar-reply {
    width: 40px;
    height: 40px;
    background: #2D0A14;
    font-size: 0.9rem;
    border: 2px solid #FFFFFF;
}

.lc-reply-comment .lc-author-name {
    font-size: 0.95rem;
}

.lc-reply-comment .lc-comment-text {
    font-size: 0.95rem;
}


/* ===== PAGE TEMPLATE: all-games ===== */
.luck-game-detail-page {
    padding-top: 100px;
    background-color: #FDF2F5;
}

.luck-breadcrumb .breadcrumb-item {
    font-size: 0.85rem;
    font-family: 'Inter', sans-serif;
}

.luck-breadcrumb .breadcrumb-item a {
    color: #E61E50;
}

.luck-breadcrumb .breadcrumb-item.active {
    color: #7A5C65;
}

.luck-game-viewport {
    background-color: #000;
    height: 600px;
    width: 100%;
}

.luck-game-iframe-wrapper {
    height: calc(100% - 60px);
    width: 100%;
}

.luck-game-controls {
    background-color: #2D0A14;
    height: 60px;
}

.luck-game-btn-expand {
    background: linear-gradient(135deg, #E61E50, #FF4D7D);
    border: none;
    color: #fff;
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.luck-game-btn-expand:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.js-game-container.is-fullscreen {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    z-index: 9999;
    border-radius: 0 !important;
}

.js-game-container.is-fullscreen .luck-game-iframe-wrapper {
    height: 100% !important;
}

.js-game-container.is-fullscreen .luck-game-controls {
    display: none !important;
}

.luck-registration-card .btn-start-playing {
    background: #E91E63 !important;
    color: #ffffff !important;
    font-weight: 700;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.luck-registration-card .btn-start-playing:hover {
    background: #C2185B !important;
}

.luck-registration-card .btn-start-playing:active {
    background: #AD1457 !important;
}

.js-submit-comment {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    height: 52px;
    background: #E91E63 !important;
    color: #ffffff !important;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 8px;
    border: none;
    text-align: center;
    line-height: 52px;
    padding: 0 20px !important;
    transition: background 0.2s ease;
}

.js-submit-comment:hover {
    background: #C2185B !important;
}

.js-submit-comment:active {
    background: #AD1457 !important;
}

.luck-game-fullscreen-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10000;
}

.luck-game-exit-btn {
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 10px 20px;
    border-radius: 50px;
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.luck-section-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #2D0A14;
    font-size: 1.25rem;
}

.luck-feature-item {
    background-color: #FDF2F5;
    text-align: center;
    border: 1px solid #F0E2E6;
}

.luck-feature-item i {
    font-size: 1.5rem;
    color: #E61E50;
}

.luck-feature-item h6 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.luck-registration-card .form-control {
    border-color: #F0E2E6;
    padding: 12px;
}

.luck-registration-card .form-control:focus {
    border-color: #E61E50;
    box-shadow: 0 0 0 0.25rem rgba(230, 30, 80, 0.1);
}

.luck-sidebar-sticky {
    position: sticky;
    top: 100px;
}

.x-small {
    font-size: 0.7rem;
}


.lc-main-comment {
    background: #F8F9FA;
    border-radius: 12px;
    border-left: 4px solid #E61E50;
}

.lc-reply-comment {
    background: #FFFFFF;
    border: 1px solid #F0E2E6;
    border-radius: 12px;
}

.lc-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #E61E50;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.lc-author-name {
    font-size: 1rem;
    font-weight: 700;
    color: #2D0A14;
}

.lc-comment-timestamp {
    font-size: 0.75rem;
    color: #7A5C65;
}

.lc-comment-text {
    font-size: 0.95rem;
    color: #2D0A14;
    line-height: 1.5;
}

.lc-action-btn {
    font-size: 0.85rem;
    color: #E61E50 !important;
    text-decoration: none;
    font-weight: 600;
}

.lc-action-btn:hover {
    color: #C51641 !important;
}

.lc-action-btn.active i {
    font-weight: bold;
}

@media (max-width: 991.98px) {
    .luck-game-viewport {
        height: 450px;
    }

    .luck-game-detail-page {
        padding-top: 80px;
    }
}

@media (max-width: 767px) {
    .luck-game-viewport {
        height: 350px;
    }

    .luck-game-title {
        font-size: 1rem !important;
    }

    .lc-reply-comment {
        margin-left: 20px !important;
    }
}