:root {
    --primary: #8A2BE2;
    --secondary: #00CED1;
    --accent: #FFD700;
    --bg-main: #0B041A;
    --bg-surface: #1A0B2E;
    --text-light: #F8F8FF;
    --text-muted: #A9A9A9;
}

body {
    background-color: var(--bg-main);
    color: var(--text-light);
    font-family: 'Montserrat', sans-serif;
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

h1,
h2,
h3,
h4 {
    font-family: 'Cinzel', serif;
    color: var(--text-light);
}

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

.magic-glow {
    box-shadow: 0 0 15px rgba(138, 43, 226, 0.4);
}

.magic-card {
    background: rgba(26, 11, 46, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.magic-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary);
    box-shadow: 0 0 20px rgba(0, 206, 209, 0.3);
}

.btn-magic {
    background: linear-gradient(135deg, #4B0082 0%, #8A2BE2 50%, #00CED1 100%);
    border: none;
    color: white;
    font-weight: bold;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-magic:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(138, 43, 226, 0.6);
}

.section-spacing {
    padding: 80px 0;
}

@media (max-width: 768px) {
    .section-spacing {
        padding: 40px 0;
    }
}

/* ===== header ===== */
.luckvoraradh-nav-block {
    font-family: 'Montserrat', sans-serif;
}

.luckvoraradh-nav-block .js-dropdown-menu {
    animation: navFadeIn 0.2s ease-out;
}

@keyframes navFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.luckvoraradh-nav-block a {
    position: relative;
}

.luckvoraradh-nav-block nav>a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00CED1;
    transition: width 0.3s ease;
}

.luckvoraradh-nav-block nav>a:hover::after {
    width: 100%;
}

.luckvoraradh-nav-block .js-mobile-menu {
    height: calc(100vh - 70px);
}

/* ===== hero ===== */
.luckvoraradh-hero {
    background: radial-gradient(circle at 50% 50%, #1A0B2E 0%, #0B041A 100%);
}

.luckvoraradh-hero__glow-bg {
    background: radial-gradient(circle at 80% 20%, rgba(138, 43, 226, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(0, 206, 209, 0.3) 0%, transparent 50%);
}

.luckvoraradh-hero__main-img {
    animation: float-hero 6s ease-in-out infinite;
}

@keyframes float-hero {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.luckvoraradh-hero__btn {
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

.luckvoraradh-hero__title {
    text-shadow: 0 0 20px rgba(138, 43, 226, 0.3);
}

@media (max-width: 767px) {
    .luckvoraradh-hero {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .luckvoraradh-hero__main-img {
        max-width: 280px;
    }
}

/* ===== games_showcase ===== */
.games-showcase .js-filter-btn.active {
    background-color: #8A2BE2;
    box-shadow: 0 0 15px rgba(138, 43, 226, 0.4);
}

.games-showcase .js-game-card {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.games-showcase .js-game-card:hover {
    border-color: #00CED1;
    box-shadow: 0 0 25px rgba(0, 206, 209, 0.3);
}

.games-showcase .js-game-card img {
    filter: brightness(0.9);
}

.games-showcase .js-game-card:hover img {
    filter: brightness(1.1);
}

/* ===== features ===== */
.luckvoraradh-features .feature-card {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    transform: translateY(0);
    opacity: 0;
    transform: translateY(30px);
}

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

.luckvoraradh-features .feature-card:hover {
    border-color: #00CED1;
    box-shadow: 0 0 25px rgba(0, 206, 209, 0.2);
    transform: translateY(-10px);
}

.luckvoraradh-features .feature-icon-wrapper {
    transition: all 0.3s ease;
}

.luckvoraradh-features .feature-card:hover .feature-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    background-color: rgba(0, 206, 209, 0.1);
    border-color: rgba(0, 206, 209, 0.3);
    box-shadow: 0 0 20px rgba(0, 206, 209, 0.4);
}

.luckvoraradh-features .feature-card:hover .feature-icon-wrapper svg {
    color: #FFD700;
}

/* ===== how_it_works ===== */
.how-it-works-section {
    background-attachment: fixed;
}

.how-it-works-card {
    height: 100%;
    min-height: 320px;
}

.how-it-works-icon-wrapper svg {
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

@media (max-width: 767px) {
    .how-it-works-card {
        min-height: auto;
        padding: 24px;
    }
}

/* ===== community_banner ===== */
.community-banner-section {
    position: relative;
}

.community-banner-section .text-shadow-glow {
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.community-banner-section .community-banner-bg img {
    object-position: center;
    background-size: cover;
}

.community-banner-section .js-banner-btn {
    position: relative;
    overflow: hidden;
}

.community-banner-section .js-banner-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.6s ease-out;
    pointer-events: none;
}

.community-banner-section .js-banner-btn:hover::after {
    transform: scale(1);
}

@media (max-width: 767px) {
    .community-banner-section .container {
        text-align: center;
    }

    .community-banner-section .max-w-\[700px\] {
        align-items: center;
        margin: 0 auto;
    }

    .community-banner-section .inline-flex {
        margin: 0 auto;
    }
}

/* ===== footer ===== */
.luckvoraradh-footer .disclaimer-block {
    transition: transform 0.3s ease;
}

.luckvoraradh-footer .disclaimer-block:hover {
    transform: translateY(-5px);
}

.luckvoraradh-footer a {
    transition: color 0.2s ease;
}

.luckvoraradh-footer .partner-logos-row img {
    filter: none !important;
    transition: transform 0.3s ease;
}

.luckvoraradh-footer .partner-logos-row img:hover {
    transform: scale(1.05);
}

.luckvoraradh-footer .js-age-modal {
    backdrop-filter: blur(8px);
}

/* ===== PAGE: about ===== */
.luckvoraradh-about-page .about-intro-section { background: radial-gradient(circle at top right, rgba(138, 43, 226, 0.1), transparent 40%); } .luckvoraradh-about-page .value-card { backdrop-filter: blur(8px); background-color: rgba(26, 11, 46, 0.8); } .luckvoraradh-about-page h1, .luckvoraradh-about-page h2, .luckvoraradh-about-page h3 { text-shadow: 0 2px 4px rgba(0,0,0,0.5); } .luckvoraradh-about-page .team-card { cursor: default; } .luckvoraradh-about-page .core-values-section::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(138, 43, 226, 0.5), transparent); }

/* ===== PAGE: games ===== */
.games-page {
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
}

.games-page::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(138, 43, 226, 0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.games-page .container {
  position: relative;
  z-index: 2;
}

.games-page .games-controls input::placeholder {
  color: #A9A9A9;
}

.games-page .js-game-card {
  transform: translateY(0);
  box-shadow: 0 10px 30px -15px rgba(0,0,0,0.5);
}

.games-page .js-game-card:hover {
  transform: translateY(-8px);
}

/* ===== PAGE: help ===== */
.help-page-container {
  font-family: 'Montserrat', sans-serif;
}

.help-page-container h2 {
  font-family: 'Cinzel', serif;
}

.help-page-container .faq-item .js-faq-content {
  transition: all 0.3s ease-in-out;
}

.help-page-container .faq-item.is-active .js-faq-content {
  display: block;
}

.help-page-container .faq-item.is-active svg {
  transform: rotate(180deg);
}

.help-page-container .faq-item.is-active {
  border-color: #8A2BE2;
  background-color: rgba(26, 11, 46, 0.9);
}

.help-page-container .contact-info-content {
  position: relative;
}

@media (max-width: 767px) {
  .help-page-container .faq-grid {
    padding: 0 5px;
  }
}

/* ===== PAGE: news ===== */
.luckvoraradh-news {
    background-image: radial-gradient(circle at 50% 50%, rgba(138, 43, 226, 0.1) 0%, transparent 70%);
}

.luckvoraradh-news .news-card-glow {
    box-shadow: 0 0 15px rgba(138, 43, 226, 0.4);
}

.luckvoraradh-news .line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.luckvoraradh-news input::placeholder {
    color: #A9A9A9;
    opacity: 0.8;
}

@media (max-width: 767px) {
    .luckvoraradh-news .js-news-grid {
        gap: 1.5rem;
    }
}

/* ===== PAGE: how-to-play ===== */
.Luck-guide-intro .Luck-step-card:hover h3 {
  color: #FFD700;
}

.Luck-game-rules .Luck-accordion-trigger svg.rotate-180 {
  transform: rotate(180deg);
}

.Luck-game-rules .Luck-accordion-content {
  transition: all 0.3s ease-in-out;
}

.Luck-game-rules .Luck-progress-container {
  background: rgba(26, 11, 46, 0.6);
  backdrop-filter: blur(10px);
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 10px rgba(138, 43, 226, 0.4); }
  50% { box-shadow: 0 0 25px rgba(138, 43, 226, 0.7); }
}

.Luck-step-card {
  animation: pulse-glow 5s infinite ease-in-out;
}

@media (max-width: 768px) {
  .Luck-guide-intro h1 { font-size: 18px !important; }
  .Luck-game-rules h2 { font-size: 16px !important; }
  .Luck-guide-intro h3 { font-size: 14px !important; }
}

/* ===== PAGE: report ===== */
.luck-report-section {
  scroll-behavior: smooth;
}
.luck-report-section .luck-report-card {
  backdrop-filter: blur(10px);
}
.luck-report-section .luck-email-btn {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.luck-report-section .luck-email-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
  z-index: -1;
}
.luck-report-section .luck-email-btn:hover::before {
  left: 100%;
}
.luck-report-section .luck-report-card:hover {
  box-shadow: 0 0 25px rgba(138, 43, 226, 0.6);
  border-color: rgba(138, 43, 226, 0.8);
}
.luck-report-section h1, .luck-report-section h2, .luck-report-section h3 {
  color: #F8F8FF !important;
}
.luck-report-section .luck-warning-box {
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.3);
}

/* ===== PAGE: privacy ===== */
.privacy-content-section { background-image: radial-gradient(circle at 50% 50%, #1A0B2E 0%, #0B041A 100%); }
.privacy-content-section .privacy-card { backdrop-filter: blur(8px); }
.privacy-content-section .privacy-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(138, 43, 226, 0.3); }
.privacy-content-section .js-contact-btn { box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.5); }

/* ===== PAGE: terms ===== */
.terms-section .terms-card {
  background: rgba(26, 11, 46, 0.85);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}
.terms-section .terms-block h2 {
  text-shadow: 0 0 10px rgba(0, 206, 209, 0.3);
  letter-spacing: 1px;
}
.terms-section .terms-block p {
  line-height: 1.8;
  color: #DCDCDC;
}
.terms-section ::selection {
  background: #8A2BE2;
  color: #FFFFFF;
}
.terms-section .container {
  position: relative;
  z-index: 2;
}

/* ===== PAGE: disclaimer ===== */
.disclaimer-content-block .disclaimer-card {
  box-shadow: 0 0 30px rgba(138, 43, 226, 0.15), inset 0 2px 4px rgba(0, 0, 0, 0.3);
}
.disclaimer-content-block .js-accordion-trigger:hover .js-accordion-icon {
  transform: translateY(2px);
  color: #8A2BE2;
}
.disclaimer-content-block .js-accordion-item.active .js-accordion-icon {
  transform: rotate(180deg);
}
.disclaimer-content-block h1, .disclaimer-content-block h2 {
  letter-spacing: 0.05em;
  text-shadow: 0 0 10px rgba(138, 43, 226, 0.3);
}
.disclaimer-content-block .js-accordion-content {
  transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
}
@media (max-width: 768px) {
  .disclaimer-content-block .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* ===== PAGE: rgp ===== */
.rgp-content-block .checkbox:checked {
  background-color: #8A2BE2 !important;
  border-color: #00CED1 !important;
}

.rgp-content-block .js-result-box.success {
  background: rgba(50, 205, 50, 0.15);
  border: 1px solid #32CD32;
  color: #32CD32;
}

.rgp-content-block .js-result-box.warning {
  background: rgba(255, 165, 0, 0.15);
  border: 1px solid #FFA500;
  color: #FFA500;
}

@media (max-width: 767px) {
  .rgp-content-block h1 {
    hyphens: auto;
  }
}

.main-comment-wrapper {
    background: linear-gradient(145deg, #1A0B2E 0%, #0B041A 100%);
    position: relative;
    overflow: hidden;
}

.main-comment-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(138, 43, 226, 0.5), transparent);
}

.avatar-main {
    box-shadow: 0 0 15px rgba(138, 43, 226, 0.4);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    object-fit: cover;
}

.font-cinzel {
    font-family: 'Cinzel', serif;
}

.font-body {
    font-family: 'Montserrat', sans-serif;
}

.reply-comment-wrapper {
    backdrop-filter: blur(4px);
}

.reply-comment-wrapper::after {
    content: '';
    position: absolute;
    top: -20px;
    left: -30px;
    width: 20px;
    height: 40px;
    border-left: 2px solid rgba(138, 43, 226, 0.3);
    border-bottom: 2px solid rgba(138, 43, 226, 0.3);
    border-bottom-left-radius: 12px;
    pointer-events: none;
}

.avatar-reply {
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
    object-fit: cover;
}

.font-cinzel {
    font-family: 'Cinzel', serif;
}

.font-body {
    font-family: 'Montserrat', sans-serif;
}


/* ===== PAGE TEMPLATE: games ===== */
.luckvoraradh-nav-block {
    font-family: 'Montserrat', sans-serif;
}

.luckvoraradh-nav-block .js-dropdown-menu {
    animation: navFadeIn 0.2s ease-out;
}

@keyframes navFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.luckvoraradh-nav-block a {
    position: relative;
}

.luckvoraradh-nav-block nav>a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00CED1;
    transition: width 0.3s ease;
}

.luckvoraradh-nav-block nav>a:hover::after {
    width: 100%;
}

.luckvoraradh-nav-block .js-mobile-menu {
    height: calc(100vh - 70px);
}

.luckvoraradh-detail-template .iframe-wrapper {
    transition: box-shadow 0.3s ease;
}

.luckvoraradh-detail-template .stat-item {
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.luckvoraradh-detail-template .stat-item:hover {
    transform: translateY(-5px);
    border-color: #8A2BE2;
}

.luckvoraradh-content-rich h2 {
    border-left: 4px solid #00CED1;
    padding-left: 1rem;
}

.luckvoraradh-content-rich p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.shadow-glow_primary {
    box-shadow: 0 0 15px rgba(138, 43, 226, 0.4);
}

.shadow-glow_accent {
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.luckvoraradh-footer .disclaimer-block {
    transition: transform 0.3s ease;
}

.luckvoraradh-footer .disclaimer-block:hover {
    transform: translateY(-5px);
}

.luckvoraradh-footer a {
    transition: color 0.2s ease;
}

.luckvoraradh-footer .partner-logos-row img {
    filter: none !important;
    transition: transform 0.3s ease;
}

.luckvoraradh-footer .partner-logos-row img:hover {
    transform: scale(1.05);
}

.luckvoraradh-footer .js-age-modal {
    backdrop-filter: blur(8px);
}

/* ===== PAGE TEMPLATE: news ===== */
.luckvoraradh-nav-block .js-dropdown-menu {
    animation: navFadeIn 0.2s ease-out;
}

@keyframes navFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.luckvoraradh-nav-block nav>a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00CED1;
    transition: width 0.3s ease;
}

.luckvoraradh-nav-block nav>a:hover::after {
    width: 100%;
}

.luckvoraradh-article-body h2 {
    font-family: 'Cinzel', serif;
    color: #F8F8FF;
    line-height: 1.2;
}

.luckvoraradh-article-body p {
    font-family: 'Montserrat', sans-serif;
    color: #DCDCDC;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.luckvoraradh-article-body ul {
    list-style-type: none;
    padding-left: 0;
}

.luckvoraradh-article-body li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.luckvoraradh-article-body li::before {
    content: '•';
    color: #8A2BE2;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.shadow-glow_primary {
    box-shadow: 0 0 15px rgba(138, 43, 226, 0.4);
}

.shadow-glow_accent {
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.luckvoraradh-footer .disclaimer-block:hover {
    transform: translateY(-5px);
}

.luckvoraradh-footer .partner-logos-row img:hover {
    transform: scale(1.05);
}

.luckvoraradh-footer .js-age-modal {
    backdrop-filter: blur(8px);
}