:root {
    --primary-neon-gold: #FFD700;
    --secondary-gold-glow: #FFEA00;
    --background-deep-obsidian: #0D0D0D;
    --surface-dark-charcoal: #1A1A1A;
    --text-primary-light: #F8F9FA;
    --text-muted-light: #A0A0A0;
    --accent-warm-amber: #FF8C00;
    --border-gold-metallic: rgba(255, 215, 0, 0.3);
}

body {
    background-color: var(--background-deep-obsidian);
    color: var(--text-primary-light);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.dark-theme {
    background-color: var(--background-deep-obsidian);
}

.smooth-scroll {
    scroll-behavior: smooth;
}

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

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

.accent-font {
    font-family: 'Goldman', cursive;
}

.btn-primary-custom {
    background: linear-gradient(45deg, var(--primary-neon-gold), var(--accent-warm-amber));
    color: #000;
    border-radius: 50px;
    text-transform: uppercase;
    font-weight: 700;
    border: none;
    padding: 12px 30px;
    transition: all 0.3s ease-in-out;
}

.btn-primary-custom:hover {
    filter: brightness(1.2);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
    transform: translateY(-2px);
}

.btn-secondary-custom {
    background: transparent;
    border: 2px solid var(--primary-neon-gold);
    color: var(--primary-neon-gold);
    border-radius: 50px;
    padding: 10px 28px;
    transition: all 0.3s ease-in-out;
}

.btn-secondary-custom:hover {
    background: var(--primary-neon-gold);
    color: #000;
}

.glass-card {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-gold-metallic);
    border-radius: 16px;
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
    transform: scale(1.03);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

.section-spacer {
    padding: 100px 0;
}

* {
    box-sizing: border-box;
}

/* ===== header ===== */
.luckvoragny-header {
    background-color: #0D0D0D;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
    z-index: 1050;
}

.luckvoragny-header .navbar {
    padding: 1rem 0;
}

.luckvoragny-header .luckvoragny-brand-img {
    max-width: 45px;
    height: auto;
    object-fit: contain;
}

.luckvoragny-header .luckvoragny-brand-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    color: #FFD700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.25rem;
}

.luckvoragny-header .nav-link {
    color: #F8F9FA;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

.luckvoragny-header .nav-link:hover,
.luckvoragny-header .nav-link:focus {
    color: #FFD700;
}

.luckvoragny-header .dropdown-menu {
    background-color: #1A1A1A;
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    margin-top: 10px;
}

.luckvoragny-header .dropdown-item {
    color: #F8F9FA;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    transition: background 0.3s ease, color 0.3s ease;
}

.luckvoragny-header .dropdown-item:hover {
    background-color: #FFD700;
    color: #0D0D0D;
}

.luckvoragny-header .navbar-toggler {
    border-color: rgba(255, 215, 0, 0.5);
    padding: 0.5rem;
}

.luckvoragny-header .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 215, 0, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.luckvoragny-header .luckvoragny-cta-btn {
    background: linear-gradient(45deg, #FFD700, #FF8C00);
    color: #0D0D0D;
    border: none;
    padding: 0.6rem 1.8rem;
    border-radius: 50px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    font-size: 0.8rem;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.luckvoragny-header .luckvoragny-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    color: #0D0D0D;
}

@media (max-width: 991.98px) {
    .luckvoragny-header .navbar-collapse {
        background-color: #0D0D0D;
        padding: 1.5rem;
        border-radius: 0 0 12px 12px;
        margin-top: 1rem;
        border: 1px solid rgba(255, 215, 0, 0.2);
    }

    .luckvoragny-header .nav-link {
        padding: 0.75rem 0 !important;
        border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    }

    .luckvoragny-header .luckvoragny-cta-btn {
        width: 100%;
        margin-top: 1rem;
    }
}

/* ===== hero ===== */
.luck-hero {
    position: relative;
    padding: 100px 0 160px;
    overflow: hidden;
    background: #0D0D0D;
    min-height: 800px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.luck-hero__video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.luck-hero__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.luck-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(13, 13, 13, 0.4) 0%, rgba(13, 13, 13, 0.9) 100%);
    z-index: 2;
}

.luck-hero__content-wrapper {
    position: relative;
    z-index: 3;
    margin-bottom: 60px;
}

.luck-hero__text-box {
    color: #F8F9FA;
}

.luck-hero__emblem {
    color: #FFD700;
    font-size: 2rem;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.6));
}

.luck-hero__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 3.5rem;
    line-height: 1.1;
    color: #F8F9FA;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
}

.luck-hero__desc {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    color: #A0A0A0;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.luck-hero__btn {
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.luck-hero__btn--primary {
    background: linear-gradient(45deg, #FFD700, #FF8C00);
    color: #0D0D0D;
    border: none;
}

.luck-hero__btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    background: linear-gradient(45deg, #FFEA00, #FF8C00);
}

.luck-hero__btn--secondary {
    background: transparent;
    border: 2px solid #FFD700;
    color: #FFD700;
}

.luck-hero__btn--secondary:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-3px);
}

.luck-hero__cards-container {
    position: relative;
    z-index: 4;
    margin-top: 30px;
}

.luck-hero__card {
    background: rgba(26, 26, 26, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 24px;
    padding: 2.5rem;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #F8F9FA;
}

.luck-hero__card--featured {
    border: 1px solid rgba(255, 215, 0, 0.4);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    transform: scale(1.05);
    z-index: 5;
}

.luck-hero__card:hover {
    transform: translateY(-10px);
    border-color: #FFD700;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.2);
}

.luck-hero__card-icon {
    font-size: 2.5rem;
    color: #FFD700;
    margin-bottom: 1.5rem;
}

.luck-hero__card-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: #F8F9FA;
    margin-bottom: 1rem;
}

.luck-hero__card-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #A0A0A0;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.luck-hero__card-link {
    color: #FFD700;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    border-bottom: 1px solid transparent;
    transition: border 0.3s;
}

.luck-hero__card-link:hover {
    border-bottom-color: #FFD700;
}

@media (max-width: 991px) {
    .luck-hero__title {
        font-size: 2.5rem;
    }

    .luck-hero__card--featured {
        transform: scale(1);
    }

    .luck-hero__cards-container {
        margin-top: 20px;
    }
}

@media (max-width: 767px) {
    .luck-hero {
        padding: 80px 0;
    }

    .luck-hero__title {
        font-size: 1.125rem;
    }

    .luck-hero__desc {
        font-size: 0.9rem;
    }

    .luck-hero__card-title {
        font-size: 1.1rem;
    }

    .luck-hero__btn-group {
        flex-direction: column;
        align-items: center;
    }
}

/* ===== features ===== */
.luckvoragny-features {
    background-color: #0D0D0D;
    background-image: url('../site-files/photos/pics/luxury-social-gaming-background.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.luckvoragny-features .features-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(13, 13, 13, 0.9) 0%, rgba(13, 13, 13, 0.7) 50%, rgba(13, 13, 13, 0.9) 100%);
    z-index: 1;
}

.luckvoragny-features .container {
    z-index: 2;
}

.luckvoragny-features .text-amber {
    color: #FFD700 !important;
    font-family: 'Montserrat', sans-serif;
}

.luckvoragny-features .text-amber-muted {
    color: #A0A0A0 !important;
    line-height: 1.6;
}

.luckvoragny-features .feature-card {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border_radius: 16px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    opacity: 0;
    transform: translateY(30px);
}

.luckvoragny-features .feature-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.luckvoragny-features .feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 15px rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.4);
}

.luckvoragny-features .feature-icon-wrapper i {
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.4));
}

.luckvoragny-features .disclaimer-box {
    background: rgba(255, 215, 0, 0.05);
    border: 1px dashed rgba(255, 215, 0, 0.2);
}

.luckvoragny-features .uppercase-tracking {
    text-transform: uppercase;
    letter-spacing: 2px;
}

.luckvoragny-features .btn-amber-radiant {
    background: linear-gradient(45deg, #FFD700, #FF8C00);
    color: #0D0D0D !important;
    border: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.luckvoragny-features .btn-amber-radiant:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
    filter: brightness(1.1);
}

.luckvoragny-features .js-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.luckvoragny-features .js-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .luckvoragny-features h2 {
        font-size: 1.75rem;
    }

    .luckvoragny-features .feature-card {
        padding: 1.5rem !important;
    }
}

/* ===== games-showcase ===== */
.games-showcase {
    background-color: #0D0D0D;
    color: #F8F9FA;
    overflow: hidden;
}

.games-showcase-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    color: #FFD700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.games-showcase-subtitle {
    color: #A0A0A0;
    font-family: 'Inter', sans-serif;
    max-width: 700px;
    margin: 0 auto;
}

.games-showcase-card {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 16px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
    position: relative;
    overflow: hidden;
}

.games-showcase-card:hover {
    transform: scale(1.03);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

.games-showcase-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 65%;
    overflow: hidden;
}

.games-showcase-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease-out;
}

.games-showcase-card:hover .games-showcase-img {
    transform: scale(1.1);
}

.games-showcase-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
}

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

.games-showcase-btn {
    background: linear-gradient(45deg, #FFD700, #FF8C00);
    color: #000;
    border: none;
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: filter 0.3s ease;
    display: inline-block;
}

.games-showcase-btn:hover {
    filter: brightness(1.2);
    color: #000;
}

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

    .games-showcase-subtitle {
        font-size: 0.9rem;
    }

    .games-showcase-card-title {
        font-size: 1rem;
    }
}

/* ===== about-teaser ===== */
.about-teaser-section {
    background-color: #0D0D0D;
    color: #F8F9FA;
    padding: 100px 0;
    overflow: hidden;
}

.about-teaser-section .content-box {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.about-teaser-section h2 {
    font-family: 'Montserrat', sans-serif;
    color: #FFD700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-teaser-section p.lead {
    font-family: 'Inter', sans-serif;
    color: #A0A0A0;
    line-height: 1.6;
}

.about-teaser-section .disclaimer-box {
    background: rgba(255, 140, 0, 0.1);
    border-left: 4px solid #FF8C00;
    padding: 1rem;
    border-radius: 4px;
}

.about-teaser-section .disclaimer-box p {
    color: #F8F9FA;
    font-family: 'Inter', sans-serif;
}

.about-teaser-section .btn-primary-custom {
    display: inline-block;
    padding: 12px 32px;
    background: linear-gradient(45deg, #FFD700, #FF8C00);
    color: #000;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    font-family: 'Montserrat', sans-serif;
}

.about-teaser-section .btn-primary-custom:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
    color: #000;
}

.about-teaser-section .image-container {
    position: relative;
    z-index: 1;
}

.about-teaser-section .image-container::after {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    bottom: 10px;
    left: 10px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 24px;
    z-index: -1;
}

.about-teaser-section .image-container img {
    object-fit: cover;
    height: 100%;
    max-height: 450px;
}

@media (max-width: 767px) {
    .about-teaser-section {
        padding: 60px 0;
    }

    .about-teaser-section h2 {
        font-size: 1.5rem;
    }

    .about-teaser-section p.lead {
        font-size: 1rem;
    }

    .about-teaser-section .btn-primary-custom {
        width: 100%;
        text-align: center;
    }
}

/* ===== footer ===== */
.luckvoragny-footer-block {
    background-color: #0D0D0D;
    color: #F8F9FA;
    padding-top: 60px;
    font-family: 'Inter', sans-serif;
}

.luckvoragny-disclaimer-section {
    margin-bottom: 50px;
}

.luckvoragny-disclaimer-box {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(12px);
}

.luckvoragny-disclaimer-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #FFD700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.luckvoragny-disclaimer-text p {
    color: #A0A0A0;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.luckvoragny-org-section {
    padding: 40px 0;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.luckvoragny-org-logo {
    width: 120px;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.luckvoragny-org-logo:hover {
    transform: scale(1.05);
}

.luckvoragny-18plus-badge {
    background-color: #dc3545;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.2rem;
    border: 2px solid white;
}

.luckvoragny-main-footer {
    padding: 60px 0 30px;
}

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

.luckvoragny-footer-desc {
    color: #A0A0A0;
    font-size: 0.85rem;
}

.luckvoragny-footer-nav a,
.luckvoragny-legal-nav a {
    color: #F8F9FA;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.luckvoragny-footer-nav a:hover,
.luckvoragny-legal-nav a:hover {
    color: #FFD700;
}

.luckvoragny-copyright p {
    color: #A0A0A0;
    font-size: 0.75rem;
}

@media (max-width: 767.98px) {
    .luckvoragny-disclaimer-title {
        font-size: 16px;
    }

    .luckvoragny-disclaimer-text p {
        font-size: 0.85rem;
    }

    .luckvoragny-org-logo {
        width: 100px;
    }

    .luckvoragny-footer-nav,
    .luckvoragny-legal-nav {
        font-size: 0.75rem;
    }
}

.luck-games-grid {
    background-color: #0D0D0D;
}

.luck-games-grid__search-wrapper {
    position: relative;
}

.luck-games-grid__search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #FFD700;
    z-index: 5;
}

.luck-games-grid__search-input {
    background-color: #1A1A1A !important;
    border: 1px solid rgba(255, 215, 0, 0.3) !important;
    color: #F8F9FA !important;
    padding: 12px 12px 12px 45px !important;
    border-radius: 50px !important;
}

.luck-games-grid__search-input::placeholder {
    color: rgba(160, 160, 160, 0.7) !important;
}

.luck-games-grid__filter-btn {
    background: transparent;
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: #F8F9FA;
    padding: 10px 25px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.luck-games-grid__filter-btn:hover,
.luck-games-grid__filter-btn.active {
    background: linear-gradient(45deg, #FFD700, #FF8C00);
    color: #0D0D0D;
    border-color: transparent;
}

.luck-games-grid__card {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 20px;
    height: 100%;
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.luck-games-grid__card:hover {
    transform: translateY(-10px);
    border-color: #FFD700;
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.2);
}

.luck-games-grid__img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.luck-games-grid__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.luck-games-grid__card:hover .luck-games-grid__img {
    transform: scale(1.1);
}

.luck-games-grid__card-body {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.luck-games-grid__card-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #F8F9FA;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.luck-games-grid__card-meta {
    font-size: 0.75rem;
    color: #A0A0A0;
    margin-bottom: 1.5rem;
}

.luck-games-grid__card-btn {
    background: linear-gradient(45deg, #FFD700, #FF8C00);
    color: #0D0D0D;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem;
    text-decoration: none;
    text-align: center;
    display: block;
    transition: transform 0.3s ease;
}

.luck-games-grid__card-btn:hover {
    transform: scale(1.05);
    color: #0D0D0D;
}

@media (max-width: 767px) {
    .luck-games-grid__filter-group {
        display: flex;
        width: 100%;
    }

    .luck-games-grid__filter-btn {
        flex: 1;
        padding: 10px 5px;
        font-size: 0.7rem;
    }
}


/* ===== PAGE: privacy ===== */
.policy-content-body {
  font-family: 'Inter', sans-serif;
  color: #F8F9FA;
  line-height: 1.8;
  background: #0D0D0D;
  padding: 40px 20px;
}

.policy-content-body h2 {
  font-family: 'Montserrat', sans-serif;
  color: #FFD700;
  font-weight: 700;
  font-size: 1.8rem;
  margin-top: 2.5rem;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
  padding-bottom: 10px;
}

.policy-content-body p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  opacity: 0.9;
}

.policy-content-body ul {
  margin-bottom: 2rem;
  padding-left: 1.5rem;
}

.policy-content-body li {
  margin-bottom: 0.8rem;
  position: relative;
  list-style: none;
}

.policy-content-body li::before {
  content: '\F26E';
  font-family: 'Bootstrap-Icons';
  color: #FFD700;
  position: absolute;
  left: -1.5rem;
  top: 2px;
}

.policy-content-body strong {
  color: #FFEA00;
  font-weight: 600;
}

.policy-content-body em {
  color: #A0A0A0;
  font-style: normal;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .policy-content-body {
    padding: 25px 15px;
  }
  .policy-content-body h2 {
    font-size: 1.4rem;
  }
  .policy-content-body p {
    font-size: 0.95rem;
  }
}

/* ===== PAGE: terms ===== */
#policy-main-container .terms-content-section { padding: 2rem 0; } #policy-main-container .terms-heading { font-family: 'Montserrat', sans-serif; font-weight: 700; color: #FFD700; font-size: 1.5rem; margin-top: 2.5rem; margin-bottom: 1rem; border-left: 4px solid #FF8C00; padding-left: 1rem; } #policy-main-container .terms-text { font-family: 'Inter', sans-serif; font-weight: 400; color: #F8F9FA; line-height: 1.8; margin-bottom: 1.5rem; text-align: justify; } #policy-main-container .terms-list { list-style: none; padding-left: 0; margin-bottom: 1.5rem; } #policy-main-container .terms-list li { position: relative; padding-left: 1.5rem; color: #A0A0A0; margin-bottom: 0.75rem; font-family: 'Inter', sans-serif; line-height: 1.6; } #policy-main-container .terms-list li::before { content: "\F26E"; font-family: "bootstrap-icons"; position: absolute; left: 0; color: #FFD700; font-size: 1rem; } @media (max-width: 768px) { #policy-main-container .terms-heading { font-size: 1.25rem; } #policy-main-container .terms-text { font-size: 0.95rem; } }

/* ===== PAGE: disclaimer ===== */
.policy-content-wrapper { background: #0D0D0D; padding: 60px 0; display: flex; justify-content: center; } #policy-main-container { max-width: 900px; width: 100%; padding: 40px; background: rgba(26, 26, 26, 0.8); backdrop-filter: blur(12px); border: 1px solid rgba(255, 215, 0, 0.15); border-radius: 16px; color: #F8F9FA; font-family: 'Inter', sans-serif; line-height: 1.6; } #policy-main-container h2 { font-family: 'Montserrat', sans-serif; color: #FFD700; font-weight: 700; margin-top: 2rem; margin-bottom: 1rem; font-size: 1.5rem; text-transform: uppercase; letter-spacing: 1px; } #policy-main-container p { margin-bottom: 1.25rem; color: #A0A0A0; font-size: 1rem; } #policy-main-container ul { list-style: none; padding-left: 0; margin-bottom: 1.5rem; } #policy-main-container li { position: relative; padding-left: 1.5rem; margin-bottom: 0.75rem; color: #A0A0A0; } #policy-main-container li::before { content: '\F285'; font-family: 'bootstrap-icons'; position: absolute; left: 0; color: #FFD700; } #policy-main-container strong { color: #FFD700; font-weight: 600; } @media (max-width: 768px) { #policy-main-container { padding: 20px; border-radius: 0; border-left: none; border-right: none; } #policy-main-container h2 { font-size: 1.1rem; } #policy-main-container p { font-size: 0.9rem; } }

/* ===== PAGE: cookies ===== */
.luckvoragny-privacy-block { padding: 40px 20px; color: #F8F9FA; font-family: 'Inter', sans-serif; line-height: 1.6; } .luckvoragny-card-glass { background: rgba(26, 26, 26, 0.8); backdrop-filter: blur(12px); border: 1px solid rgba(255, 215, 0, 0.15); border-radius: 16px; padding: 1.5rem; margin-bottom: 24px; transition: transform 0.3s ease, box-shadow 0.3s ease; } .luckvoragny-card-glass:hover { transform: scale(1.02); box-shadow: 0 0 20px rgba(255, 215, 0, 0.2); } .luckvoragny-privacy-block h2 { font-family: 'Montserrat', sans-serif; font-weight: 700; color: #FFD700; font-size: 2rem; margin-bottom: 1.5rem; text-transform: uppercase; letter-spacing: 1px; } .luckvoragny-privacy-block h3 { font-family: 'Montserrat', sans-serif; font-weight: 600; color: #FFD700; font-size: 1.5rem; margin-bottom: 1rem; } .luckvoragny-privacy-block p { font-size: 1rem; color: #A0A0A0; margin-bottom: 1rem; } .luckvoragny-list { list-style: none; padding-left: 0; } .luckvoragny-list li { position: relative; padding-left: 1.5rem; margin-bottom: 0.75rem; color: #A0A0A0; } .luckvoragny-list li::before { content: '\F26E'; font-family: 'Bootstrap-icons'; position: absolute; left: 0; color: #FFD700; } .luckvoragny-list strong { color: #F8F9FA; } @media (max-width: 768px) { .luckvoragny-privacy-block h2 { font-size: 1.25rem; } .luckvoragny-privacy-block h3 { font-size: 1.1rem; } .luckvoragny-privacy-block { padding: 20px 10px; } }

/* ===== PAGE: rgp ===== */
.policy-content-body {
  font-family: 'Inter', sans-serif;
  color: #F8F9FA;
  line-height: 1.8;
  padding: 40px 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.policy-content-body .policy-heading-main {
  font-family: 'Montserrat', sans-serif;
  color: #FFD700;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 30px;
  border-left: 5px solid #FFD700;
  padding-left: 20px;
  font-size: 2rem;
}

.policy-content-body .policy-intro-text {
  font-size: 1.1rem;
  color: #A0A0A0;
  margin-bottom: 50px;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
  padding-bottom: 30px;
}

.policy-content-body .policy-section-wrapper {
  background: rgba(26, 26, 26, 0.6);
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: 16px;
  padding: 30px;
  margin-bottom: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.policy-content-body .policy-section-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(255, 215, 0, 0.1);
}

.policy-content-body h3 {
  font-family: 'Montserrat', sans-serif;
  color: #FFD700;
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
}

.policy-content-body h3::before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #FFD700;
  margin-right: 15px;
  border-radius: 50%;
  box-shadow: 0 0 10px #FFD700;
}

.policy-content-body p {
  margin-bottom: 20px;
  color: #F8F9FA;
}

.policy-content-body ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.policy-content-body li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: #F8F9FA;
}

.policy-content-body li::before {
  content: '\F26E';
  font-family: 'bootstrap-icons';
  position: absolute;
  left: 0;
  color: #FFD700;
  font-size: 14px;
}

.policy-content-body strong {
  color: #FFD700;
  font-weight: 600;
}

@media (max-width: 768px) {
  .policy-content-body {
    padding: 20px 15px;
  }
  .policy-content-body .policy-heading-main {
    font-size: 1.5rem;
  }
  .policy-content-body h3 {
    font-size: 1.2rem;
  }
  .policy-content-body .policy-section-wrapper {
    padding: 20px;
  }
}

/* ===== PAGE: about ===== */
.about-content-section {
  background-color: #0D0D0D;
  color: #F8F9FA;
  font-family: 'Inter', sans-serif;
}
.about-content-section h1, .about-content-section h2, .about-content-section h3 {
  font-family: 'Montserrat', sans-serif;
  color: #FFD700;
}
.about-content-section .text-gold {
  color: #FFD700 !important;
}
.about-content-section .text-muted-light {
  color: #A0A0A0;
}
.about-content-section .about-feature-card {
  background: rgba(26, 26, 26, 0.8);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 16px;
  backdrop-filter: blur(12px);
}
.about-content-section .about-info-card {
  background: #1A1A1A;
  border-radius: 16px;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}
.about-content-section .about-info-card:hover {
  border-color: rgba(255, 215, 0, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.about-content-section .about-image-frame img {
  object-fit: cover;
  width: 100%;
  height: 400px;
  border: 2px solid rgba(255, 215, 0, 0.1);
}
.about-content-section .accent-overlay-gold {
  position: absolute;
  bottom: -15px;
  right: -15px;
  width: 100px;
  height: 100px;
  border-right: 4px solid #FFD700;
  border-bottom: 4px solid #FFD700;
  z-index: -1;
}
.about-content-section .bg-dark-card {
  background: linear-gradient(145deg, #121212, #1a1a1a);
  border: 1px solid rgba(255, 215, 0, 0.15);
}
.about-content-section .max-700 {
  max-width: 700px;
}
.about-content-section .scale-down {
  font-size: 0.9rem;
}
@media (max-width: 768px) {
  .about-content-section h1 {
    font-size: 1.5rem !important;
  }
  .about-content-section h2 {
    font-size: 1.25rem !important;
  }
  .about-content-section .about-image-frame img {
    height: 250px;
  }
}

/* ===== PAGE: tournaments ===== */
.tournaments-list-section { background-color: #0D0D0D; color: #F8F9FA; min-height: 600px; }
.tournaments-list-section .tournament-card { background: rgba(26, 26, 26, 0.8); backdrop-filter: blur(12px); border: 1px solid rgba(255, 215, 0, 0.15); border-radius: 16px; transition: transform 0.3s ease-out, box-shadow 0.3s ease-out; overflow: hidden; display: flex; flex-direction: column; }
.tournaments-list-section .tournament-card:hover { transform: scale(1.03); box-shadow: 0 0 20px rgba(255, 215, 0, 0.4); }
.tournaments-list-section .tournament-image-wrapper { position: relative; height: 200px; overflow: hidden; }
.tournaments-list-section .tournament-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease-out; }
.tournaments-list-section .tournament-card:hover .tournament-img { transform: scale(1.1); }
.tournaments-list-section .tournament-status-badge { position: absolute; top: 15px; right: 15px; padding: 5px 15px; border-radius: 50px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; }
.tournaments-list-section .status-active { background: #FFD700; color: #000; box-shadow: 0 0 10px rgba(255, 214, 0, 0.6); }
.tournaments-list-section .status-upcoming { background: rgba(255, 255, 255, 0.1); color: #FFF; border: 1px solid rgba(255, 255, 255, 0.2); }
.tournaments-list-section .tournament-content { padding: 1.5rem; flex-grow: 1; display: flex; flex-direction: column; }
.tournaments-list-section .tournament-info-grid { display: grid; grid-template-columns: 1fr; gap: 8px; }
.tournaments-list-section .info-item { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; color: #A0A0A0; }
.tournaments-list-section .info-item i { color: #FFD700; }
.tournaments-list-section .progress { background-color: rgba(255, 255, 255, 0.05); border-radius: 10px; }
.tournaments-list-section .progress-bar { background: linear-gradient(45deg, #FFD700, #FF8C00); border-radius: 10px; }
.tournaments-list-section h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; color: #FFD700; }
.tournaments-list-section .btn-primary { background: linear-gradient(45deg, #FFD700, #FF8C00); border: none; color: #000; font-weight: 700; border-radius: 50px; }
.tournaments-list-section .btn-secondary { background: transparent; border: 2px solid #FFD700; color: #FFD700; font-weight: 700; border-radius: 50px; }
.tournaments-list-section .btn-secondary:hover { background: rgba(255, 215, 0, 0.1); color: #FFD700; }
.tournaments-list-section .btn-secondary.active { background: #FFD700; color: #000; }

/* ===== PAGE: events ===== */
.events-calendar-section { padding: 80px 0; background-color: #0D0D0D; position: relative; overflow: hidden; } .events-calendar-section .events-main-title { font-family: 'Montserrat', sans-serif; font-weight: 900; color: #FFD700; font-size: 2.5rem; text-transform: uppercase; margin-bottom: 1rem; text-shadow: 0 0 15px rgba(255, 215, 0, 0.3); } @media (max-width: 768px) { .events-calendar-section .events-main-title { font-size: 1.125rem; } } .events-calendar-section .events-main-subtitle { font-family: 'Inter', sans-serif; color: #A0A0A0; font-size: 1.1rem; max-width: 700px; margin: 0 auto; line-height: 1.6; } .events-calendar-section .events-filter-btn { padding: 10px 25px; border-radius: 50px; background: transparent; border: 2px solid #FFD700; color: #FFD700; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.9rem; text-transform: uppercase; transition: all 0.3s ease-in-out; cursor: pointer; } .events-calendar-section .events-filter-btn:hover, .events-calendar-section .events-filter-btn.active { background: linear-gradient(45deg, #FFD700, #FF8C00); color: #000; box-shadow: 0 0 15px rgba(255, 215, 0, 0.4); border-color: transparent; } .events-calendar-section .events-card { background: rgba(26, 26, 26, 0.8); backdrop-filter: blur(12px); border: 1px solid rgba(255, 215, 0, 0.15); border-radius: 16px; overflow: hidden; transition: transform 0.3s ease, box-shadow 0.3s ease; position: relative; } .events-calendar-section .events-card:hover { transform: translateY(-10px); box-shadow: 0 0 20px rgba(255, 215, 0, 0.2); } .events-calendar-section .events-img-wrapper { position: relative; height: 220px; overflow: hidden; } .events-calendar-section .events-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; } .events-calendar-section .events-card:hover .events-img { transform: scale(1.1); } .events-calendar-section .events-date { position: absolute; top: 15px; right: 15px; background: #FFD700; color: #000; font-family: 'Goldman', cursive; font-weight: 700; padding: 5px 12px; border-radius: 8px; font-size: 0.9rem; box-shadow: 0 4px 10px rgba(0,0,0,0.3); } .events-calendar-section .events-content { padding: 1.5rem; } .events-calendar-section .events-card-title { font-family: 'Montserrat', sans-serif; font-weight: 700; color: #F8F9FA; font-size: 1.25rem; margin-bottom: 0.75rem; } @media (max-width: 768px) { .events-calendar-section .events-card-title { font-size: 1rem; } } .events-calendar-section .events-card-text { font-family: 'Inter', sans-serif; color: #A0A0A0; font-size: 0.95rem; line-height: 1.5; margin-bottom: 1.25rem; } .events-calendar-section .events-meta { display: flex; align-items: center; justify-content: space-between; padding-top: 1rem; border-top: 1px solid rgba(255, 215, 0, 0.1); } .events-calendar-section .events-tag { font-family: 'Goldman', cursive; color: #FFD700; font-size: 0.8rem; text-transform: uppercase; } .events-calendar-section .events-time { color: #A0A0A0; font-size: 0.85rem; font-family: 'Inter', sans-serif; }

/* ===== PAGE: complaint ===== */
.complaint-section {
  background-color: #0D0D0D;
  min-height: 80vh;
  font-family: 'Inter', sans-serif;
}

.complaint-section h1,
.complaint-section h2 {
  letter-spacing: 1px;
}

.complaint-section .complaint-feature-box {
  background: rgba(26, 26, 26, 0.8);
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: 16px;
  backdrop-filter: blur(12px);
}

.complaint-section .complaint-form-wrapper {
  background: rgba(26, 26, 26, 0.6);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 20px;
  backdrop-filter: blur(15px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.complaint-section .form-control,
.complaint-section .form-select {
  background-color: #1A1A1A;
  border: 1px solid rgba(255, 215, 0, 0.3);
  color: #F8F9FA;
  padding: 0.8rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
}

.complaint-section .form-control:focus,
.complaint-section .form-select:focus {
  background-color: #212529;
  border-color: #FFD700;
  box-shadow: 0 0 10px rgba(255, 214, 0, 0.2);
  outline: none;
  color: #FFFFFF;
}

.complaint-section .form-control::placeholder {
  color: #6c757d;
}

.complaint-section .btn-primary-gold {
  background: linear-gradient(45deg, #FFD700, #FF8C00);
  border: none;
  color: #0D0D0D;
  border-radius: 50px;
  transition: all 0.3s ease-out;
}

.complaint-section .btn-primary-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
  filter: brightness(1.1);
}

.complaint-section .complaint-image-container .image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(13, 13, 13, 0.7));
  border-radius: 16px;
}

@media (max-width: 767.98px) {
  .complaint-section h1 {
    font-size: 1.8rem !important;
  }
  .complaint-section h2 {
    font-size: 1.4rem !important;
  }
  .complaint-section .complaint-form-wrapper {
    padding: 1.5rem !important;
  }
}

.main-comment-card {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 16px;
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.main-comment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.comment-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #FFD700;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.comment-username {
    font-family: 'Montserrat', sans-serif;
    color: #FFD700;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.comment-date {
    font-size: 0.85rem;
    color: #A0A0A0;
}

.comment-rating {
    color: #FFEA00;
    font-size: 0.9rem;
}

.comment-text {
    font-family: 'Inter', sans-serif;
    color: #F8F9FA;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.btn-action {
    background: transparent;
    border: none;
    color: #FFD700;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0;
    transition: color 0.2s ease;
}

.btn-action:hover {
    color: #FF8C00;
}

.reply-comment-card {
    background: rgba(255, 255, 255, 0.03);
    border-left: 3px solid #FFD700;
    border-radius: 0 12px 12px 0;
    padding: 1.25rem;
    position: relative;
}

.reply-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(255, 215, 0, 0.5);
}

.reply-username {
    font-family: 'Montserrat', sans-serif;
    color: #F8F9FA;
    font-weight: 600;
}

.badge-staff {
    background: linear-gradient(45deg, #FFD700, #FF8C00);
    color: #0D0D0D;
    font-size: 0.65rem;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 8px;
    font-weight: 900;
    vertical-align: middle;
}


/* ===== PAGE TEMPLATE: games ===== */
.luck-game-detail {
    background-color: #0D0D0D;
    color: #F8F9FA;
}

.luck-game-detail__iframe-container {
    position: relative;
    width: 100%;
    height: 600px;
    background: #000;
    overflow: hidden;
}

.luck-game-detail__iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.luck-game-detail__iframe-controls {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 10;
}

.luck-game-detail__control-btn {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid #FFD700;
    color: #FFD700;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.luck-game-detail__control-btn:hover {
    background: #FFD700;
    color: #0D0D0D;
    transform: scale(1.1);
}

.luck-game-detail__close-fullscreen {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 2000;
    background: #FFD700;
    color: #0D0D0D;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
}

.luck-game-detail__iframe-container:fullscreen .luck-game-detail__close-fullscreen,
.luck-game-detail__iframe-container:-webkit-full-screen .luck-game-detail__close-fullscreen {
    display: flex;
}

.luck-game-detail__info-card,
.luck-game-detail__comments-section,
.luck-game-detail__sidebar-card {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.luck-game-detail__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    color: #FFD700;
    text-transform: uppercase;
}

.luck-game-detail__meta-label {
    color: #A0A0A0;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.luck-game-detail__meta-value {
    color: #F8F9FA;
    font-weight: 600;
    font-family: 'Goldman', cursive;
}

.luck-game-detail__description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #A0A0A0;
}

.luck-game-detail__description h2,
.luck-game-detail__description h3 {
    color: #FFD700;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.luck-game-detail__section-title {
    font-family: 'Montserrat', sans-serif;
    border-left: 4px solid #FFD700;
    padding-left: 1rem;
}

.text-gold {
    color: #FFD700;
    font-weight: 600;
}

.luck-game-detail__comment-form .form-control {
    background: #111;
    border: 1px solid #333;
    color: #F8F9FA;
    border-radius: 10px;
    padding: 0.75rem 1rem;
}

.luck-game-detail__comment-form .form-control:focus {
    background: #111;
    border-color: #FFD700;
    box-shadow: none;
    color: #F8F9FA;
}

.luck-game-detail__comment-form .form-control::placeholder {
    color: #555;
}

.luck-game-detail__submit-btn {
    background: linear-gradient(45deg, #FFD700, #FF8C00);
    border: none;
    padding: 12px 0;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    color: #0D0D0D;
    transition: transform 0.3s;
    width: 100%;
}

.luck-game-detail__submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.js-rating-star {
    color: #444;
    cursor: pointer;
    font-size: 1.25rem;
    transition: color 0.2s;
}

.js-rating-star.active {
    color: #FFD700;
}

.main-comment-card {
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    padding-bottom: 1.5rem;
}

.comment-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #FFD700;
}

.comment-username {
    color: #FFD700;
    font-weight: 700;
    font-size: 1rem;
}

.comment-date {
    color: #A0A0A0;
    font-size: 0.8rem;
}

.comment-rating {
    color: #FFD700;
    font-size: 0.85rem;
}

.btn-action {
    background: none;
    border: none;
    color: #A0A0A0;
    font-size: 0.85rem;
    font-weight: 600;
    transition: color 0.2s;
    padding: 0;
}

.btn-action:hover {
    color: #FFD700;
}

.btn-action.active {
    color: #FFD700;
}

.reply-comment-card {
    border-left: 2px solid #FFD700;
    padding-left: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 1rem;
    border-radius: 0 12px 12px 0;
}

.badge-staff {
    background: #FFD700;
    color: #0D0D0D;
    font-size: 0.6rem;
    padding: 2px 6px;
    border-radius: 4px;
    vertical-align: middle;
}

@media (max-width: 768px) {
    .luck-game-detail__iframe-container {
        height: 400px;
    }

    .luck-game-detail__meta {
        gap: 1.5rem;
    }

    .luck-game-detail__title {
        font-size: 1.5rem;
    }
}