:root {
    --primary-palette: #03A9F4;
    --background-main: #F0F8FF;
    --background-secondary: #E1F5FE;
    --text-dark-primary: #1A237E;
    --text-dark-secondary: #546E7A;
    --text-light-primary: #FFFFFF;
    --text-light-secondary: #B0BEC5;
    --accent-color: #03A9F4;
    --cta-glow: rgba(3, 169, 244, 0.5);
    --border-color: #B3E5FC;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background-main);
    color: var(--text-dark-primary);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.text-muted {
    color: #6c757d !important;
}

.luckvoratyz-global-transition {
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ===== header ===== */
.luckvoratyz-header {
    z-index: 1050;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.luckvoratyz-header .disclaimer-bar {
    background-color: #1A237E;
    color: #FFFFFF;
}

.luckvoratyz-header .disclaimer-text {
    font-size: 0.75rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.luckvoratyz-header .navbar {
    background-color: #FFFFFF;
    padding: 0.75rem 0;
    border-bottom: 1px solid #B3E5FC;
}

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

.luckvoratyz-header .brand-name {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #1A237E;
    letter-spacing: -0.5px;
}

.luckvoratyz-header .nav-link {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: #546E7A;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.luckvoratyz-header .nav-link:hover,
.luckvoratyz-header .nav-link.active {
    color: #03A9F4;
}

.luckvoratyz-header .navbar-toggler {
    border: none;
    font-size: 1.75rem;
    color: #1A237E;
    padding: 0;
}

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

.luckvoratyz-header .btn-primary {
    background-color: #03A9F4;
    border: none;
    color: #FFFFFF;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(3, 169, 244, 0.3);
    text-transform: uppercase;
    font-size: 0.85rem;
}

.luckvoratyz-header .btn-primary:hover {
    background-color: #0288D1;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(3, 169, 244, 0.4);
}

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

    .luckvoratyz-header .nav-link {
        padding: 0.75rem 0;
        border-bottom: 1px solid #F0F8FF;
    }

    .luckvoratyz-header .nav-cta {
        margin-top: 1.5rem;
        text-align: center;
    }

    .luckvoratyz-header .brand-name {
        font-size: 1.25rem;
    }
}

/* ===== hero ===== */
.luckvoratyz-hero {
    padding: 80px 0 40px;
    background-color: #F0F8FF;
    overflow: hidden;
    position: relative;
}

.luckvoratyz-title {
    font-family: 'Outfit', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: #1A237E;
    line-height: 1.2;
}

.luckvoratyz-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: #546E7A;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.luckvoratyz-btn {
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.luckvoratyz-btn-primary {
    background-color: #03A9F4;
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(3, 169, 244, 0.4);
    border: none;
}

.luckvoratyz-btn-primary:hover {
    background-color: #0288D1;
    transform: translateY(-2px);
    color: #FFFFFF;
}

.luckvoratyz-btn-outline {
    background-color: transparent;
    border: 2px solid #03A9F4;
    color: #03A9F4;
}

.luckvoratyz-btn-outline:hover {
    background-color: #E1F5FE;
    transform: translateY(-2px);
    color: #03A9F4;
}

.luckvoratyz-visual-wrapper {
    position: relative;
    padding: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.luckvoratyz-cloud-container {
    width: 100%;
    aspect-ratio: 16/9;
    clip-path: url(#cloud-clip);
    background: #FFFFFF;
    border-radius: 60px 60px 100px 100px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(26, 35, 126, 0.1);
    border: 8px solid #FFFFFF;
}

.luckvoratyz-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.luckvoratyz-decoration {
    position: absolute;
    color: #03A9F4;
    font-size: 32px;
    opacity: 0.6;
    animation: float 4s ease-in-out infinite;
}

.luckvoratyz-decoration-1 {
    top: 10%;
    left: 0;
    animation-delay: 0s;
}

.luckvoratyz-decoration-2 {
    bottom: 20%;
    right: 0;
    animation-delay: 1s;
}

.luckvoratyz-decoration-3 {
    top: 40%;
    right: -20px;
    animation-delay: 2s;
}

.luckvoratyz-disclaimer {
    font-size: 13px;
    color: #B0BEC5;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.4;
}

@keyframes float {

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

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

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

    .luckvoratyz-title {
        font-size: 28px;
    }

    .luckvoratyz-subtitle {
        font-size: 15px;
    }

    .luckvoratyz-cloud-container {
        border-radius: 30px;
    }

    .luckvoratyz-decoration {
        font-size: 24px;
    }
}

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

.luckvoratyz-features h2,
.luckvoratyz-features h3 {
    font-family: 'Outfit', sans-serif;
    color: #1A237E;
}

.luckvoratyz-features .text-dark-primary {
    color: #1A237E !important;
}

.luckvoratyz-features .text-dark-secondary {
    color: #546E7A !important;
    line-height: 1.6;
}

.luckvoratyz-features .feature-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid #B3E5FC;
    border-radius: 20px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 10px 30px rgba(3, 169, 244, 0.05);
}

.luckvoratyz-features .feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(3, 169, 244, 0.15);
    border-color: #03A9F4;
}

.luckvoratyz-features .icon-wrapper {
    width: 80px;
    height: 80px;
    background: #E1F5FE;
    border-radius: 50%;
    color: #03A9F4;
    font-size: 2.5rem;
    transition: background 0.3s ease, color 0.3s ease;
}

.luckvoratyz-features .feature-card:hover .icon-wrapper {
    background: #03A9F4;
    color: #FFFFFF;
}

.luckvoratyz-features .btn-primary {
    background-color: #03A9F4;
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(3, 169, 244, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.luckvoratyz-features .btn-primary:hover {
    background-color: #0288D1;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(3, 169, 244, 0.5);
}

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

    .luckvoratyz-features h3 {
        font-size: 1.25rem;
    }

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

/* ===== games-grid ===== */
.games-grid-section {
    background-color: #F0F8FF;
    font-family: 'Inter', sans-serif;
}

.games-grid-section .games-grid-title {
    font-family: 'Outfit', sans-serif;
    color: #1A237E;
    font-weight: 700;
}

.games-grid-section .games-grid-subtitle {
    color: #546E7A;
    max-width: 600px;
}

.games-grid-section .games-filter-wrapper .btn {
    background: transparent;
    color: #546E7A;
    border: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.games-grid-section .games-filter-wrapper .btn.active {
    background-color: #03A9F4;
    color: #FFFFFF;
    box-shadow: 0 4px 10px rgba(3, 169, 244, 0.3);
}

.games-grid-section .game-card {
    background: #FFFFFF;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #B3E5FC;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
    position: relative;
}

.games-grid-section .game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(26, 35, 126, 0.1);
}

.games-grid-section .game-card-img-container {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
}

.games-grid-section .game-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.games-grid-section .game-card:hover .game-card-img {
    transform: scale(1.08);
}

.games-grid-section .game-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 35, 126, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.games-grid-section .game-card:hover .game-card-overlay {
    opacity: 1;
}

.games-grid-section .game-card-title {
    color: #1A237E;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.games-grid-section .game-card-tag {
    font-size: 0.75rem;
    color: #03A9F4;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.games-grid-section .btn-primary {
    background-color: #03A9F4;
    border: none;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(3, 169, 244, 0.4);
}

.games-grid-section .btn-primary:hover {
    background-color: #0288D1;
    transform: scale(1.05);
}

@media (max-width: 767px) {
    .games-grid-section .games-grid-title {
        font-size: 1.25rem;
    }

    .games-grid-section .games-grid-subtitle {
        font-size: 0.875rem;
    }
}

/* ===== about-summary ===== */
.about-summary-block {
    background-color: #F0F8FF;
    overflow: hidden;
    position: relative;
}

.about-summary-block .about-summary-title {
    font-family: 'Outfit', sans-serif;
    color: #1A237E;
    font-weight: 700;
    font-size: 2rem;
}

.about-summary-block .about-summary-text {
    font-family: 'Inter', sans-serif;
    color: #546E7A;
    line-height: 1.7;
}

.about-summary-block .feature-icon-wrapper {
    background: #E1F5FE;
    color: #03A9F4;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(3, 169, 244, 0.1);
}

.about-summary-block .about-summary-features h3 {
    font-family: 'Outfit', sans-serif;
    color: #1A237E;
    font-weight: 600;
}

.about-summary-block .about-summary-features p {
    color: #546E7A;
    font-size: 0.95rem;
}

.about-summary-block .about-disclaimer {
    background: #FFFFFF;
    border-left: 4px solid #03A9F4;
    border-radius: 8px;
    color: #546E7A;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.about-summary-block .about-summary-btn {
    background-color: #03A9F4;
    border: none;
    color: #FFFFFF;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(3, 169, 244, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-summary-block .about-summary-btn:hover {
    background-color: #0288D1;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(3, 169, 244, 0.4);
    color: #FFFFFF;
}

.about-summary-block .about-summary-image-container {
    position: relative;
    padding: 20px;
}

.about-summary-block .about-summary-img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
    object-fit: cover;
    width: 100%;
    height: auto;
    max-height: 450px;
}

.about-summary-block .image-glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(3, 169, 244, 0.15) 0%, rgba(240, 248, 255, 0) 70%);
    z-index: 1;
}

@media (max-width: 767px) {
    .about-summary-block .about-summary-title {
        font-size: 1.5rem;
    }

    .about-summary-block .about-summary-btn {
        width: 100%;
        text-align: center;
    }

    .about-summary-block .about-summary-image-container {
        margin-top: 20px;
    }
}

/* ===== footer ===== */
.luckvoratyz-footer {
    background-color: #F0F8FF;
    color: #1A237E;
    padding: 4rem 0 2rem;
    font-family: 'Inter', sans-serif;
    border-top: 1px solid #B3E5FC;
    overflow-x: hidden
}

.luckvoratyz-footer-disclaimer {
    background-color: #E1F5FE;
    border: 2px solid #B3E5FC;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 3rem
}

.luckvoratyz-footer-disclaimer i {
    color: #03A9F4;
    font-size: 2rem
}

.luckvoratyz-footer-disclaimer-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: #1A237E;
    margin-bottom: 0.75rem
}

.luckvoratyz-footer-disclaimer-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #546E7A;
    margin-bottom: 0
}

.luckvoratyz-footer-partners {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem
}

.luckvoratyz-footer-partner-img {
    max-width: 130px;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease
}

.luckvoratyz-footer-partner-img:hover {
    transform: scale(1.05)
}

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

.luckvoratyz-footer-company-desc {
    font-size: 0.85rem;
    color: #546E7A;
    line-height: 1.5
}

.luckvoratyz-footer-nav-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #1A237E;
    margin-bottom: 1.25rem
}

.luckvoratyz-footer-link {
    color: #546E7A;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s
}

.luckvoratyz-footer-link:hover {
    color: #03A9F4
}

.luckvoratyz-footer-copyright {
    border-top: 1px solid #B3E5FC;
    padding-top: 2rem;
    margin-top: 3rem;
    font-size: 0.8rem;
    color: #B0BEC5
}

.luckvoratyz-age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 35, 126, 0.95);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.5rem
}

.luckvoratyz-age-modal-content {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 500px;
    width: 100%;
    text-align: center;
    box-shadow: 0 15px-50px rgba(0, 0, 0, 0.3)
}

.luckvoratyz-age-modal-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: #1A237E;
    margin-bottom: 1rem;
    font-size: 1.5rem
}

.luckvoratyz-age-modal-text {
    color: #546E7A;
    margin-bottom: 2rem;
    font-size: 1rem;
    line-height: 1.5
}

.luckvoratyz-age-modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center
}

.luckvoratyz-age-btn {
    padding: 0.75rem 2.5rem;
    border-radius: 10px;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    transition: all 0.3s;
    border: none
}

.luckvoratyz-age-btn-yes {
    background-color: #03A9F4;
    color: #FFFFFF
}

.luckvoratyz-age-btn-yes:hover {
    background-color: #0288D1;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(3, 169, 244, 0.3)
}

.luckvoratyz-age-btn-no {
    background-color: transparent;
    color: #03A9F4;
    border: 2px solid #03A9F4
}

.luckvoratyz-age-btn-no:hover {
    background-color: #E1F5FE;
    transform: translateY(-2px)
}

@media(max-width:767px) {
    .luckvoratyz-footer-link {
        font-size: 0.75rem
    }

    .luckvoratyz-footer-disclaimer-title {
        font-size: 1.1rem
    }

    .luckvoratyz-footer-partner-img {
        max-width: 100px
    }
}

.luckvoratyz-header {
    z-index: 1050;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.luckvoratyz-header .disclaimer-bar {
    background-color: #1A237E;
    color: #FFFFFF;
}

.luckvoratyz-header .disclaimer-text {
    font-size: 0.75rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.luckvoratyz-header .navbar {
    background-color: #FFFFFF;
    padding: 0.75rem 0;
    border-bottom: 1px solid #B3E5FC;
}

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

.luckvoratyz-header .brand-name {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #1A237E;
    letter-spacing: -0.5px;
}

.luckvoratyz-header .nav-link {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: #546E7A;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.luckvoratyz-header .nav-link:hover,
.luckvoratyz-header .nav-link.active {
    color: #03A9F4;
}

.luckvoratyz-header .navbar-toggler {
    border: none;
    font-size: 1.75rem;
    color: #1A237E;
    padding: 0;
}

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

.luckvoratyz-header .btn-primary {
    background-color: #03A9F4;
    border: none;
    color: #FFFFFF;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(3, 169, 244, 0.3);
    text-transform: uppercase;
    font-size: 0.85rem;
}

.luckvoratyz-header .btn-primary:hover {
    background-color: #0288D1;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(3, 169, 244, 0.4);
}

.luckvoratyz-hero {
    padding: 80px 0 40px;
    background-color: #F0F8FF;
    overflow: hidden;
    position: relative;
}

.luckvoratyz-title {
    font-family: 'Outfit', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: #1A237E;
    line-height: 1.2;
}

.luckvoratyz-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: #546E7A;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.luckvoratyz-btn {
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.luckvoratyz-btn-primary {
    background-color: #03A9F4;
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(3, 169, 244, 0.4);
    border: none;
}

.luckvoratyz-btn-primary:hover {
    background-color: #0288D1;
    transform: translateY(-2px);
    color: #FFFFFF;
}

.luckvoratyz-collection-list {
    background-color: #FFFFFF;
}

.luckvoratyz-section-title {
    font-family: 'Outfit', sans-serif;
    color: #1A237E;
    font-weight: 700;
    font-size: 2rem;
}

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

.luckvoratyz-game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(3, 169, 244, 0.15);
}

.luckvoratyz-card-img-wrapper {
    height: 200px;
    overflow: hidden;
}

.luckvoratyz-card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.luckvoratyz-card-title {
    font-family: 'Outfit', sans-serif;
    color: #1A237E;
    font-size: 1.25rem;
}

.luckvoratyz-card-info {
    font-size: 0.85rem;
    color: #546E7A;
}

.luckvoratyz-footer {
    background-color: #F0F8FF;
    color: #1A237E;
    padding: 4rem 0 2rem;
    font-family: 'Inter', sans-serif;
    border-top: 1px solid #B3E5FC;
    overflow-x: hidden;
}

.luckvoratyz-footer-disclaimer {
    background-color: #E1F5FE;
    border: 2px solid #B3E5FC;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 3rem;
}

.luckvoratyz-footer-disclaimer i {
    color: #03A9F4;
    font-size: 2rem;
}

.luckvoratyz-footer-disclaimer-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: #1A237E;
    margin-bottom: 0.75rem;
}

.luckvoratyz-footer-disclaimer-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #546E7A;
    margin-bottom: 0;
}

.luckvoratyz-footer-partners {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.luckvoratyz-footer-partner-img {
    max-width: 130px;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

.luckvoratyz-footer-nav-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #1A237E;
    margin-bottom: 1.25rem;
}

.luckvoratyz-footer-link {
    color: #546E7A;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.luckvoratyz-footer-link:hover {
    color: #03A9F4;
}

.luckvoratyz-age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 35, 126, 0.95);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.luckvoratyz-age-modal-content {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 500px;
    width: 100%;
    text-align: center;
}

.luckvoratyz-age-btn {
    padding: 0.75rem 2.5rem;
    border-radius: 10px;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.luckvoratyz-age-btn-yes {
    background-color: #03A9F4;
    color: #FFFFFF;
}

.luckvoratyz-age-btn-no {
    background-color: transparent;
    color: #03A9F4;
    border: 2px solid #03A9F4;
}

@media (max-width: 768px) {
    .luckvoratyz-title {
        font-size: 28px;
    }

    .luckvoratyz-subtitle {
        font-size: 15px;
    }
}


/* ===== PAGE: privacy ===== */
.policy-content-container { padding: 40px 20px; max-width: 900px; margin: 0 auto; color: #1A237E; line-height: 1.8; font-family: 'Inter', sans-serif; } .policy-content-container h2 { font-family: 'Outfit', sans-serif; font-weight: 700; color: #03A9F4; margin-top: 2.5rem; margin-bottom: 1.25rem; font-size: 1.75rem; border-left: 4px solid #03A9F4; padding-left: 15px; } .policy-content-container p { margin-bottom: 1.5rem; text-align: justify; hyphens: auto; } .policy-content-container ul { margin-bottom: 1.5rem; padding-left: 1.25rem; list-style-type: none; } .policy-content-container li { position: relative; padding-left: 1.5rem; margin-bottom: 0.75rem; } .policy-content-container li::before { content: '\2022'; color: #03A9F4; font-weight: bold; display: inline-block; width: 1em; margin-left: -1em; position: absolute; left: 0; } .policy-content-container strong { color: #1A237E; font-weight: 600; } @media (max-width: 768px) { .policy-content-container { padding: 25px 15px; } .policy-content-container h2 { font-size: 1.4rem; margin-top: 1.75rem; } .policy-content-container p, .policy-content-container li { font-size: 0.95rem; line-height: 1.6; } }

/* ===== PAGE: terms ===== */
#policy-content-wrapper { padding: 40px 20px; max-width: 900px; margin: 0 auto; color: #1A237E; font-family: 'Inter', sans-serif; line-height: 1.7; } #policy-content-wrapper h2 { font-family: 'Outfit', sans-serif; color: #1A237E; font-weight: 700; margin-top: 2rem; margin-bottom: 1rem; font-size: 1.5rem; border-left: 4px solid #03A9F4; padding-left: 15px; } #policy-content-wrapper p { margin-bottom: 1.25rem; color: #546E7A; } #policy-content-wrapper ul { margin-bottom: 1.5rem; list-style-type: none; padding-left: 0; } #policy-content-wrapper li { position: relative; padding-left: 25px; margin-bottom: 0.75rem; color: #546E7A; } #policy-content-wrapper li::before { content: '\2022'; color: #03A9F4; font-weight: bold; position: absolute; left: 0; font-size: 1.2rem; } #policy-content-wrapper a { color: #03A9F4; text-decoration: none; transition: color 0.3s ease; } #policy-content-wrapper a:hover { color: #1A237E; } @media (max-width: 768px) { #policy-content-wrapper { padding: 25px 15px; } #policy-content-wrapper h2 { font-size: 1.25rem; } #policy-content-wrapper p, #policy-content-wrapper li { font-size: 0.95rem; } }

/* ===== PAGE: disclaimer ===== */
.policy-content-container { padding: 40px 20px; max-width: 1000px; margin: 0 auto; color: #1A237E; line-height: 1.7; font-family: 'Inter', sans-serif; } .disclaimer-block h2 { font-family: 'Outfit', sans-serif; font-size: 1.5rem; font-weight: 700; color: #03A9F4; margin-top: 2rem; margin-bottom: 1rem; border-left: 4px solid #03A9F4; padding-left: 15px; } .disclaimer-block p { margin-bottom: 1.25rem; font-size: 1rem; color: #546E7A; text-align: justify; } .disclaimer-block ul { margin-bottom: 1.5rem; padding-left: 1.2rem; list-style-type: none; } .disclaimer-block li { position: relative; padding-left: 1.5rem; margin-bottom: 0.75rem; color: #546E7A; } .disclaimer-block li::before { content: '\2022'; color: #03A9F4; font-weight: bold; display: inline-block; width: 1em; margin-left: -1em; } @media (max-width: 768px) { .policy-content-container { padding: 20px 15px; } .disclaimer-block h2 { font-size: 1.25rem; } .disclaimer-block p { font-size: 0.95rem; } }

/* ===== PAGE: cookies ===== */
#policy-content-wrapper { padding: 3rem 1.5rem; background-color: #F0F8FF; border-radius: 12px; } .policy-content-container h2 { font-family: 'Outfit', sans-serif; color: #1A237E; font-size: 1.75rem; font-weight: 700; margin-top: 2.5rem; margin-bottom: 1.25rem; border-left: 5px solid #03A9F4; padding-left: 1rem; line-height: 1.2; } .policy-content-container p { font-family: 'Inter', sans-serif; color: #546E7A; line-height: 1.8; margin-bottom: 1.5rem; font-size: 1rem; hyphens: auto; } .policy-content-container ul { list-style: none; padding-left: 0; margin-bottom: 2rem; } .policy-content-container li { color: #546E7A; padding: 12px 0 12px 35px; position: relative; line-height: 1.6; border-bottom: 1px solid #E1F5FE; } .policy-content-container li:last-child { border-bottom: none; } .policy-content-container li::before { content: '\eb11'; font-family: 'boxicons' !important; position: absolute; left: 0; top: 12px; color: #03A9F4; font-size: 1.4rem; } .policy-content-container strong { color: #1A237E; font-weight: 600; } @media (max-width: 768px) { #policy-content-wrapper { padding: 1.5rem 1rem; } .policy-content-container h2 { font-size: 16px; margin-top: 2rem; } .policy-content-container p, .policy-content-container li { font-size: 14px; line-height: 1.6; } }

/* ===== PAGE: rgp ===== */
#policy-content-wrapper { padding: 40px 20px; background-color: #F0F8FF; color: #1A237E; font-family: 'Inter', sans-serif; line-height: 1.7; } .rgp-content { max-width: 900px; margin: 0 auto; background: #FFFFFF; padding: 40px; border-radius: 16px; box-shadow: 0 10px 30px rgba(3, 169, 244, 0.1); border: 1px solid #B3E5FC; } .rgp-content h2 { font-family: 'Outfit', sans-serif; color: #1A237E; font-weight: 700; font-size: 28px; margin-top: 32px; margin-bottom: 16px; border-left: 5px solid #03A9F4; padding-left: 15px; } .rgp-content h3 { font-family: 'Outfit', sans-serif; color: #03A9F4; font-weight: 600; font-size: 20px; margin-top: 24px; margin-bottom: 12px; } .rgp-content p { margin-bottom: 20px; color: #546E7A; font-size: 16px; } .rgp-content ul { list-style: none; padding-left: 0; margin-bottom: 25px; } .rgp-content ul li { position: relative; padding-left: 35px; margin-bottom: 15px; color: #546E7A; display: flex; align-items: flex-start; } .rgp-content ul li i { position: absolute; left: 0; top: 3px; color: #03A9F4; font-size: 22px; } .rgp-content strong { color: #1A237E; font-weight: 600; } @media (max-width: 768px) { #policy-content-wrapper { padding: 20px 15px; } .rgp-content { padding: 25px; } .rgp-content h2 { font-size: 22px; } .rgp-content h3 { font-size: 18px; } .rgp-content p { font-size: 15px; } }

/* ===== PAGE: about ===== */
.about-section {
  background-color: #F0F8FF;
  font-family: 'Inter', sans-serif;
  overflow: hidden;
}
.about-section .about-heading {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: #1A237E;
  letter-spacing: -0.02em;
}
.about-section .about-text {
  color: #546E7A;
  line-height: 1.8;
}
.about-section .about-badge {
  background: #E1F5FE;
  color: #03A9F4;
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  border: 1px solid #B3E5FC;
}
.about-section .about-image-wrapper img {
  object-fit: cover;
  width: 100%;
  height: 400px;
  transition: transform 0.5s ease;
}
.about-section .about-image-wrapper:hover img {
  transform: scale(1.02);
}
.about-section .bg-light-blue {
  background-color: #E1F5FE;
}
.about-section .about-value-card {
  background: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(3, 169, 244, 0.1);
  transition: all 0.3s ease;
  border: 1px solid transparent;
}
.about-section .about-value-card:hover {
  transform: translateY(-10px);
  border-color: #03A9F4;
  box-shadow: 0 15px 40px rgba(3, 169, 244, 0.2);
}
.about-section .about-icon-box {
  width: 70px;
  height: 70px;
  background: #F0F8FF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  color: #03A9F4;
  font-size: 2rem;
}
.about-section .about-card-title {
  font-family: 'Outfit', sans-serif;
  color: #1A237E;
  font-weight: 700;
}
.about-section .about-card-text {
  color: #546E7A;
  font-size: 0.95rem;
  line-height: 1.6;
}
.about-section .about-disclaimer-inner {
  background: #FFFFFF;
  border: 2px dashed #03A9F4 !important;
}
@media (max-width: 768px) {
  .about-section .about-heading {
    font-size: 1.5rem;
  }
  .about-section .about-image-wrapper img {
    height: 300px;
  }
}

/* ===== PAGE: achievements ===== */
.achievements-section {
    background-color: #F0F8FF;
    min-height: 80vh;
}

.achievements-section .achievement-card-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #B3E5FC !important;
}

.achievements-section .achievement-card-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(3, 169, 244, 0.1) !important;
}

.achievements-section .icon-wrapper {
    width: 80px;
    height: 80px;
    padding: 5px;
    background: #E1F5FE;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 2px solid #03A9F4;
}

.achievements-section .icon-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.achievements-section .progress {
    background-color: #E1F5FE;
    border-radius: 10px;
    overflow: hidden;
}

.achievements-section .progress-bar {
    background-color: #03A9F4;
    transition: width 1s ease-in-out;
}

.achievements-section .btn-primary {
    background-color: #03A9F4 !important;
    border-color: #03A9F4 !important;
}

.achievements-section .btn-outline-primary {
    color: #03A9F4 !important;
    border-color: #03A9F4 !important;
}

.achievements-section .btn-outline-primary:hover,
.achievements-section .btn-outline-primary.active {
    background-color: #03A9F4 !important;
    color: #FFFFFF !important;
}

.achievements-section .text-dark-primary {
    color: #1A237E !important;
}

.achievements-section .text-dark-secondary {
    color: #546E7A !important;
}

@media (max-width: 768px) {
    .achievements-section h1 {
        font-size: 1.5rem;
    }
    .achievements-section .icon-wrapper {
        width: 60px;
        height: 60px;
    }
}

/* ===== PAGE: tournaments ===== */
.history-list { background-color: #F0F8FF; font-family: 'Inter', sans-serif; }
.history-list__title { font-family: 'Outfit', sans-serif; color: #1A237E; font-weight: 800; }
.history-list__intro { max-width: 600px; line-height: 1.6; }
.history-list__card { background: #FFFFFF; border: 1px solid #B3E5FC; border-radius: 12px; overflow: hidden; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.history-list__card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(3, 169, 244, 0.1) !important; }
.history-list__img-box { height: 200px; overflow: hidden; }
.history-list__img-box img { height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.history-list__card:hover .history-list__img-box img { transform: scale(1.05); }
.history-list__badge { background: #1A237E; color: #FFFFFF; font-size: 0.75rem; font-weight: 600; padding: 6px 12px; border-radius: 20px; text-transform: uppercase; letter-spacing: 0.5px; z-index: 2; }
.history-list__item-title { font-family: 'Outfit', sans-serif; color: #1A237E; font-weight: 700; margin-bottom: 0.5rem; }
.history-list__meta { color: #546E7A !important; }
.history-list__stats { border-top: 1px solid #E1F5FE !important; }
.history-list__stats span:first-child { color: #546E7A; font-size: 0.85rem; }
.history-list__stats span.text-primary { color: #03A9F4 !important; font-size: 0.95rem; }
.history-list .form-control, .history-list .form-select { border: 1px solid #B3E5FC; border-radius: 8px; padding: 0.75rem 1rem; color: #1A237E; }
.history-list .form-control:focus, .history-list .form-select:focus { border-color: #03A9F4; box-shadow: 0 0 0 0.25rem rgba(3, 169, 244, 0.1); }
@media (max-width: 767px) { .history-list__title { font-size: 1.5rem; } .history-list__img-box { height: 180px; } }

/* ===== PAGE: contacts ===== */
.contacts-section {
  background-color: #F0F8FF;
  font-family: 'Inter', sans-serif;
}
.contacts-section .contacts-section__title {
  font-family: 'Outfit', sans-serif;
  color: #1A237E;
}
.contacts-section .contacts-section__subtitle {
  color: #546E7A;
}
.contacts-section .contacts-section__form-card {
  background: #FFFFFF;
  border: 1px solid #B3E5FC;
}
.contacts-section .form-label {
  color: #1A237E;
}
.contacts-section .form-control,
.contacts-section .form-select {
  background-color: #F0F8FF;
  border: 2px solid #E1F5FE;
  color: #1A237E;
  transition: all 0.3s ease;
}
.contacts-section .form-control:focus,
.contacts-section .form-select:focus {
  background-color: #FFFFFF;
  border-color: #03A9F4;
  box-shadow: 0 0 10px rgba(3, 169, 244, 0.2);
}
.contacts-section .contacts-section__submit-btn {
  background-color: #03A9F4;
  border: none;
  box-shadow: 0 4px 15px rgba(3, 169, 244, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: transform 0.2s ease, background-color 0.3s ease;
}
.contacts-section .contacts-section__submit-btn:hover {
  background-color: #0288D1;
  transform: translateY(-2px);
}
.contacts-section .contacts-section__icon-box {
  background-color: #E1F5FE;
  color: #03A9F4;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}
.contacts-section .contacts-section__info-item h3 {
  color: #1A237E;
}
.contacts-section .contacts-section__info-item p {
  color: #546E7A;
}
.contacts-section .contacts-section__visual img {
  object-fit: cover;
  height: 250px;
  width: 100%;
}
@media (max-width: 768px) {
  .contacts-section .contacts-section__title {
    font-size: 24px;
  }
  .contacts-section .contacts-section__subtitle {
    font-size: 14px;
  }
}

.comment-card-main {
    background: #FFFFFF;
    border: 1px solid #B3E5FC;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(3, 169, 244, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.comment-card-main:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(3, 169, 244, 0.15);
}

.comment-avatar {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    object-fit: cover;
    border: 2px solid #03A9F4;
    display: block;
}

.comment-user-name {
    font-family: 'Outfit', sans-serif;
    color: #1A237E;
    font-weight: 700;
}

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

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

.text-accent {
    color: #03A9F4;
}

.btn-action {
    background: transparent;
    border: none;
    color: #03A9F4;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0;
    margin-right: 20px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.btn-action:hover {
    color: #1A237E;
}

.comment-card-reply {
    background: #E1F5FE;
    border-left: 4px solid #03A9F4;
    border-radius: 0 16px 16px 0;
    position: relative;
}

.comment-card-reply::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 20px;
    width: 20px;
    height: 2px;
    background: #B3E5FC;
}

.comment-avatar-reply {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    object-fit: cover;
    border: 2px solid #FFFFFF;
}

.comment-user-name-reply {
    font-family: 'Outfit', sans-serif;
    color: #1A237E;
    font-size: 0.95rem;
    font-weight: 700;
}

.badge-staff {
    background: #03A9F4;
    color: #FFFFFF;
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: 8px;
    vertical-align: middle;
    text-transform: uppercase;
}

.comment-text-reply {
    font-family: 'Inter', sans-serif;
    color: #546E7A;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0;
}


/* ===== PAGE TEMPLATE: collection ===== */
.luckvoratyz-detail-page {
    background-color: #F0F8FF;
    min-height: 100vh;
    padding-top: 110px;
}

.game-iframe-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    background: #000;
    overflow: hidden;
}

.game-iframe-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.btn-fullscreen {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(3, 169, 244, 0.8);
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.btn-fullscreen:hover {
    background: #03A9F4;
    transform: scale(1.1);
}

.btn-exit-fullscreen {
    display: none;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10001;
    background: #03A9F4;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.js-game-container:fullscreen .btn-exit-fullscreen {
    display: block;
}

.game-info-card {
    background: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(26, 35, 126, 0.05);
    border: 1px solid #B3E5FC;
}

.game-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    color: #1A237E;
    font-size: 2.5rem;
}

.meta-pill {
    background: #E1F5FE;
    color: #03A9F4;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.game-description {
    color: #546E7A;
    line-height: 1.8;
    font-size: 1.05rem;
}

.game-description h1,
.game-description h2,
.game-description h3 {
    color: #1A237E;
    font-family: 'Outfit', sans-serif;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.game-description ul {
    padding-left: 1.25rem;
    margin-bottom: 1.5rem;
}

.sidebar-card {
    background: #FFFFFF;
    border-radius: 16px;
    border: 1px solid #B3E5FC;
    box-shadow: 0 10px 30px rgba(26, 35, 126, 0.05);
}

.sidebar-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: #1A237E;
    font-size: 1.25rem;
}

.specs-list li span:first-child {
    color: #546E7A;
    font-size: 0.9rem;
}

.specs-list li span:last-child {
    color: #1A237E;
}

.mini-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
}

.mini-title {
    color: #1A237E;
    font-size: 0.95rem;
    font-weight: 600;
}

.mini-cat {
    color: #03A9F4;
    font-size: 0.75rem;
}

.comment-card-main {
    background: #FFFFFF;
    border-radius: 12px;
    border-left: 4px solid #03A9F4;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.comment-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    background: #E1F5FE;
}

.comment-user-name {
    color: #1A237E;
    font-weight: 700;
}

.comment-date {
    font-size: 0.75rem;
    color: #B0BEC5;
}

.text-accent {
    color: #03A9F4;
}

.btn-action {
    background: none;
    border: none;
    color: #546E7A;
    font-size: 0.8rem;
    padding: 0;
    margin-right: 15px;
    transition: color 0.3s;
}

.btn-action:hover {
    color: #03A9F4;
}

.comment-form-wrapper {
    background: #E1F5FE;
    border-radius: 16px;
    border: 2px solid #B3E5FC;
}

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

    .game-title {
        font-size: 1.75rem;
    }

    .game-player-section {
        padding: 0;
    }
}

/* ===== FIX: hero top padding for fixed header ===== */
.luckvoratyz-hero {
    padding-top: 140px;
}

/* ===== FIX: responsible-play remove blue dots, align icons ===== */
.rgp-content ul li::before {
    content: none !important;
    display: none !important;
}
.rgp-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 25px;
}
.rgp-content ul li {
    position: relative;
    padding-left: 46px;
    display: block;
    list-style: none;
    margin-bottom: 20px;
    line-height: 1.7;
    color: #546E7A;
    font-size: 16px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}
.rgp-content ul li i {
    position: absolute;
    left: 0;
    top: 1px;
    color: #03A9F4;
    font-size: 22px;
    line-height: 1;
    width: 22px;
    text-align: center;
}
.rgp-content ul li strong {
    color: #1A237E;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.7;
    margin-right: 4px;
}

/* ===== FIX: policy pages - move dots closer to text ===== */
#policy-content-wrapper li {
    padding-left: 15px;
}
#policy-content-wrapper li::before {
    left: 0;
}
.policy-content-container li {
    padding-left: 18px;
}
.policy-content-container li::before {
    left: 0;
    margin-left: 0;
}
.disclaimer-block li {
    padding-left: 18px;
}
.disclaimer-block li::before {
    margin-left: 0;
    position: absolute;
    left: 0;
}

/* ===== FIX: responsive - responsible-play ===== */
@media (max-width: 768px) {
    .rgp-content ul li {
        padding-left: 40px;
        font-size: 15px;
        margin-bottom: 16px;
    }
    .rgp-content ul li i {
        font-size: 20px;
        top: 2px;
    }
    .rgp-content ul li strong {
        font-size: 15px;
    }
}

/* ===== FIX: responsive - policy pages 20px padding ===== */
@media (max-width: 768px) {
    .policy-content-container,
    #policy-content-wrapper {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}