:root {
    --primary: #FF6B6B;
    --secondary: #4ECDC4;
    --accent: #FFE66D;
    --bg-main: #F7F9FC;
    --bg-surface: #FFFFFF;
    --bg-alt: #EDF2F7;
    --text-primary: #2D3436;
    --text-secondary: #636E72;
    --gradient-action: linear-gradient(135deg, #FF6B6B 0%, #FF8E8E 100%);
    --gradient-quest: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(78, 205, 196, 0.05) 100%);
    --radius-lg: 24px;
    --radius-md: 20px;
    --shadow-idle: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 20px 40px rgba(78, 205, 196, 0.2);
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

* {
    box-sizing: border-box;
    transition: all 0.3s ease-in-out;
}

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

/* ===== header ===== */
.river-wink-header {
    background-color: #FFFFFF;
    border-bottom: 2px solid #EDF2F7;
    padding: 1rem 0;
    font-family: 'Outfit', sans-serif;
    transition: all 0.3s ease;
    z-index: 1050;
}

.river-wink-header .brand-text {
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    color: #2D3436;
}

.river-wink-header .nav-link {
    color: #636E72;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color 0.2s ease;
    position: relative;
}

.river-wink-header .nav-link:hover,
.river-wink-header .nav-link:focus {
    color: #FF6B6B;
}

.river-wink-header .dropdown-menu {
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 0.5rem;
    background-color: #FFFFFF;
}

.river-wink-header .dropdown-item {
    border-radius: 8px;
    padding: 0.6rem 1rem;
    color: #636E72;
    font-weight: 500;
}

.river-wink-header .dropdown-item:hover {
    background-color: #EDF2F7;
    color: #FF6B6B;
}

.river-wink-header .btn-quest {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E8E 100%);
    color: #FFFFFF;
    border: none;
    border-radius: 50px;
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.river-wink-header .btn-quest:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
    color: #FFFFFF;
}

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

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

@media (max-width: 991.98px) {
    .river-wink-header .navbar-collapse {
        background-color: #FFFFFF;
        margin-top: 1rem;
        padding: 1rem;
        border-radius: 16px;
        border: 1px solid #EDF2F7;
    }

    .river-wink-header .nav-link {
        padding: 0.8rem 0 !important;
        border-bottom: 1px solid #F7F9FC;
    }

    .river-wink-header .dropdown-menu {
        border: 1px solid #EDF2F7;
        box-shadow: none;
        margin-bottom: 1rem;
    }

    .river-wink-header .btn-quest {
        width: 100%;
        margin-top: 1rem;
        text-align: center;
    }
}

/* ===== hero ===== */
.hero-river-wink {
    position: relative;
    min-height: 80vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
    background-color: #2D3436;
}

.hero-river-wink .hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-river-wink .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: 2;
}

.hero-river-wink .container {
    position: relative;
    z-index: 3;
    max-width: 900px;
}

.hero-river-wink .hero-title {
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    color: #FFFFFF;
    font-size: 3.5rem;
    margin-bottom: 24px;
    line-height: 1.2;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.hero-river-wink .hero-desc {
    font-family: 'Outfit', sans-serif;
    color: #DFE6E9;
    font-size: 1.25rem;
    max-width: 750px;
    margin: 0 auto 48px;
    line-height: 1.6;
    font-weight: 300;
}

.hero-river-wink .hero-btn {
    background: #FF6B6B;
    color: #FFFFFF;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3);
}

.hero-river-wink .hero-btn:hover {
    background: #FF8E8E;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 107, 107, 0.5);
    color: #FFFFFF;
}

.hero-river-wink .hero-btn i {
    font-size: 1.2rem;
}

@media (max-width: 767px) {
    .hero-river-wink {
        min-height: 65vh;
        padding: 80px 20px;
    }

    .hero-river-wink .hero-title {
        font-size: 18px !important;
        margin-bottom: 16px;
    }

    .hero-river-wink .hero-desc {
        font-size: 14px;
        margin-bottom: 32px;
        hyphens: auto;
    }

    .hero-river-wink .hero-btn {
        padding: 14px 28px;
        font-size: 14px;
    }
}

/* ===== about_preview ===== */
.about-preview-section {
    background-color: #F7F9FC;
    overflow: hidden;
    position: relative;
}

.about-preview-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, rgba(255, 230, 109, 0.15), transparent);
    pointer-events: none;
}

.about-preview-title {
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    color: #2D3436;
    font-size: 2.5rem;
}

.about-preview-text {
    font-family: 'Outfit', sans-serif;
    color: #636E72;
    line-height: 1.8;
    font-size: 1.1rem;
}

.feature-icon-wrapper {
    width: 40px;
    height: 40px;
    background-color: rgba(78, 205, 196, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon {
    color: #4ECDC4;
    font-size: 1.25rem;
}

.feature-label {
    font-family: 'Outfit', sans-serif;
    color: #2D3436;
    font-weight: 500;
}

.about-preview-btn {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E8E 100%);
    color: #FFFFFF;
    padding: 12px 30px;
    border-radius: 24px;
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 20px rgba(255, 107, 107, 0.2);
}

.about-preview-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 107, 107, 0.3);
    color: #FFFFFF;
}

.about-preview-image-container {
    position: relative;
    padding: 15px;
}

.about-preview-img {
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: auto;
    object-fit: cover;
    border: 4px solid #FFFFFF;
}

.about-preview-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: #FFFFFF;
    padding: 15px 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    transform: translate(-10%, -10%);
}

.badge-icon {
    color: #FFE66D;
    font-size: 1.5rem;
}

.badge-text {
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    color: #2D3436;
}

@media (max-width: 768px) {
    .about-preview-title {
        font-size: 1.5rem;
        text-align: center;
    }

    .about-preview-text {
        font-size: 1rem;
        text-align: center;
    }

    .about-preview-features {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .about-preview-btn {
        width: 100%;
    }

    .d-flex.justify-content-start {
        justify-content: center !important;
    }

    .about-preview-badge {
        padding: 10px 15px;
    }
}

/* ===== games_list ===== */
.games-collection-section {
    background-color: #F7F9FC;
    overflow-x: hidden;
}

.games-collection-section .collection-title {
    font-family: 'Fredoka', sans-serif;
    font-size: 2.5rem;
    color: #2D3436;
    font-weight: 600;
}

.games-collection-section .collection-subtitle {
    font-family: 'Outfit', sans-serif;
    color: #636E72;
    max-width: 600px;
    font-size: 1.1rem;
}

.games-collection-section .filter-btn {
    border: none;
    background: #FFFFFF;
    color: #2D3436;
    padding: 10px 24px;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.games-collection-section .filter-btn:hover,
.games-collection-section .filter-btn.active {
    background: #FF6B6B;
    color: #FFFFFF;
    box-shadow: 0 6px 15px rgba(255, 107, 107, 0.3);
    transform: translateY(-2px);
}

.games-collection-section .game-card-link {
    text-decoration: none;
    display: block;
    height: 100%;
}

.games-collection-section .game-card {
    background: #FFFFFF;
    border-radius: 24px;
    overflow: hidden;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    border: 2px solid transparent;
}

.games-collection-section .game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(78, 205, 196, 0.2);
    border-color: #4ECDC4;
}

.games-collection-section .game-image-box {
    position: relative;
    width: 100%;
    padding-top: 65%;
    overflow: hidden;
}

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

.games-collection-section .game-card:hover .game-thumb {
    transform: scale(1.1);
}

.games-collection-section .card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(78, 205, 196, 0.1) 100%);
    pointer-events: none;
}

.games-collection-section .game-info {
    padding: 20px;
}

.games-collection-section .game-name {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.25rem;
    color: #2D3436;
    margin-bottom: 8px;
    line-height: 1.2;
}

.games-collection-section .game-type {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    color: #4ECDC4;
    background: rgba(78, 205, 196, 0.1);
    padding: 4px 12px;
    border-radius: 12px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .games-collection-section .collection-title {
        font-size: 1.75rem;
    }

    .games-collection-section .collection-subtitle {
        font-size: 0.95rem;
    }

    .games-collection-section .game-name {
        font-size: 1.1rem;
    }
}

/* ===== features ===== */
.features-section {
    background-color: #F7F9FC;
    overflow: hidden;
    position: relative;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, rgba(255, 230, 109, 0.15), transparent);
    pointer-events: none;
}

.features-section .features-title {
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    color: #2D3436;
    font-size: clamp(24px, 5vw, 40px);
}

.features-section .features-subtitle {
    font-family: 'Outfit', sans-serif;
    color: #636E72;
    max-width: 600px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.features-section .feature-card {
    background: #FFFFFF;
    border: 2px solid rgba(78, 205, 196, 0.1);
    border-radius: 24px;
    padding: 40px 30px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.features-section .feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(78, 205, 196, 0.2);
    border-color: #4ECDC4;
}

.features-section .feature-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E8E 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 2.5rem;
    box-shadow: 0 8px 15px rgba(255, 107, 107, 0.3);
}

.features-section .icon-secondary {
    background: linear-gradient(135deg, #4ECDC4 0%, #6EE7E0 100%);
    box-shadow: 0 8px 15px rgba(78, 205, 196, 0.3);
}

.features-section .icon-accent {
    background: linear-gradient(135deg, #FFE66D 0%, #FFF1A8 100%);
    box-shadow: 0 8px 15px rgba(255, 230, 109, 0.3);
    color: #2D3436;
}

.features-section .icon-primary-alt {
    background: linear-gradient(135deg, #FF6B6B 0%, #FFB347 100%);
    box-shadow: 0 8px 15px rgba(255, 107, 107, 0.3);
}

.features-section .feature-item-title {
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    color: #2D3436;
    font-size: 1.5rem;
}

.features-section .feature-item-text {
    font-family: 'Outfit', sans-serif;
    color: #636E72;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .features-section .features-title {
        font-size: 18px;
    }

    .features-section .feature-item-title {
        font-size: 16px;
    }

    .features-section .feature-item-text {
        font-size: 14px;
        hyphens: auto;
    }

    .features-section .feature-card {
        padding: 30px 20px;
    }

    .features-section .feature-icon-wrapper {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
}

/* ===== footer ===== */
.river-wink-footer {
    background-color: #F7F9FC;
    padding: 60px 0 30px;
    border-top: 2px solid #EDF2F7;
    position: relative;
    overflow: hidden;
}

.river-wink-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, rgba(255, 230, 109, 0.1), transparent);
    pointer-events: none;
}

.river-wink-footer .footer-logo {
    max-width: 50px;
    height: auto;
    border-radius: 12px;
}

.river-wink-footer .footer-desc {
    font-family: 'Outfit', sans-serif;
    color: #636E72;
    font-size: 1rem;
    line-height: 1.6;
}

.river-wink-footer .footer-title {
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    color: #2D3436;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.river-wink-footer .footer-links li {
    margin-bottom: 10px;
}

.river-wink-footer .footer-links a {
    color: #636E72;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.river-wink-footer .footer-links a:hover {
    color: #FF6B6B;
    transform: translateX(5px);
}

.river-wink-footer .footer-contact-info {
    color: #636E72;
    font-family: 'Outfit', sans-serif;
}

.river-wink-footer .footer-contact-info i {
    color: #4ECDC4;
    font-size: 1.2rem;
}

.river-wink-footer .footer-contact-info a {
    color: #636E72;
    text-decoration: none;
    transition: color 0.3s ease;
}

.river-wink-footer .footer-contact-info a:hover {
    color: #FF6B6B;
}

.river-wink-footer .footer-divider {
    border-color: #DFE6E9;
    margin: 40px 0 20px;
    opacity: 0.5;
}

.river-wink-footer .footer-bottom {
    font-family: 'Outfit', sans-serif;
    font-size: 0.875rem;
    color: #636E72;
}

.river-wink-footer .footer-status-badge {
    background: #FFFFFF;
    padding: 6px 16px;
    border-radius: 20px;
    border: 1px solid #EDF2F7;
    color: #2D3436;
    font-weight: 500;
}

.river-wink-footer .footer-status-badge i {
    color: #4ECDC4;
    font-size: 0.75rem;
}

@media (max-width: 768px) {
    .river-wink-footer {
        padding: 40px 0 20px;
    }

    .river-wink-footer .footer-title {
        font-size: 1rem;
    }

    .river-wink-footer .footer-bottom {
        text-align: center;
    }
}

.river-wink-hero-section {
    background: radial-gradient(circle at top left, rgba(255, 230, 109, 0.15), #F7F9FC);
    padding: 80px 0 60px;
    border-bottom: 2px solid #EDF2F7;
}

.river-wink-hero-section .hero-title {
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    font-size: 3rem;
    color: #2D3436;
    margin-bottom: 1rem;
}

.river-wink-hero-section .hero-subtitle {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    color: #636E72;
    max-width: 700px;
    margin: 0 auto;
}

.river-wink-games-grid .search-wrapper {
    position: relative;
}

.river-wink-games-grid .search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #636E72;
    font-size: 1.2rem;
}

.river-wink-games-grid .js-search-input {
    padding-left: 45px;
    border-radius: 50px;
    border: 2px solid #EDF2F7;
    height: 50px;
    font-family: 'Outfit', sans-serif;
    background-color: #FFFFFF;
}

.river-wink-games-grid .js-search-input:focus {
    border-color: #4ECDC4;
    box-shadow: 0 0 0 4px rgba(78, 205, 196, 0.1);
}

.river-wink-games-grid .btn-filter {
    border: 2px solid #EDF2F7;
    background: #FFFFFF;
    color: #636E72;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
}

.river-wink-games-grid .btn-filter:hover,
.river-wink-games-grid .btn-filter.active {
    background: #FF6B6B;
    color: #FFFFFF;
    border-color: #FF6B6B;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.2);
}

.river-wink-games-grid .game-card {
    background: #FFFFFF;
    border-radius: 24px;
    overflow: hidden;
    border: 2px solid #EDF2F7;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

.river-wink-games-grid .game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(78, 205, 196, 0.15);
    border-color: #4ECDC4;
}

.river-wink-games-grid .game-img-container {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.river-wink-games-grid .game-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.river-wink-games-grid .game-card:hover .game-img {
    transform: scale(1.1);
}

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

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

.river-wink-games-grid .btn-play-icon {
    font-size: 4rem;
    color: #FFFFFF;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.river-wink-games-grid .btn-play-icon:hover {
    transform: scale(1.2);
    color: #FFE66D;
}

.river-wink-games-grid .game-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.river-wink-games-grid .game-category {
    display: inline-block;
    background: rgba(78, 205, 196, 0.1);
    color: #4ECDC4;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    font-family: 'Outfit', sans-serif;
}

.river-wink-games-grid .game-title {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.25rem;
    color: #2D3436;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.river-wink-games-grid .game-footer {
    margin-top: auto;
}

.river-wink-games-grid .btn-game-action {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E8E 100%);
    color: #FFFFFF;
    text-align: center;
    padding: 0.75rem;
    border-radius: 16px;
    font-weight: 600;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.2);
}

.river-wink-games-grid .btn-game-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.3);
    color: #FFFFFF;
}

@media (max-width: 768px) {
    .river-wink-hero-section {
        padding: 60px 0 40px;
    }

    .river-wink-hero-section .hero-title {
        font-size: 2rem;
    }

    .river-wink-hero-section .hero-subtitle {
        font-size: 1rem;
    }
}


/* ===== PAGE: privacy ===== */
.policy-block-root { background-color: #F7F9FC; padding: 60px 0; font-family: 'Outfit', sans-serif; color: #2D3436; }.policy-inner-container { max-width: 900px; margin: 0 auto; padding: 0 20px; }.policy-content-wrapper { background: #FFFFFF; padding: 50px; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }.policy-content-wrapper h2 { font-family: 'Fredoka', sans-serif; font-size: 1.6rem; color: #FF6B6B; margin-top: 40px; margin-bottom: 20px; border-left: 5px solid #4ECDC4; padding-left: 15px; }.policy-content-wrapper p { line-height: 1.8; margin-bottom: 20px; font-size: 1rem; color: #636E72; text-align: justify; hyphens: auto; }.policy-content-wrapper ul { margin-bottom: 30px; padding-left: 20px; list-style-type: none; }.policy-content-wrapper li { position: relative; margin-bottom: 15px; padding-left: 30px; color: #636E72; line-height: 1.6; }.policy-content-wrapper li::before { content: '\ec63'; font-family: 'Phosphor'; font-weight: 700; position: absolute; left: 0; color: #4ECDC4; font-size: 1.2rem; top: 0; }.policy-content-wrapper strong { color: #2D3436; font-weight: 600; }.policy-content-wrapper a { color: #4ECDC4; text-decoration: none; transition: color 0.3s ease; }.policy-content-wrapper a:hover { color: #FF6B6B; }@media (max-width: 768px) { .policy-block-root { padding: 40px 0; } .policy-content-wrapper { padding: 30px 20px; } .policy-content-wrapper h2 { font-size: 1.1rem; margin-top: 30px; } .policy-content-wrapper p { font-size: 0.95rem; } }

/* ===== PAGE: terms ===== */
.policy-block-root { background-color: #F7F9FC; padding: 60px 20px; font-family: 'Outfit', sans-serif; color: #2D3436; }.policy-block-root .policy-inner-container { max-width: 900px; margin: 0 auto; }.policy-block-root .terms-content-card { background: #FFFFFF; border-radius: 24px; padding: 40px; border: 2px solid #EDF2F7; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }.policy-block-root .terms-header-box { text-align: center; margin-bottom: 40px; border-bottom: 2px dashed #4ECDC4; padding-bottom: 30px; }.policy-block-root .terms-header-box i { font-size: 3rem; color: #FF6B6B; margin-bottom: 15px; }.policy-block-root .terms-header-box h2 { font-family: 'Fredoka', sans-serif; font-size: 2rem; color: #2D3436; margin-bottom: 10px; }.policy-block-root .terms-header-box p { color: #636E72; font-size: 1.1rem; }.policy-block-root .terms-section { margin-bottom: 30px; }.policy-block-root .terms-title { font-family: 'Fredoka', sans-serif; font-size: 1.4rem; color: #4ECDC4; margin-bottom: 15px; display: flex; align-items: center; gap: 10px; }.policy-block-root .terms-text { line-height: 1.7; font-size: 1rem; color: #636E72; text-align: justify; hyphens: auto; }.policy-block-root .terms-contact-info { background: #EDF2F7; padding: 25px; border-radius: 20px; margin-top: 40px; }.policy-block-root .terms-contact-list { list-style: none; padding: 0; margin: 15px 0 0 0; }.policy-block-root .terms-contact-list li { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; font-size: 1rem; color: #2D3436; }.policy-block-root .terms-contact-list i { color: #FF6B6B; font-size: 1.2rem; }.policy-block-root .terms-contact-list a { color: #2D3436; text-decoration: none; transition: color 0.3s ease; }.policy-block-root .terms-contact-list a:hover { color: #FF6B6B; }@media (max-width: 768px) { .policy-block-root { padding: 30px 15px; } .policy-block-root .terms-content-card { padding: 25px; } .policy-block-root .terms-header-box h2 { font-size: 1.5rem; } .policy-block-root .terms-title { font-size: 1.2rem; } .policy-block-root .terms-text { font-size: 0.95rem; } }

/* ===== PAGE: disclaimer ===== */
.policy-block-root { background-color: #F7F9FC; padding: 60px 0; font-family: 'Outfit', sans-serif; color: #2D3436; } .policy-inner-container { max-width: 900px; margin: 0 auto; background: #FFFFFF; padding: 40px; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); } .policy-inner-container h2 { font-family: 'Fredoka', sans-serif; color: #FF6B6B; font-size: 24px; margin-bottom: 25px; font-weight: 600; line-height: 1.3; } .policy-inner-container h3 { font-family: 'Fredoka', sans-serif; color: #4ECDC4; font-size: 18px; margin-top: 30px; margin-bottom: 15px; font-weight: 600; line-height: 1.3; } .policy-inner-container p { font-size: 16px; line-height: 1.7; color: #636E72; margin-bottom: 15px; text-align: justify; hyphens: auto; } .policy-inner-container ul { padding-left: 20px; margin-bottom: 20px; } .policy-inner-container li { font-size: 15px; line-height: 1.7; color: #636E72; margin-bottom: 10px; position: relative; list-style-type: none; } .policy-inner-container li::before { content: '•'; color: #FFE66D; font-weight: bold; display: inline-block; width: 1em; margin-left: -1em; } @media (max-width: 768px) { .policy-block-root { padding: 30px 15px; } .policy-inner-container { padding: 25px; } .policy-inner-container h2 { font-size: 18px; } .policy-inner-container h3 { font-size: 16px; } .policy-inner-container p, .policy-inner-container li { font-size: 14px; } }

/* ===== PAGE: cookies ===== */
.policy-block-root { background-color: #F7F9FC; padding: 60px 0; color: #2D3436; font-family: 'Outfit', sans-serif; }
.policy-block-root .policy-inner-container { max-width: 900px; margin: 0 auto; background: #FFFFFF; padding: 50px; border-radius: 24px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.policy-block-root .policy-content-body { line-height: 1.7; }
.policy-block-root .policy-content-body h2 { font-family: 'Fredoka', sans-serif; color: #2D3436; font-weight: 600; margin-bottom: 1.5rem; }
.policy-block-root .policy-content-body h3 { font-family: 'Fredoka', sans-serif; color: #FF6B6B; font-weight: 600; font-size: 1.25rem; margin-top: 2rem; margin-bottom: 1rem; }
.policy-block-root .policy-content-body h4 { font-family: 'Fredoka', sans-serif; font-size: 1.1rem; color: #2D3436; display: flex; align-items: center; }
.policy-block-root .policy-content-body p { color: #636E72; font-size: 1rem; }
.policy-block-root .policy-list { list-style: none; padding-left: 0; }
.policy-block-root .policy-list li { margin-bottom: 0.75rem; color: #636E72; }
.policy-block-root .cookie-type-card { background: #EDF2F7; border-radius: 16px; border: 2px solid transparent; transition: all 0.3s ease; }
.policy-block-root .cookie-type-card:hover { border-color: #4ECDC4; background: #FFFFFF; transform: translateY(-5px); box-shadow: 0 10px 20px rgba(78,205,196,0.1); }
.policy-block-root .contact-notice { background: linear-gradient(135deg, rgba(255,107,107,0.05) 0%, rgba(78,205,196,0.05) 100%); border-radius: 20px; border: 1px dashed #4ECDC4; }
.policy-block-root .policy-link { color: #FF6B6B; text-decoration: none; font-weight: 500; transition: color 0.2s; }
.policy-block-root .policy-link:hover { color: #4ECDC4; }
@media (max-width: 768px) {
  .policy-block-root .policy-inner-container { padding: 30px 20px; border-radius: 0; }
  .policy-block-root .policy-content-body h2 { font-size: 18px; }
  .policy-block-root .policy-content-body h3 { font-size: 16px; }
  .policy-block-root .policy-content-body h4 { font-size: 14px; }
  .policy-block-root .policy-content-body p { font-size: 14px; }
}

/* ===== PAGE: about ===== */
.river-about-story { background: #FFFFFF; overflow: hidden; } .river-about-img-wrapper::after { content: ''; position: absolute; top: 15px; left: 15px; width: 100%; height: 100%; border: 3px solid #4ECDC4; border-radius: 24px; z-index: -1; } .bg-alt { background-color: #EDF2F7; } .river-card { transition: transform 0.3s ease, box-shadow 0.3s ease; border: none; } .river-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(78,205,196,0.2) !important; } .river-icon-box { background: rgba(78,205,196,0.1); width: 80px; height: 80px; line-height: 80px; border-radius: 50%; margin: 0 auto; display: flex; align-items: center; justify-content: center; } .river-safety-content { background: radial-gradient(circle at top left, rgba(255,230,109,0.15), transparent); border-color: #4ECDC4 !important; } .river-btn-primary { background: linear-gradient(135deg, #FF6B6B 0%, #FF8E8E 100%); color: #FFFFFF; font-family: 'Fredoka', sans-serif; font-weight: 600; border: none; transition: transform 0.2s; } .river-btn-primary:hover { transform: scale(1.05); color: #FFFFFF; opacity: 0.9; } .river-btn-outline { border: 2px solid #FF6B6B; color: #FF6B6B; font-family: 'Fredoka', sans-serif; font-weight: 600; transition: all 0.3s; } .river-btn-outline:hover { background: #FF6B6B; color: #FFFFFF; } .fredoka { font-family: 'Fredoka', sans-serif; } .outfit { font-family: 'Outfit', sans-serif; } .text-primary { color: #FF6B6B !important; } .text-secondary { color: #636E72 !important; }

/* ===== PAGE: chat ===== */
.chat-system-block {
  background-color: #F7F9FC;
  font-family: 'Outfit', sans-serif;
}
.chat-system-block .chat-container-card {
  background: #FFFFFF;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  border: 2px solid #EDF2F7;
}
.chat-system-block .chat-title {
  font-family: 'Fredoka', sans-serif;
  color: #2D3436;
  font-size: 1.5rem;
}
.chat-system-block .status-indicator {
  width: 12px;
  height: 12px;
  background: #4ECDC4;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(78, 205, 196, 0.6);
}
.chat-system-block .chat-messages-viewport {
  height: 400px;
  overflow-y: auto;
  padding-right: 10px;
  mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
}
.chat-system-block .message-bubble {
  max-width: 80%;
  border-radius: 18px;
  font-size: 0.95rem;
}
.chat-system-block .message-bubble.incoming {
  background: #EDF2F7;
  color: #2D3436;
  border-bottom-left-radius: 4px;
}
.chat-system-block .message-bubble.outgoing .message-text {
  padding: 10px 15px;
  border-radius: 18px;
  border-bottom-right-radius: 4px;
  display: inline-block;
}
.chat-system-block .avatar-small {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}
.chat-system-block .rules-sidebar {
  background: #FFFFFF;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.chat-system-block .rule-number {
  color: #FF6B6B;
  font-weight: 700;
  font-family: 'Fredoka', sans-serif;
  background: rgba(255,107,107,0.1);
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  flex-shrink: 0;
}
.chat-system-block .chat-entry-notice {
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(78,205,196,0.05) 100%);
  border: 1px dashed #4ECDC4 !important;
}
.chat-system-block .btn-primary {
  background: linear-gradient(135deg, #FF6B6B 0%, #FF8E8E 100%);
  border: none;
  border-radius: 12px;
  font-weight: 600;
  transition: transform 0.2s;
}
.chat-system-block .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

/* ===== PAGE: contact ===== */
.rw-contact-page {
  background-color: #F7F9FC;
  font-family: 'Outfit', sans-serif;
  overflow: hidden;
}

.rw-contact-page .fredoka-font {
  font-family: 'Fredoka', sans-serif;
}

.rw-contact-page .rw-heading {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.rw-contact-page .rw-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #636E72;
}

.rw-contact-page .rw-divider {
  width: 80px;
  height: 4px;
  background: #FF6B6B;
  border-radius: 2px;
}

.rw-contact-page .rw-contact-card {
  background: #FFFFFF;
  padding: 2.5rem 1.5rem;
  border-radius: 24px;
  border: 2px solid transparent;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
}

.rw-contact-page .rw-contact-card:hover {
  transform: translateY(-10px);
  border-color: #4ECDC4;
  box-shadow: 0 20px 40px rgba(78,205,196,0.2);
}

.rw-contact-page .rw-icon-wrapper {
  width: 70px;
  height: 70px;
  background: rgba(255, 107, 107, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.rw-contact-page .rw-icon-wrapper i {
  font-size: 2rem;
  color: #FF6B6B;
}

.rw-contact-page .rw-card-title {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #2D3436;
  margin-bottom: 1rem;
}

.rw-contact-page .rw-working-hours {
  background: radial-gradient(circle at top left, rgba(255,230,109,0.15), transparent);
}

.rw-contact-page .rw-image-container {
  border: 4px solid #FFFFFF;
}

.rw-contact-page .rw-hours-list .rw-hour-item {
  background: #FFFFFF;
  border-left: 5px solid #4ECDC4;
  box-shadow: 0 4px 10px rgba(0,0,0,0.02);
  transition: transform 0.2s ease;
}

.rw-contact-page .rw-hours-list .rw-hour-item:hover {
  transform: scale(1.02);
}

.rw-contact-page .text-primary {
  color: #FF6B6B !important;
}

.rw-contact-page .text-secondary {
  color: #4ECDC4 !important;
}

@media (max-width: 767.98px) {
  .rw-contact-page .rw-heading {
    font-size: 1.75rem;
  }
  .rw-contact-page .rw-contact-card {
    padding: 1.5rem 1rem;
  }
}

/* ===== PAGE: how-to-play ===== */
.rw-instructions-title {
  font-family: 'Fredoka', sans-serif;
  color: #2D3436;
  font-weight: 600;
}
.rw-instructions-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: #FF6B6B;
  border-radius: 2px;
}
.rw-instruction-card {
  background: #FFFFFF;
  border: 2px solid #EDF2F7;
  border-radius: 24px;
  transition: all 0.3s ease-in-out;
}
.rw-instruction-card:hover {
  transform: translateY(-10px);
  border-color: #4ECDC4;
  box-shadow: 0 20px 40px rgba(78,205,196,0.15);
}
.rw-card-icon {
  font-size: 2.5rem;
  color: #FF6B6B;
}
.rw-card-title {
  font-family: 'Fredoka', sans-serif;
  color: #2D3436;
}
.rw-card-text {
  color: #636E72;
  line-height: 1.6;
}
.bg-alt {
  background-color: #F7F9FC;
}
.rw-controls-title {
  font-family: 'Fredoka', sans-serif;
  color: #2D3436;
  font-weight: 600;
}
.rw-control-key {
  background: #2D3436;
  color: #FFFFFF;
  padding: 8px 15px;
  border-radius: 12px;
  min-width: 100px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 4px 0 #000;
}
.rw-control-info {
  color: #2D3436;
  font-weight: 500;
}
.rw-controls-image-wrapper {
  background: #FFFFFF;
  border-radius: 28px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.rw-controls-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}
.rw-multi-layer {
  border: 2px solid #EDF2F7;
}
.rw-multi-title {
  font-family: 'Fredoka', sans-serif;
  color: #2D3436;
  font-weight: 600;
}
.rw-multi-list i {
  font-size: 1.25rem;
}
.rw-multi-img {
  border-radius: 24px;
  height: 300px;
  width: 100%;
  object-fit: cover;
}
.btn-primary {
  background: linear-gradient(135deg, #FF6B6B 0%, #FF8E8E 100%);
  border: none;
  color: white;
  font-weight: 600;
  transition: 0.3s transform ease;
}
.rw-btn-hover:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(255, 107, 107, 0.3);
  color: white;
}
@media (max-width: 768px) {
  .rw-controls-img {
    height: 250px;
  }
  .rw-multi-img {
    height: 200px;
  }
}

/* ===== PAGE: faq ===== */
.faq-section {
  font-family: 'Outfit', sans-serif;
  background-color: #F7F9FC;
  position: relative;
  overflow: hidden;
}

.faq-section h2.faq-title {
  font-family: 'Fredoka', sans-serif;
  color: #2D3436;
  font-weight: 600;
  font-size: 1.75rem;
}

.faq-section .faq-subtitle {
  font-size: 1rem;
  color: #636E72;
}

.faq-section .faq-search-wrapper {
  background: #FFFFFF;
  padding: 10px;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.faq-section .faq-search-box {
  border-radius: 40px;
  overflow: hidden;
}

.faq-section .faq-search-box .input-group-text {
  border: none;
  color: #FF6B6B;
  font-size: 1.25rem;
  padding-left: 20px;
}

.faq-section .faq-search-box .form-control {
  border: none;
  box-shadow: none;
  padding: 12px 20px;
  font-size: 1.1rem;
}

.faq-section .faq-search-box .form-control::placeholder {
  color: #B2BEC3;
}

.faq-section .faq-category-icon {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.faq-section .bg-primary-soft {
  background-color: rgba(255, 107, 107, 0.1);
  color: #FF6B6B;
}

.faq-section .bg-secondary-soft {
  background-color: rgba(78, 205, 196, 0.1);
  color: #4ECDC4;
}

.faq-section .faq-item {
  background: #FFFFFF;
  border-radius: 20px;
  border: 2px solid transparent;
  box-shadow: 0 5px 15px rgba(0,0,0,0.03);
  transition: all 0.3s ease;
  overflow: hidden;
}

.faq-section .faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(78, 205, 196, 0.1);
  border-color: #4ECDC4;
}

.faq-section .faq-header {
  width: 100%;
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  outline: none;
}

.faq-section .faq-question {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: #2D3436;
  padding-right: 15px;
}

.faq-section .faq-arrow {
  color: #FF6B6B;
  transition: transform 0.3s ease;
}

.faq-section .faq-item.is-active .faq-arrow {
  transform: rotate(180deg);
}

.faq-section .faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-section .faq-item.is-active .faq-body {
  max-height: 500px;
}

.faq-section .faq-content {
  padding: 0 25px 20px 25px;
  color: #636E72;
  line-height: 1.7;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .faq-section h2.faq-title {
    font-size: 1.4rem;
  }
  .faq-section .faq-question {
    font-size: 1rem;
  }
  .faq-section .faq-search-wrapper {
    border-radius: 20px;
  }
}

/* ===== PAGE: auth ===== */
.auth-section-wrapper {
  padding: 80px 0;
  background-color: #F7F9FC;
  font-family: 'Outfit', sans-serif;
  overflow: hidden;
}

.auth-section-wrapper .auth-info-card {
  background: #FFFFFF;
  border-radius: 24px;
  padding: 60px 40px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  position: relative;
  z-index: 1;
}

.auth-section-wrapper .auth-main-title {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  color: #2D3436;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.auth-section-wrapper .auth-subtitle {
  color: #636E72;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.auth-section-wrapper .auth-feature-box {
  background: #FFFFFF;
  border: 2px solid #EDF2F7;
  border-radius: 20px;
  padding: 30px;
  height: 100%;
  transition: all 0.3s ease;
}

.auth-section-wrapper .auth-feature-box:hover {
  transform: translateY(-5px);
  border-color: #4ECDC4;
  box-shadow: 0 20px 40px rgba(78,205,196,0.15);
}

.auth-section-wrapper .auth-icon-wrapper {
  width: 60px;
  height: 60px;
  background: rgba(78,205,196,0.1);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.auth-section-wrapper .auth-icon-wrapper i {
  font-size: 32px;
  color: #4ECDC4;
}

.auth-section-wrapper .auth-feature-title {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.4rem;
  color: #2D3436;
  margin-bottom: 15px;
}

.auth-section-wrapper .auth-feature-text {
  color: #636E72;
  line-height: 1.6;
  margin: 0;
}

.auth-section-wrapper .auth-guide-section {
  background: linear-gradient(135deg, rgba(255,107,107,0.05) 0%, rgba(255,230,109,0.1) 100%);
  border-radius: 24px;
  border: 1px solid rgba(255,107,107,0.1);
}

.auth-section-wrapper .auth-section-heading {
  font-family: 'Fredoka', sans-serif;
  color: #2D3436;
  font-weight: 600;
}

.auth-section-wrapper .auth-text-content {
  color: #636E72;
  line-height: 1.7;
  margin-bottom: 20px;
}

.auth-section-wrapper .auth-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.auth-section-wrapper .auth-list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: #2D3436;
  font-weight: 500;
}

.auth-section-wrapper .auth-list-item i {
  color: #FF6B6B;
  font-size: 1.2rem;
}

.auth-section-wrapper .auth-guide-img {
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.auth-section-wrapper .tip-card {
  background: #F7F9FC;
  padding: 25px;
  border-radius: 20px;
  height: 100%;
  text-align: center;
  transition: background 0.3s ease;
}

.auth-section-wrapper .tip-card:hover {
  background: #EDF2F7;
}

.auth-section-wrapper .tip-icon {
  font-size: 40px;
  color: #FF6B6B;
  margin-bottom: 15px;
  display: block;
}

.auth-section-wrapper .tip-title {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #2D3436;
}

.auth-section-wrapper .tip-desc {
  font-size: 0.95rem;
  color: #636E72;
  line-height: 1.5;
  margin: 0;
}

.auth-section-wrapper .btn-primary {
  background: linear-gradient(135deg, #FF6B6B 0%, #FF8E8E 100%);
  border: none;
  padding: 15px 35px;
  border-radius: 50px;
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  transition: all 0.3s ease;
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.auth-section-wrapper .btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(255,107,107,0.3);
  color: #FFFFFF;
}

@media (max-width: 768px) {
  .auth-section-wrapper {
    padding: 40px 0;
  }
  .auth-section-wrapper .auth-info-card {
    padding: 30px 20px;
  }
  .auth-section-wrapper .auth-main-title {
    font-size: 1.8rem;
  }
  .auth-section-wrapper .auth-feature-box {
    padding: 20px;
  }
}

.comment-card-arcade {
    background: #FFFFFF;
    border-radius: 24px;
    border: 2px solid #EDF2F7;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.comment-card-arcade:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(78, 205, 196, 0.2);
    border-color: #4ECDC4;
}

.arcade-avatar {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    object-fit: cover;
    border: 3px solid #FF6B6B;
}

.heading-font {
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    color: #2D3436;
}

.body-font {
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
}

.badge-quest {
    background: #FFE66D;
    color: #2D3436;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.btn-arcade-action {
    background: transparent;
    border: none;
    color: #636E72;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0;
    transition: color 0.2s;
}

.btn-arcade-action:hover {
    color: #FF6B6B;
}

.reply-card-arcade {
    background: rgba(78, 205, 196, 0.05);
    border-radius: 20px;
    border-left: 4px solid #4ECDC4;
    position: relative;
}

.arcade-avatar-sm {
    width: 48px;
    height: 48px;
    border-radius: 15px;
    object-fit: cover;
    border: 2px solid #4ECDC4;
}

.badge-admin {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E8E 100%);
    color: #FFFFFF;
    padding: 2px 10px;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 600;
}

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


/* ===== PAGE TEMPLATE: games-list ===== */
.game-detail-block {
    background-color: #F7F9FC;
    min-height: 80vh;
}

.game-frame-container {
    position: relative;
    width: 100%;
    height: 500px;
    background: #000;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

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

#gameIframe {
    height: 100%;
    width: 100%;
}

.iframe-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(45, 52, 54, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: opacity 0.4s ease;
}

.btn-play-action {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E8E 100%);
    border: none;
    color: #fff;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.4);
    transition: transform 0.2s;
}

.btn-play-action:hover {
    transform: scale(1.05);
}

.btn-play-action i {
    font-size: 2rem;
}

.btn-fs-toggle,
.btn-fs-exit {
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 11;
    transition: background 0.2s;
}

.btn-fs-toggle:hover {
    background: rgba(255, 255, 255, 0.4);
}

.btn-fs-exit {
    display: none;
    top: 20px;
    bottom: auto;
}

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

.js-fullscreen-active .btn-fs-exit {
    display: flex;
}

.js-fullscreen-active .btn-fs-toggle {
    display: none;
}

.game-info-card,
.sidebar-card,
.comment-form-box {
    background: #FFFFFF;
    border-radius: 20px;
    border: 2px solid #EDF2F7;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.badge-cat {
    background: rgba(78, 205, 196, 0.1);
    color: #4ECDC4;
    padding: 4px 12px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
}

.game-meta {
    border-bottom: 1px solid #F1F4F9;
    padding-bottom: 20px;
}

.meta-item {
    color: #636E72;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.meta-item i {
    color: #FF6B6B;
}

.content-area ul.custom-list {
    list-style: none;
    padding-left: 0;
}

.content-area ul.custom-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.content-area ul.custom-list li::before {
    content: '\f061';
    font-family: 'Phosphor-Bold';
    position: absolute;
    left: 0;
    color: #4ECDC4;
}

.comment-card-arcade,
.reply-card-arcade {
    background: #fff;
    border-radius: 20px;
    border-left: 5px solid #FF6B6B;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.reply-card-arcade {
    border-left-color: #4ECDC4;
}

.arcade-avatar {
    width: 50px;
    height: 50px;
    background: #EDF2F7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #4ECDC4;
}

.arcade-avatar-sm {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

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

.btn-arcade-action:hover {
    color: #FF6B6B;
}

.btn-arcade-action.active {
    color: #FF6B6B;
}

.badge-quest,
.badge-admin {
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 6px;
}

.badge-quest {
    background: #FFE66D;
    color: #333;
}

.badge-admin {
    background: #4ECDC4;
    color: #fff;
}

.btn-social-share {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: transform 0.2s;
    text-decoration: none;
}

.btn-social-share:hover {
    transform: translateY(-3px);
    color: #fff;
}

.btn-social-share.fb {
    background: #3b5998;
}

.btn-social-share.tw {
    background: #1da1f2;
}

.btn-social-share.tg {
    background: #0088cc;
}

.badge-link {
    background: #EDF2F7;
    color: #2D3436;
    padding: 6px 14px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.badge-link:hover {
    background: #FF6B6B;
    color: #fff;
}

/* Responsive comment cards */
@media (max-width: 575.98px) {
    .comment-card-arcade {
        padding: 1.25rem !important;
    }

    .comment-card-arcade .d-flex.gap-3 {
        gap: 0.75rem !important;
    }

    .comment-card-arcade .arcade-avatar {
        width: 44px;
        height: 44px;
        font-size: 44px;
    }

    .comment-card-arcade .d-flex.justify-content-between.align-items-center {
        flex-wrap: wrap;
        gap: 0.35rem;
    }

    .comment-card-arcade .d-flex.gap-3.align-items-center {
        flex-wrap: wrap;
        gap: 0.5rem 1.25rem !important;
    }

    .comment-card-arcade .btn-arcade-action {
        white-space: nowrap;
        font-size: 0.9rem;
    }

    .comment-card-arcade .d-flex.gap-3.align-items-center .ms-auto {
        margin-left: 0 !important;
        flex-basis: 100%;
        white-space: nowrap;
    }
}