:root {
    --primary: #6366f1;
    --secondary: #a855f7;
    --accent: #22d3ee;
    --bg-main: #0f172a;
    --bg-surface: #1e293b;
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --gradient-glow: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
}

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.heading-font {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
}

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

.section-spacer {
    padding: clamp(40px, 10vh, 120px) 0;
}

.glass-card {
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.5);
}

.btn-custom {
    background: var(--gradient-glow);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-custom:hover {
    opacity: 0.9;
    transform: scale(1.02);
    color: white;
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.4);
}

.hero-video-container {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* ===== header ===== */
.luckvanta-header {
    background-color: #0f172a;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 1030;
}

.luckvanta-header .navbar {
    padding: 0.75rem 0;
}

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

.luckvanta-header .luckvanta-brand-name {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: #f8fafc;
    letter-spacing: 1px;
}

.luckvanta-header .nav-link {
    font-family: 'Inter', sans-serif;
    color: #94a3b8;
    font-weight: 600;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

.luckvanta-header .nav-link:hover,
.luckvanta-header .nav-link.active,
.luckvanta-header .nav-link:focus,
.luckvanta-header .nav-link:active,
.luckvanta-header .nav-link.show,
.luckvanta-header .dropdown-toggle:hover,
.luckvanta-header .dropdown-toggle:focus,
.luckvanta-header .dropdown-toggle:active,
.luckvanta-header .dropdown-toggle.show {
    color: #6366f1 !important;
    background-color: transparent !important;
    background: transparent !important;
    outline: none !important;
    box-shadow: none !important;
}

.luckvanta-header .dropdown-menu {
    background-color: #1e293b;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.5);
    padding: 0.5rem 0;
    margin-top: 0.5rem;
}

.luckvanta-header .dropdown-item {
    color: #94a3b8;
    font-weight: 500;
    padding: 0.6rem 1.5rem;
    transition: all 0.3s ease;
}

.luckvanta-header .dropdown-item:hover {
    background-color: rgba(99, 102, 241, 0.1);
    color: #f8fafc;
}

.luckvanta-cta-btn {
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    color: #ffffff !important;
    border: none;
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.luckvanta-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
    color: #ffffff !important;
    opacity: 0.95;
}

.luckvanta-header .custom-toggler {
    border: none;
    padding: 0.5rem;
}

.luckvanta-header .custom-toggler:focus {
    box-shadow: none;
}

.luckvanta-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(248, 250, 252, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 991.98px) {
    .luckvanta-header .navbar-collapse {
        background-color: #1e293b;
        margin-top: 1rem;
        padding: 1rem;
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .luckvanta-header .nav-link {
        padding: 0.75rem 0 !important;
    }

    .luckvanta-header .dropdown-menu {
        background-color: transparent;
        border: none;
        box-shadow: none;
        padding-left: 1rem;
    }

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

/* ===== hero ===== */
.luckvanta-hero {
    min-height: 100vh;
    background-color: #0f172a;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    margin-top: 20px;
}

.luckvanta-hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.luckvanta-hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.luckvanta-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.85);
    z-index: 2;
}

.luckvanta-hero-headline {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.5rem, 8vw, 5rem);
    line-height: 1.1;
    font-weight: 700;
    color: #f8fafc;
    text-shadow: 0 0 20px rgba(99, 102, 241, 0.5);
}

.luckvanta-hero-headline .text-primary-glow {
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.luckvanta-hero-subtext {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #94a3b8;
    max-width: 600px;
    line-height: 1.6;
}

.luckvanta-btn-primary {
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    color: #ffffff;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Orbitron', sans-serif;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.3);
}

.luckvanta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(99, 102, 241, 0.5);
    color: #ffffff;
}

.luckvanta-link-secondary {
    color: #f8fafc;
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-weight: 500;
    transition: color 0.3s ease;
}

.luckvanta-link-secondary:hover {
    color: #22d3ee;
}

.luckvanta-hero-floating-cta {
    width: 160px;
    height: 160px;
    background: #6366f1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #ffffff;
    font-family: 'Orbitron', sans-serif;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 10;
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.6);
}

.luckvanta-hero-floating-cta:hover {
    transform: scale(1.15) rotate(5deg);
    color: #ffffff;
}

.cta-text {
    line-height: 1.2;
    font-size: 1.25rem;
}

.cta-pulse {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.4);
    z-index: -1;
    animation: luckvanta-pulse 2s infinite;
}

@keyframes luckvanta-pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

.luckvanta-hero-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 4;
}

.luckvanta-hero-divider svg {
    display: block;
    width: 100%;
    height: 60px;
}

@media (max-width: 768px) {
    .luckvanta-hero {
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
    }

    .luckvanta-hero-headline {
        font-size: 32px;
    }

    .luckvanta-hero-subtext {
        font-size: 14px;
    }

    .luckvanta-hero-divider svg {
        height: 30px;
    }
}

/* ===== registration ===== */
.registration-block {
    background: linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.9)),
    url('../static/graphics/pics/luckvanta-registration-background.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.registration-block .registration-card {
    background: #1e293b;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
}

.registration-block .registration-title {
    font-family: 'Orbitron', sans-serif;
    color: #f8fafc;
    font-size: clamp(20px, 4vw, 32px);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.registration-block .registration-subtitle {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.5;
}

.registration-block .form-label {
    color: #f8fafc;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.registration-block .input-group-text {
    background-color: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #6366f1;
    border-right: none;
}

.registration-block .form-control {
    background-color: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #f8fafc;
    padding: 0.75rem 1rem;
}

.registration-block .form-control:focus {
    background-color: #0f172a;
    border-color: #6366f1;
    box-shadow: 0 0 0 0.25rem rgba(99, 102, 241, 0.25);
    color: #f8fafc;
}

.registration-block .form-control::placeholder {
    color: #64748b;
    opacity: 1;
}

.registration-block .form-check-label {
    color: #94a3b8;
    font-size: 0.85rem;
}

.registration-block .registration-link {
    color: #22d3ee;
    text-decoration: none;
    transition: color 0.3s ease;
}

.registration-block .registration-link:hover {
    color: #6366f1;
}

.registration-block .btn-registration {
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    border: none;
    color: #ffffff;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 8px;
}

.registration-block .btn-registration:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.4);
    color: #ffffff;
}

.registration-block .registration-disclaimer {
    color: #64748b;
    font-size: 0.75rem;
    line-height: 1.4;
    margin-bottom: 0;
}

.registration-block .text-info {
    color: #22d3ee !important;
}

@media (max-width: 768px) {
    .registration-block {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .registration-block .registration-card {
        padding: 2rem 1.5rem;
    }
}

/* ===== games-preview ===== */
.luckvanta-games-preview {
    background-color: #0f172a;
    color: #f8fafc;
    overflow: hidden;
}

.luckvanta-games-preview .luckvanta-title {
    font-family: 'Orbitron', sans-serif;
    color: #6366f1;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
}

.luckvanta-games-preview .luckvanta-subtitle {
    color: #94a3b8;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.luckvanta-games-preview .luckvanta-disclaimer {
    background: rgba(99, 102, 241, 0.05);
    border: 1px solid rgba(99, 102, 241, 0.2);
    color: #94a3b8;
    font-size: 0.9rem;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.5;
}

.luckvanta-games-preview .luckvanta-card-link {
    text-decoration: none;
    display: block;
    height: 100%;
}

.luckvanta-games-preview .luckvanta-game-card {
    background: #1e293b;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
}

.luckvanta-games-preview .luckvanta-game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px -10px rgba(99, 102, 241, 0.3);
    border-color: rgba(99, 102, 241, 0.4);
}

.luckvanta-games-preview .luckvanta-img-container {
    position: relative;
    width: 100%;
    padding-top: 65%;
    overflow: hidden;
}

.luckvanta-games-preview .luckvanta-game-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.luckvanta-games-preview .luckvanta-game-card:hover .luckvanta-game-img {
    transform: scale(1.1);
}

.luckvanta-games-preview .luckvanta-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.luckvanta-games-preview .luckvanta-game-name {
    font-family: 'Orbitron', sans-serif;
    color: #f8fafc;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.luckvanta-games-preview .luckvanta-game-card:hover .luckvanta-game-name {
    color: #22d3ee;
}

.luckvanta-games-preview .luckvanta-meta-text {
    color: #64748b;
    font-size: 0.8rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .luckvanta-games-preview .luckvanta-title {
        font-size: 1.25rem;
    }

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

    .luckvanta-games-preview .luckvanta-disclaimer {
        font-size: 0.8rem;
        padding: 1.5rem !important;
    }
}

/* ===== features ===== */
.luckvanta-features {
    background-color: #0f172a;
    position: relative;
    overflow: hidden;
}

.luckvanta-heading {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.luckvanta-subtext {
    color: #94a3b8;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.luckvanta-card {
    background: #1e293b;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    position: relative;
}

.luckvanta-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px -5px rgba(99, 102, 241, 0.3);
    border-color: #6366f1;
}

.luckvanta-icon-box {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: #fff;
    font-size: 1.8rem;
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.4);
}

.luckvanta-card-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.25rem;
}

.luckvanta-card-desc {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.6;
}

.luckvanta-disclaimer {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #64748b;
    font-size: 0.85rem;
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .luckvanta-heading {
        font-size: 1.25rem;
    }

    .luckvanta-subtext {
        font-size: 0.9rem;
    }

    .luckvanta-card {
        padding: 1.5rem !important;
    }
}

/* ===== footer ===== */
.luckvanta-footer {
    background-color: #0f172a;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-family: 'Inter', sans-serif;
    color: #f8fafc;
}

.luckvanta-disclaimer-box {
    background: rgba(30, 41, 59, 0.8);
    border: 2px solid #6366f1;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 50px;
}

.luckvanta-disclaimer-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: #f59e0b;
}

.luckvanta-disclaimer-header h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.25rem;
    margin: 0;
    color: #f8fafc;
}

.luckvanta-disclaimer-content p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #94a3b8;
    margin-bottom: 10px;
}

.luckvanta-org-logos {
    padding: 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 40px;
}

.luckvanta-org-logos img {
    max-width: 130px;
    height: auto;
    display: block;
    filter: none;
    transition: transform 0.3s ease;
}

.luckvanta-org-logos img:hover {
    transform: scale(1.05);
}

.luckvanta-age-badge {
    width: 50px;
    height: 50px;
    border: 3px solid #ef4444;
    color: #ef4444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.luckvanta-footer-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    color: #f8fafc;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.luckvanta-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.luckvanta-footer-links li {
    margin-bottom: 12px;
}

.luckvanta-footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.luckvanta-footer-links a:hover {
    color: #6366f1;
}

.luckvanta-footer-desc {
    color: #94a3b8;
    line-height: 1.6;
    font-size: 0.95rem;
}

.luckvanta-footer-brand img {
    max-width: 85px;
    height: auto;
    object-fit: contain;
}

.luckvanta-copyright {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 40px;
    color: #64748b;
    font-size: 0.85rem;
}

.luckvanta-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.98);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.luckvanta-modal-content {
    background: #1e293b;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.luckvanta-modal-content h2 {
    font-family: 'Orbitron', sans-serif;
    color: #f8fafc;
    margin-bottom: 20px;
}

.luckvanta-modal-content p {
    color: #94a3b8;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.luckvanta-modal-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.luckvanta-btn-primary {
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s;
}

.luckvanta-btn-secondary {
    background: #334155;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s;
}

.luckvanta-btn-primary:hover,
.luckvanta-btn-secondary:hover {
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .luckvanta-modal-content {
        padding: 30px 20px;
    }

    .luckvanta-modal-buttons {
        flex-direction: column;
    }
}

.luckvanta-hero-section {
    background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.9)),
    url('{{hero-bg}}') center/cover no-repeat;
    padding: 120px 0 80px;
    text-align: center;
}

.luckvanta-hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: #f8fafc;
    margin-bottom: 20px;
}

.luckvanta-hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    color: #94a3b8;
    max-width: 700px;
    margin: 0 auto;
}

.luckvanta-section-heading {
    font-family: 'Orbitron', sans-serif;
    color: #f8fafc;
    margin-bottom: 30px;
}

.luckvanta-filter-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.luckvanta-filter-btn {
    background: #1e293b;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
    padding: 8px 20px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.luckvanta-filter-btn.active,
.luckvanta-filter-btn:hover {
    background: #6366f1;
    color: #fff;
    border-color: #6366f1;
}

.luckvanta-game-card {
    background: #1e293b;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    transition: transform 0.3s ease;
}

.luckvanta-game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.luckvanta-game-img-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.luckvanta-game-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.luckvanta-game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.luckvanta-game-card:hover .luckvanta-game-overlay {
    opacity: 1;
}

.luckvanta-play-btn {
    background: #6366f1;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
}

.luckvanta-game-info {
    padding: 20px;
}

.luckvanta-game-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    color: #f8fafc;
    margin-bottom: 8px;
}

.luckvanta-game-meta {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 15px;
}

.luckvanta-details-link {
    display: inline-block;
    background: transparent;
    border: 1px solid #6366f1;
    color: #6366f1;
    padding: 6px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.luckvanta-details-link:hover {
    background: #6366f1;
    color: #fff;
}

.luckvanta-iframe-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    background: #000;
}

.luckvanta-iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.luckvanta-article-body {
    color: #94a3b8;
    line-height: 1.8;
    font-family: 'Inter', sans-serif;
}

.luckvanta-sidebar-card {
    background: #1e293b;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.luckvanta-sidebar-title {
    font-family: 'Orbitron', sans-serif;
    color: #f8fafc;
    font-size: 1.1rem;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

.luckvanta-meta-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.luckvanta-meta-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: #94a3b8;
}

.luckvanta-meta-list strong {
    color: #f8fafc;
}

.luckvanta-rec-item {
    display: flex;
    gap: 15px;
    text-decoration: none;
    margin-bottom: 15px;
    align-items: center;
}

.luckvanta-rec-item img {
    border-radius: 6px;
    object-fit: cover;
}

.luckvanta-rec-item h5 {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    color: #f8fafc;
    margin: 0;
}

.luckvanta-rec-item span {
    font-size: 0.75rem;
    color: #64748b;
}

.luckvanta-comment-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.luckvanta-comment-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.luckvanta-author {
    font-weight: 700;
    color: #6366f1;
}

.luckvanta-date {
    font-size: 0.8rem;
    color: #64748b;
}

.luckvanta-comment-text {
    color: #94a3b8;
    font-size: 0.95rem;
    margin: 0;
}


/* ===== PAGE: about ===== */
.about-mission-section {
  background-color: #0f172a;
  color: #f8fafc;
  font-family: 'Inter', sans-serif;
}

.about-mission-section .about-heading {
  font-family: 'Orbitron', sans-serif;
  color: #6366f1;
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.about-mission-section .about-lead {
  font-size: 1.2rem;
  line-height: 1.6;
}

.about-mission-section .about-text {
  font-size: 1rem;
  line-height: 1.8;
}

.about-mission-section .stat-number {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  color: #22d3ee;
  font-weight: 700;
}

.about-mission-section .stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: #94a3b8;
  letter-spacing: 1px;
}

.about-mission-section .about-image-container {
  aspect-ratio: 16/10;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-mission-section .image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.6), transparent);
}

.about-mission-section .value-card {
  background: #1e293b;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-mission-section .value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border-color: #6366f1;
}

.about-mission-section .value-icon {
  font-size: 2.5rem;
  background: linear-gradient(135deg, #6366f1, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-mission-section .value-card h3 {
  font-family: 'Orbitron', sans-serif;
  color: #f8fafc;
}

.about-mission-section .responsible-gaming-block {
  background: linear-gradient(180deg, rgba(30, 41, 59, 0.8) 0%, rgba(30, 41, 59, 1) 100%);
  border: 1px solid rgba(99, 102, 241, 0.2);
}

.about-mission-section .responsible-gaming-block h2 {
  font-family: 'Orbitron', sans-serif;
  color: #f8fafc;
}

.about-mission-section .btn-primary {
  background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
  border: none;
  font-family: 'Orbitron', sans-serif;
  font-weight: 500;
  transition: filter 0.3s ease;
}

.about-mission-section .btn-primary:hover {
  filter: brightness(1.2);
}

.about-mission-section .btn-outline-secondary {
  border: 1px solid #6366f1;
  color: #f8fafc;
  font-family: 'Orbitron', sans-serif;
  background: transparent;
}

.about-mission-section .btn-outline-secondary:hover {
  background: rgba(99, 102, 241, 0.1);
  border-color: #a855f7;
}

/* ===== PAGE: achievements ===== */
.achievements-section { padding: clamp(40px, 10vh, 120px) 0; background-color: #0f172a; min-height: 80vh; } .achievements-section__title { font-family: 'Orbitron', sans-serif; color: #f8fafc; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; } .achievements-section__subtitle { color: #94a3b8; font-size: 1.1rem; max-width: 600px; margin: 0 auto; line-height: 1.6; } .search-wrapper { position: relative; } .search-wrapper__icon { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); color: #64748b; } .achievements-section__search { background: #1e293b; border: 1px solid rgba(255, 255, 255, 0.08); color: #f8fafc; padding: 12px 12px 12px 45px; border-radius: 8px; transition: border-color 0.3s ease; } .achievements-section__search:focus { background: #1e293b; border-color: #6366f1; color: #f8fafc; box-shadow: 0 0 0 0.25rem rgba(99, 102, 241, 0.25); outline: none; } .achievements-section__search::placeholder { color: #64748b; } .filter-btn { background: #1e293b; border: 1px solid rgba(255, 255, 255, 0.08); color: #94a3b8; padding: 8px 20px; border-radius: 50px; font-weight: 600; transition: all 0.3s ease; } .filter-btn:hover { background: #2d3e5a; color: #f8fafc; } .filter-btn.active { background: #6366f1; color: #ffffff; border-color: #6366f1; box-shadow: 0 0 15px rgba(99, 102, 241, 0.4); } .achievement-card { background: #1e293b; border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 16px; padding: 24px; transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.5s ease; position: relative; overflow: hidden; } .achievement-card:hover { transform: translateY(-8px) scale(1.02); box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.5); border-color: rgba(99, 102, 241, 0.3); } .achievement-card__header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 20px; } .achievement-card__icon { width: 48px; height: 48px; border-radius: 12px; background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: #22d3ee; border: 1px solid rgba(34, 211, 238, 0.2); } .achievement-card__badge { background: rgba(100, 116, 139, 0.2); color: #94a3b8; font-size: 0.75rem; font-weight: 700; padding: 4px 12px; border-radius: 20px; text-transform: uppercase; } .achievement-card__title { font-family: 'Orbitron', sans-serif; color: #f8fafc; font-size: 1.25rem; margin-bottom: 12px; } .achievement-card__text { color: #94a3b8; font-size: 0.9rem; line-height: 1.5; margin-bottom: 20px; height: 3em; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; } .achievement-card__progress-info { display: flex; justify-content: space-between; color: #64748b; font-size: 0.8rem; font-weight: 600; margin-bottom: 8px; text-transform: uppercase; } .achievement-card .progress { height: 8px; background: rgba(15, 23, 42, 0.5); border-radius: 4px; border: 1px solid rgba(255, 255, 255, 0.05); } .achievement-card .progress-bar { background: linear-gradient(90deg, #6366f1 0%, #a855f7 100%); border-radius: 4px; } @media (max-width: 767px) { .achievements-section__title { font-size: 1.5rem; } .achievements-section__subtitle { font-size: 0.95rem; } .achievement-card__text { height: auto; -webkit-line-clamp: unset; } }

/* ===== PAGE: events ===== */
.events-calendar-section { background-color: #0f172a; color: #f8fafc; overflow: hidden; }
.events-calendar-section__hero-title { font-family: 'Orbitron', sans-serif; color: #6366f1; text-transform: uppercase; font-weight: 700; }
.events-calendar-section__hero-subtitle { color: #94a3b8; font-size: 1.1rem; max-width: 700px; margin: 0 auto; }
.events-calendar-section__filter-btn { background: #1e293b; border: 1px solid rgba(99, 102, 241, 0.3); color: #f8fafc; padding: 10px 24px; border-radius: 30px; transition: all 0.3s ease; font-weight: 600; cursor: pointer; }
.events-calendar-section__filter-btn:hover { background: rgba(99, 102, 241, 0.2); border-color: #6366f1; }
.events-calendar-section__filter-btn.active { background: #6366f1; border-color: #6366f1; color: #ffffff; box-shadow: 0 0 15px rgba(99, 102, 241, 0.4); }
.events-calendar-section__card { background: #1e293b; border-radius: 16px; border: 1px solid rgba(255, 255, 255, 0.08); height: 100%; display: flex; flex-direction: column; transition: transform 0.3s ease, box-shadow 0.3s ease; isolation: isolate; }
.events-calendar-section__card:hover { transform: translateY(-8px); box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4); border-color: rgba(99, 102, 241, 0.4); }
.events-calendar-section__img-wrapper { position: relative; width: 100%; height: 200px; overflow: hidden; border-radius: 16px 16px 0 0; }
.events-calendar-section__img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.events-calendar-section__card:hover .events-calendar-section__img-wrapper img { transform: scale(1.1); }
.events-calendar-section__badge { position: absolute; top: 15px; left: 15px; background: rgba(168, 85, 247, 0.9); padding: 4px 12px; border-radius: 20px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.events-calendar-section__content { padding: 1.5rem; display: flex; flex-direction: column; flex-grow: 1; }
.events-calendar-section__date { color: #22d3ee; font-size: 0.85rem; margin-bottom: 0.75rem; font-weight: 600; }
.events-calendar-section__card-title { font-family: 'Orbitron', sans-serif; color: #f8fafc; font-size: 1.25rem; margin-bottom: 0.75rem; }
.events-calendar-section__card-desc { color: #94a3b8; font-size: 0.95rem; line-height: 1.5; margin-bottom: 0; }
@media (max-width: 767px) {
  .events-calendar-section__hero-title { font-size: 1.25rem; }
  .events-calendar-section__hero-subtitle { font-size: 0.9rem; }
  .events-calendar-section__card-title { font-size: 1.1rem; }
}

/* ===== PAGE: chat ===== */
.chat-board-section {
  background-color: #0f172a;
  min-height: 80vh;
}
.chat-board-section .chat-board-title {
  font-family: 'Orbitron', sans-serif;
  color: #f8fafc;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}
.chat-board-section .sidebar-status-card {
  background: #1e293b;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  height: 100%;
}
.chat-board-section .sidebar-heading {
  font-family: 'Orbitron', sans-serif;
  color: #f8fafc;
  letter-spacing: 1px;
}
.chat-board-section .status-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.chat-board-section .status-online {
  background-color: #10b981;
  box-shadow: 0 0 8px #10b981;
}
.chat-board-section .status-away {
  background-color: #f59e0b;
}
.chat-board-section .avatar-sm {
  width: 32px;
  height: 32px;
}
.chat-board-section .avatar-md {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}
.chat-board-section .avatar-sm img,
.chat-board-section .avatar-md img {
  object-fit: cover;
  border: 2px solid #6366f1;
}
.chat-board-section .chat-main-container {
  background: #1e293b;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  height: 600px;
  max-height: 70vh;
  overflow: hidden;
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.5);
}
.chat-board-section .chat-messages-area {
  flex-grow: 1;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #6366f1 #1e293b;
}
.chat-board-section .chat-messages-area::-webkit-scrollbar {
  width: 6px;
}
.chat-board-section .chat-messages-area::-webkit-scrollbar-track {
  background: #1e293b;
}
.chat-board-section .chat-messages-area::-webkit-scrollbar-thumb {
  background-color: #6366f1;
  border-radius: 10px;
}
.chat-board-section .message-user-name {
  font-family: 'Orbitron', sans-serif;
  color: #6366f1;
  font-size: 0.95rem;
}
.chat-board-section .message-time {
  font-size: 0.75rem;
  color: #64748b;
}
.chat-board-section .message-text {
  color: #f8fafc;
  line-height: 1.5;
  background: rgba(255, 255, 255, 0.03);
  padding: 10px 15px;
  border-radius: 0 12px 12px 12px;
  display: inline-block;
}
.chat-board-section .chat-input-area {
  background: rgba(15, 23, 42, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.chat-board-section .form-control {
  background-color: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #f8fafc;
  padding: 12px 18px;
  resize: none;
  transition: border-color 0.3s ease;
}
.chat-board-section .form-control:focus {
  background-color: #0f172a;
  border-color: #6366f1;
  color: #f8fafc;
  box-shadow: 0 0 0 0.25rem rgba(99, 102, 241, 0.25);
}
.chat-board-section .form-control::placeholder {
  color: #64748b;
}
.chat-board-section .btn-primary {
  background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
  border: none;
  font-family: 'Orbitron', sans-serif;
  font-weight: 500;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.chat-board-section .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}
@media (max-width: 768px) {
  .chat-board-section .chat-main-container {
    height: 500px;
  }
  .chat-board-section .chat-board-title {
    font-size: 1.5rem;
  }
}

/* ===== PAGE: tournaments ===== */
.history-list { background-color: #0f172a; position: relative; overflow: hidden; } .history-list .font-heading { font-family: 'Orbitron', sans-serif; color: #f8fafc; } .history-list__controls { background: #1e293b; border: 1px solid rgba(255, 255, 255, 0.08); box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); } .history-list__controls .form-control, .history-list__controls .form-select { background-color: #0f172a; border: 1px solid rgba(99, 102, 241, 0.3); color: #f8fafc; } .history-list__controls .form-control::placeholder { color: #64748b; } .history-list__controls .form-control:focus, .history-list__controls .form-select:focus { border-color: #6366f1; box-shadow: 0 0 0 0.25rem rgba(99, 102, 241, 0.25); color: #f8fafc; } .history-list__card { background: #1e293b; border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 12px; transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease; } .history-list__card:hover { transform: translateY(-5px); border-color: #6366f1; box-shadow: 0 10px 30px -5px rgba(99, 102, 241, 0.2); } .history-list__img-wrapper { height: 180px; overflow: hidden; border-top-left-radius: 12px; border-top-right-radius: 12px; border-bottom: 2px solid #6366f1; } .history-list__img-wrapper img { height: 100%; object-fit: cover; } .history-list__card .badge { background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%); color: #fff; font-weight: 600; padding: 0.5rem 0.8rem; border-radius: 6px; } .history-list__avatar { width: 42px; height: 42px; border-radius: 50%; border: 2px solid #6366f1; background-color: #0f172a; object-fit: cover; } .history-list__card h2 { color: #f8fafc; font-family: 'Orbitron', sans-serif; } .text-accent { color: #22d3ee; } .history-list .border-secondary { border-color: rgba(148, 163, 184, 0.1) !important; }

/* ===== PAGE: privacy ===== */
.privacy-section { background-color: #0f172a; color: #f8fafc; font-family: 'Inter', sans-serif; }
.privacy-section .privacy-card { background: #1e293b; border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 16px; box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.5); backdrop-filter: blur(12px); }
.privacy-section .privacy-title { font-family: 'Orbitron', sans-serif; color: #6366f1; font-size: clamp(1.8rem, 5vw, 2.5rem); text-align: center; text-transform: uppercase; letter-spacing: 2px; }
.privacy-section h3 { font-family: 'Orbitron', sans-serif; color: #a855f7; font-size: 1.25rem; margin-bottom: 1rem; display: flex; align-items: center; }
.privacy-section h3 i { color: #22d3ee; font-size: 1rem; }
.privacy-section p, .privacy-section li { color: #94a3b8; line-height: 1.8; margin-bottom: 1rem; }
.privacy-section ul { padding-left: 1.25rem; }
.privacy-section li { margin-bottom: 0.5rem; list-style-type: square; }
.privacy-section .btn-privacy-action { background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%); color: #ffffff; border: none; padding: 12px 32px; border-radius: 8px; font-weight: 600; text-transform: uppercase; font-family: 'Orbitron', sans-serif; transition: all 0.3s ease; letter-spacing: 1px; }
.privacy-section .btn-privacy-action:hover { transform: scale(1.05); box-shadow: 0 0 15px rgba(99, 102, 241, 0.5); opacity: 0.9; }

/* ===== PAGE: terms ===== */
.terms-section {
  background-color: #0f172a;
  color: #f8fafc;
  min-height: 100vh;
}

.terms-section .terms-card {
  background: #1e293b;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: clamp(24px, 5vw, 60px);
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.5);
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0) 100%);
}

.terms-section .terms-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(24px, 4vw, 40px);
  color: #6366f1;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.terms-section .terms-updated {
  color: #94a3b8;
  font-size: 0.9rem;
  font-weight: 300;
}

.terms-section .terms-subtitle {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.25rem;
  color: #22d3ee;
  margin-bottom: 1.2rem;
  border-left: 4px solid #a855f7;
  padding-left: 15px;
}

.terms-section .terms-text {
  line-height: 1.8;
  color: #f8fafc;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.terms-section .terms-list {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 2rem;
}

.terms-section .terms-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  color: #94a3b8;
  line-height: 1.6;
}

.terms-section .terms-list li::before {
  content: '\f058';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #10b981;
}

@media (max-width: 767px) {
  .terms-section .terms-title {
    font-size: 22px;
  }
  .terms-section .terms-subtitle {
    font-size: 1.1rem;
  }
  .terms-section .terms-card {
    padding: 20px;
  }
}

/* ===== PAGE: disclaimer ===== */
.disclaimer-content { background-color: #0f172a; min-height: 100vh; position: relative; overflow: hidden; }.disclaimer-card { background: #1e293b; border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 16px; padding: clamp(20px, 5vw, 60px); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4); position: relative; z-index: 2; backdrop-filter: blur(12px); }.disclaimer-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, #6366f1, transparent); }.disclaimer-header h1 { font-family: 'Orbitron', sans-serif; font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 700; color: #f8fafc; text-transform: uppercase; letter-spacing: 2px; }.disclaimer-divider { height: 4px; width: 60px; background: linear-gradient(90deg, #6366f1, #a855f7); border-radius: 2px; margin-bottom: 1.5rem; }.disclaimer-block h2 { font-family: 'Orbitron', sans-serif; font-weight: 600; letter-spacing: 1px; color: #22d3ee !important; margin-bottom: 1rem; border-left: 3px solid #6366f1; padding-left: 15px; }.disclaimer-block p { font-family: 'Inter', sans-serif; font-size: 1rem; line-height: 1.8; color: #94a3b8; margin-bottom: 0; }.disclaimer-footer p { color: #64748b; margin-bottom: 0; }.js-reveal-content { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1); }.js-reveal-content.active { opacity: 1; transform: translateY(0); }@media (max-width: 768px) { .disclaimer-block h2 { font-size: 1.1rem; } .disclaimer-block p { font-size: 0.95rem; } }

/* ===== PAGE: rgp ===== */
.rgp-content-section {
    background-color: #0f172a;
    font-family: 'Inter', sans-serif;
    color: #f8fafc;
}

.rgp-content-section .rgp-card {
    background: #1e293b;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    position: relative;
}

.rgp-content-section .rgp-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, #6366f1, #a855f7);
}

.rgp-content-section .rgp-main-title {
    font-family: 'Orbitron', sans-serif;
    color: #6366f1;
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.rgp-content-section .rgp-section-title {
    font-family: 'Orbitron', sans-serif;
    color: #a855f7;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid #6366f1;
    padding-left: 1rem;
}

.rgp-content-section .rgp-lead {
    color: #94a3b8;
    font-size: 1.125rem;
    line-height: 1.6;
}

.rgp-content-section .rgp-feature-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, background 0.3s ease;
}

.rgp-content-section .rgp-feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.06);
}

.rgp-content-section .rgp-feature-icon {
    font-size: 2.5rem;
    color: #22d3ee;
}

.rgp-content-section .rgp-feature-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #f8fafc;
}

.rgp-content-section .rgp-feature-text {
    font-size: 0.9rem;
    color: #94a3b8;
    margin-bottom: 0;
}

.rgp-content-section .rgp-list {
    list-style: none;
    padding-left: 0;
}

.rgp-content-section .rgp-list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 1rem;
    color: #94a3b8;
}

.rgp-content-section .rgp-list li::before {
    content: '\f058';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #10b981;
}

.rgp-content-section .form-check-input {
    background-color: #334155;
    border-color: #475569;
}

.rgp-content-section .form-check-input:checked {
    background-color: #6366f1;
    border-color: #6366f1;
}

.rgp-content-section .rgp-btn-outline {
    color: #f8fafc;
    border: 1px solid #6366f1;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.rgp-content-section .rgp-btn-outline:hover {
    background: #6366f1;
    color: #fff;
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.4);
}

.rgp-content-section .rgp-btn-danger {
    background-color: transparent;
    color: #ef4444;
    border: 1px solid #ef4444;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.rgp-content-section .rgp-btn-danger:hover {
    background-color: #ef4444;
    color: #fff;
}

.rgp-content-section .rgp-resource-link {
    display: block;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.rgp-content-section .rgp-resource-link:hover {
    color: #22d3ee;
    border-color: #22d3ee;
}

.rgp-content-section .modal-content {
    background: #1e293b;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    color: #f8fafc;
}

.main-comment-card {
    background: #1e293b;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.5);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    position: relative;
    overflow: hidden;
}

.main-comment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
}

.main-comment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px -5px rgba(99, 102, 241, 0.2);
    border-color: rgba(99, 102, 241, 0.3);
}

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

.comment-username {
    font-family: 'Orbitron', sans-serif;
    color: #f8fafc;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

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

.comment-text {
    color: #94a3b8;
    line-height: 1.6;
    font-size: 0.95rem;
}

.btn-action {
    color: #22d3ee;
    padding: 0;
    border: none;
    background: transparent;
    font-weight: 600;
    transition: color 0.3s ease;
}

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

.reply-comment-card {
    background: rgba(15, 23, 42, 0.5);
    border-left: 3px solid #a855f7;
    border-radius: 0 8px 8px 0;
    padding: 1rem;
    backdrop-filter: blur(12px);
}

.reply-avatar {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.reply-username {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: #f8fafc;
    font-size: 0.9rem;
}

.reply-text {
    color: #94a3b8;
    font-size: 0.875rem;
    line-height: 1.5;
}

.reply-comment-wrapper {
    position: relative;
}

.reply-comment-wrapper::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(168, 85, 247, 0.2);
}


/* ===== PAGE TEMPLATE: games ===== */
.luckvanta-game-page {
    background-color: #0f172a;
    color: #f8fafc;
    font-family: 'Inter', sans-serif;
}

.luckvanta-game-hero {
    padding-top: 80px;
    background: #000;
}

.luckvanta-iframe-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
    background: #1e293b;
    overflow: hidden;
}

.luckvanta-iframe-wrapper iframe {
    width: 100%;
    height: 100%;
}

.luckvanta-iframe-controls {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    z-index: 10;
}

.luckvanta-control-btn {
    background: rgba(15, 23, 42, 0.8);
    color: #f8fafc;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.luckvanta-control-btn:hover {
    background: #6366f1;
    color: #fff;
}

.luckvanta-info-card,
.luckvanta-sidebar-card,
.luckvanta-comments-container {
    background: #1e293b;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.5);
}

.luckvanta-title-main {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: #6366f1;
}

.luckvanta-subtitle {
    color: #94a3b8;
    font-size: 1.1rem;
}

.luckvanta-content-area h3 {
    font-family: 'Orbitron', sans-serif;
    color: #f8fafc;
    margin-bottom: 1.5rem;
}

.luckvanta-content-area p {
    line-height: 1.8;
    color: #94a3b8;
}

.luckvanta-sidebar-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.25rem;
    color: #a855f7;
}

.luckvanta-details-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.luckvanta-details-list li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.luckvanta-details-list li:last-child {
    border-bottom: none;
}

.luckvanta-details-list .label {
    color: #64748b;
    font-weight: 600;
}

.luckvanta-details-list .value {
    color: #f8fafc;
}


.main-comment-card {
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    background: rgba(30, 41, 59, 0.5);
}

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

.comment-username {
    font-weight: 700;
    color: #f8fafc;
}

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

.comment-text {
    color: #94a3b8;
    line-height: 1.6;
}

.btn-action {
    color: #94a3b8;
    transition: color 0.3s ease;
}

.btn-action:hover {
    color: #6366f1;
}

.luckvanta-comment-form input,
.luckvanta-comment-form textarea {
    background-color: #0f172a !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #f8fafc !important;
}

.luckvanta-comment-form input::placeholder,
.luckvanta-comment-form textarea::placeholder {
    color: #475569 !important;
}


.luckvanta-iframe-wrapper.is-fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
}

@media (max-width: 768px) {
    .luckvanta-iframe-wrapper {
        height: 350px;
    }

    .comment-avatar {
        width: 45px;
        height: 45px;
    }
}