:root {
    --primary-brand: #10B981;
    --primary-brand-hover: #059669;
    --secondary-brand: #3B82F6;
    --accent-color: #F59E0B;
    --background-main: #F8FAFC;
    --background-surface: #FFFFFF;
    --background-alt: #F1F5F9;
    --text-light-bg-primary: #0F172A;
    --text-light-bg-secondary: #475569;
    --text-light-bg-muted: #94A3B8;
    --border-color: #E2E8F0;
    --focus-ring: rgba(16, 185, 129, 0.4);
}

body {
    font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
    background-color: var(--background-main);
    color: var(--text-light-bg-primary);
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: background-color 0.3s ease, color 0.3s ease;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

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

.breezy-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
}

.breezy-btn-primary {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    border-radius: 9999px;
    padding: 12px 28px;
    background-color: var(--primary-brand);
    color: #FFFFFF;
    border: none;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.breezy-btn-primary:hover {
    background-color: var(--primary-brand-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.6);
}

.breezy-btn-secondary {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    border-radius: 9999px;
    padding: 12px 28px;
    background-color: var(--secondary-brand);
    color: #FFFFFF;
    border: none;
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.breezy-btn-secondary:hover {
    background-color: #2563EB;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.5);
}

.breezy-btn-outline {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    border-radius: 9999px;
    padding: 12px 28px;
    background-color: transparent;
    color: var(--primary-brand);
    border: 2px solid var(--primary-brand);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.breezy-btn-outline:hover {
    background-color: var(--primary-brand);
    color: #FFFFFF;
    transform: translateY(-2px);
}

/* ===== header ===== */
.breezy-header {
    background-color: #FFFFFF;
    border-bottom: 1px solid #E2E8F0;
    z-index: 1030;
}

.breezy-header .breezy-navbar {
    padding: 1rem 0;
    background-color: #FFFFFF;
}

.breezy-header .breezy-logo {
    max-height: 40px;
    max-width: 40px;
    object-fit: contain;
}

.breezy-header .breezy-brand-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: #0F172A;
}

.breezy-header .nav-link {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    color: #475569;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.breezy-header .nav-link:hover,
.breezy-header .nav-link:focus {
    color: #10B981;
}

.breezy-header .navbar-nav .show>.nav-link {
    color: #10B981;
}

.breezy-header .dropdown-menu {
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
    background-color: #FFFFFF;
    padding: 0.5rem;
}

.breezy-header .dropdown-item {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    color: #475569;
    border-radius: 8px;
    padding: 0.6rem 1.2rem;
    transition: all 0.2s ease;
}

.breezy-header .dropdown-item:hover,
.breezy-header .dropdown-item:focus {
    background-color: #F1F5F9;
    color: #10B981;
}

.breezy-header .breezy-cta-btn {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: #FFFFFF;
    background-color: #10B981;
    border: none;
    border-radius: 9999px;
    padding: 0.6rem 1.5rem;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.3);
    transition: all 0.3s ease;
}

.breezy-header .breezy-cta-btn:hover,
.breezy-header .breezy-cta-btn:focus {
    color: #FFFFFF;
    background-color: #059669;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

@media (max-width: 991.98px) {
    .breezy-header .navbar-collapse {
        background-color: #FFFFFF;
        padding: 1.5rem 1rem;
        border-radius: 16px;
        margin-top: 1rem;
        box-shadow: 0 15px 30px rgba(15, 23, 42, 0.1);
        border: 1px solid #E2E8F0;
    }

    .breezy-header .nav-link {
        padding: 0.8rem 1rem;
        border-bottom: 1px solid #F1F5F9;
    }

    .breezy-header .nav-item:last-child .nav-link {
        border-bottom: none;
    }

    .breezy-header .dropdown-menu {
        border: none;
        box-shadow: none;
        padding-left: 1.5rem;
        background-color: #F8FAFC;
    }

    .breezy-header .breezy-cta-btn {
        width: 100%;
        text-align: center;
        margin-top: 1rem;
    }
}

/* ===== hero ===== */
.breezy-hero {
    min-height: 90vh;
    background-color: #F8FAFC;
    z-index: 1;
}

.breezy-hero-video {
    z-index: 0;
    pointer-events: none;
}

.breezy-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(248, 250, 252, 0.9);
    z-index: 1;
}

.breezy-hero-content {
    z-index: 2;
}

.breezy-hero-badge {
    background-color: rgba(16, 185, 129, 0.1);
    color: #10B981 !important;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.breezy-hero-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 2.75rem;
    line-height: 1.2;
    color: #0F172A;
}

.breezy-hero-lead {
    font-family: 'Outfit', sans-serif;
    font-size: 1.125rem;
    line-height: 1.6;
    color: #475569;
}

.breezy-hero-btn-primary {
    background-color: #10B981 !important;
    border-color: #10B981 !important;
    color: #FFFFFF !important;
    font-weight: 600;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.4);
    transition: all 0.3s ease;
}

.breezy-hero-btn-primary:hover {
    background-color: #059669 !important;
    border-color: #059669 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.6);
}

.breezy-hero-btn-outline {
    background-color: transparent !important;
    border: 2px solid #10B981 !important;
    color: #10B981 !important;
    font-weight: 600;
    transition: all 0.3s ease;
}

.breezy-hero-btn-outline:hover {
    background-color: #10B981 !important;
    color: #FFFFFF !important;
    transform: translateY(-2px);
}

.breezy-hero-illustration-wrapper {
    width: 100%;
    max-width: 480px;
    height: 480px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.breezy-hero-organic-shape {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(59, 130, 246, 0.2) 100%);
    border-radius: 43% 57% 65% 35% / 40% 45% 55% 60%;
    filter: blur(10px);
    animation: organic-morph 15s ease-in-out infinite alternate;
    z-index: 1;
}

@keyframes organic-morph {
    0% {
        border-radius: 43% 57% 65% 35% / 40% 45% 55% 60%;
    }

    50% {
        border-radius: 60% 40% 45% 55% / 50% 60% 40% 50%;
    }

    100% {
        border-radius: 43% 57% 65% 35% / 40% 45% 55% 60%;
    }
}

.breezy-hero-main-img {
    max-width: 85%;
    height: auto;
    z-index: 2;
    filter: drop-shadow(0 20px 30px rgba(15, 23, 42, 0.15));
    animation: float-main 6s ease-in-out infinite;
}

@keyframes float-main {

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

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

.breezy-floating-card {
    border: 1px solid #E2E8F0;
    z-index: 3;
}

.breezy-floating-card.card-1 {
    top: 15%;
    left: -10%;
    animation: float-card-1 5s ease-in-out infinite;
}

.breezy-floating-card.card-2 {
    bottom: 15%;
    right: -10%;
    animation: float-card-2 5.5s ease-in-out infinite;
}

.breezy-floating-card.card-3 {
    top: 10%;
    right: 5%;
    width: 44px;
    height: 44px;
    animation: float-card-3 4.5s ease-in-out infinite;
}

.breezy-floating-icon {
    width: 40px;
    height: 40px;
}

.bg-emerald-light {
    background-color: rgba(16, 185, 129, 0.1);
}

.bg-blue-light {
    background-color: rgba(59, 130, 246, 0.1);
}

.breezy-floating-title {
    font-size: 0.875rem;
    color: #0F172A;
}

.breezy-floating-desc {
    font-size: 0.75rem;
}

.text-muted-custom {
    color: #64748B;
}

@keyframes float-card-1 {

    0%,
    100% {
        transform: translateY(0) rotate(-2deg);
    }

    50% {
        transform: translateY(-10px) rotate(1deg);
    }
}

@keyframes float-card-2 {

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

    50% {
        transform: translateY(-8px) rotate(-1deg);
    }
}

@keyframes float-card-3 {

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

    50% {
        transform: translateY(-12px) scale(1.1);
    }
}

@media (max-width: 991.98px) {
    .breezy-hero {
        min-height: auto;
        padding-top: 80px;
        padding-bottom: 60px;
    }

    .breezy-hero-title {
        font-size: 2.25rem;
    }

    .breezy-hero-illustration-wrapper {
        margin-top: 40px;
        height: 360px;
        max-width: 360px;
    }
}

@media (max-width: 767.98px) {
    .breezy-hero-title {
        font-size: 18px !important;
        hyphens: auto;
    }

    .breezy-hero-lead {
        font-size: 14px !important;
    }
}

/* ===== daily-challenge ===== */
.breezy-daily-challenge {
    background-color: #F8FAFC;
    font-family: 'Outfit', sans-serif;
}

.breezy-daily-challenge .challenge-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #0F172A;
}

.breezy-daily-challenge .challenge-subtitle {
    color: #475569;
}

.breezy-daily-challenge .text-secondary {
    color: #475569 !important;
}

.breezy-daily-challenge .text-dark {
    color: #0F172A !important;
}

.breezy-daily-challenge .challenge-card,
.breezy-daily-challenge .leaderboard-card {
    background-color: #FFFFFF;
    border: 1px solid #E2E8F0 !important;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.breezy-daily-challenge .challenge-card:hover,
.breezy-daily-challenge .leaderboard-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(15, 23, 42, 0.08);
}

.breezy-daily-challenge .hover-primary {
    transition: color 0.2s ease;
}

.breezy-daily-challenge .hover-primary:hover {
    color: #10B981 !important;
}

.breezy-daily-challenge .reward-box {
    background-color: rgba(245, 158, 11, 0.1) !important;
    border: 1px solid rgba(245, 158, 11, 0.3) !important;
}

.breezy-daily-challenge .reward-icon-container {
    background-color: #F59E0B;
}

.breezy-daily-challenge .table th {
    font-weight: 600;
    border-bottom: 2px solid #E2E8F0;
    color: #475569;
}

.breezy-daily-challenge .table td {
    padding: 1rem 0.75rem;
    border-bottom: 1px solid #F1F5F9;
}

.breezy-daily-challenge .leaderboard-row {
    transition: background-color 0.2s ease;
}

.breezy-daily-challenge .leaderboard-row:hover {
    background-color: #F8FAFC;
}

.breezy-daily-challenge .timer-wrapper {
    background-color: #FFFFFF;
    border: 1px solid #E2E8F0 !important;
}

/* ===== controls-rules ===== */
.controls-rules-section {
    background-color: #F8FAFC;
    padding: 60px 0;
    font-family: 'Outfit', sans-serif;
}

.controls-rules-section .section-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #0F172A;
    font-weight: 800;
    margin-bottom: 12px;
    font-size: 2.25rem;
}

.controls-rules-section .section-subtitle {
    color: #475569;
    font-size: 1.125rem;
    max-width: 700px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

.controls-rules-section .tab-btn {
    background-color: #FFFFFF;
    color: #475569;
    border: 1px solid #E2E8F0;
    padding: 12px 28px;
    border-radius: 9999px;
    font-weight: 600;
    font-family: 'Plus Jakarta Sans', sans-serif;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 6px;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}

.controls-rules-section .tab-btn:hover {
    background-color: #F1F5F9;
    color: #10B981;
    transform: translateY(-2px);
}

.controls-rules-section .tab-btn.active {
    background-color: #10B981;
    color: #FFFFFF;
    border-color: #10B981;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.4);
}

.controls-rules-section .control-card {
    background-color: #FFFFFF;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
    height: 100%;
    border: 1px solid #E2E8F0;
    transition: transform 0.3s ease;
}

.controls-rules-section .control-card:hover {
    transform: translateY(-4px);
}

.controls-rules-section .card-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #0F172A;
    font-weight: 700;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
}

.controls-rules-section .card-title i {
    font-size: 1.75rem;
}

.controls-rules-section .text-primary-brand {
    color: #10B981;
}

.controls-rules-section .text-secondary-brand {
    color: #3B82F6;
}

.controls-rules-section .key-cap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #F1F5F9;
    border: 1px solid #CBD5E1;
    border-bottom-width: 3px;
    border-radius: 6px;
    padding: 6px 12px;
    font-weight: 700;
    color: #0F172A;
    min-width: 36px;
    font-family: monospace;
    margin-left: 4px;
    font-size: 0.9rem;
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.05);
}

.controls-rules-section .control-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid #F1F5F9;
    flex-wrap: wrap;
    gap: 12px;
}

.controls-rules-section .control-item:last-child {
    border-bottom: none;
}

.controls-rules-section .control-label {
    color: #475569;
    font-weight: 500;
    font-size: 1rem;
}

.controls-rules-section .rule-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.controls-rules-section .rule-list li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 20px;
    color: #475569;
    line-height: 1.7;
    font-size: 1.05rem;
}

.controls-rules-section .rule-list li:last-child {
    margin-bottom: 0;
}

.controls-rules-section .rule-list li i {
    position: absolute;
    left: 0;
    top: 4px;
    color: #3B82F6;
    font-size: 1.2rem;
}

@media (max-width: 767.98px) {
    .controls-rules-section {
        padding: 40px 0;
    }

    .controls-rules-section .section-title {
        font-size: 1.75rem;
    }

    .controls-rules-section .section-subtitle {
        font-size: 1rem;
        margin-bottom: 24px;
    }

    .controls-rules-section .tab-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .controls-rules-section .control-card {
        padding: 20px;
    }

    .controls-rules-section .card-title {
        font-size: 1.25rem;
    }
}

/* ===== random-game ===== */
.breezy-random-game {
    background-color: #F8FAFC;
    font-family: 'Plus Jakarta Sans', 'Outfit', sans-serif;
}

.breezy-random-game .breezy-badge {
    background-color: rgba(16, 185, 129, 0.1);
    color: #10B981;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.breezy-random-game .breezy-heading {
    color: #0F172A;
    font-size: 2.25rem;
    font-weight: 800;
}

.breezy-random-game .breezy-lead {
    color: #475569;
    font-size: 1.125rem;
}

.breezy-random-game .breezy-generator-box {
    background-color: #FFFFFF;
    border: 1px solid #E2E8F0;
    transition: all 0.3s ease;
}

.breezy-random-game .breezy-btn-primary {
    background-color: #10B981;
    color: #FFFFFF;
    font-weight: 700;
    border: none;
    transition: all 0.3s ease;
}

.breezy-random-game .breezy-btn-primary:hover {
    background-color: #059669;
    color: #FFFFFF;
    transform: translateY(-2px);
}

.breezy-random-game .breezy-btn-secondary {
    background-color: #3B82F6;
    color: #FFFFFF;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
}

.breezy-random-game .breezy-btn-secondary:hover {
    background-color: #2563EB;
    color: #FFFFFF;
    transform: translateY(-2px);
}

.breezy-random-game .breezy-btn-outline {
    background-color: transparent;
    color: #10B981;
    border: 2px solid #10B981;
    font-weight: 600;
    transition: all 0.3s ease;
}

.breezy-random-game .breezy-btn-outline:hover {
    background-color: #10B981;
    color: #FFFFFF;
    transform: translateY(-2px);
}

.breezy-random-game .text-emerald {
    color: #10B981;
}

.breezy-random-game .breezy-loading-text {
    color: #475569;
    font-weight: 500;
}

.breezy-random-game .breezy-game-img-wrapper {
    aspect-ratio: 4/3;
    width: 100%;
    background-color: #F1F5F9;
    overflow: hidden;
}

.breezy-random-game .breezy-game-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.breezy-random-game .breezy-game-img-wrapper:hover img {
    transform: scale(1.05);
}

.breezy-random-game .breezy-category-badge {
    background-color: #F59E0B;
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 9999px;
    text-transform: uppercase;
}

.breezy-random-game .breezy-game-desc {
    color: #475569;
    line-height: 1.6;
}

.breezy-random-game .text-light-gray {
    color: #CBD5E1;
}

.breezy-random-game .breezy-placeholder-text {
    color: #94A3B8;
    font-size: 1rem;
}

@keyframes breezy-bounce {

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

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

.breezy-random-game .breezy-spinner i {
    animation: breezy-bounce 0.8s infinite ease-in-out;
}

@media (max-width: 767.98px) {
    .breezy-random-game .breezy-heading {
        font-size: 1.75rem;
    }

    .breezy-random-game .breezy-lead {
        font-size: 1rem;
    }

    .breezy-random-game .breezy-game-img-wrapper {
        aspect-ratio: 16/9;
    }
}

/* ===== guides-preview ===== */
.guides-preview-section {
    background-color: #F8FAFC;
    font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
    color: #334155;
}

.guides-preview-section .guides-subtitle {
    color: #10B981;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
}

.guides-preview-section .guides-title {
    color: #0F172A;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 2.25rem;
}

.guides-preview-section .guides-view-all-btn {
    border-radius: 9999px;
    padding: 10px 24px;
    font-weight: 600;
    border-color: #10B981;
    color: #10B981;
    background-color: transparent;
    transition: all 0.3s ease;
}

.guides-preview-section .guides-view-all-btn:hover {
    background-color: #10B981;
    border-color: #10B981;
    color: #FFFFFF;
}

.guides-preview-section .guides-card {
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    background-color: #FFFFFF;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.guides-preview-section .guides-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.1);
}

.guides-preview-section .guides-image-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.guides-preview-section .guides-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.guides-preview-section .guides-card:hover .guides-card-img {
    transform: scale(1.05);
}

.guides-preview-section .guides-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background-color: #F59E0B;
    color: #FFFFFF;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.guides-preview-section .guides-card-body {
    padding: 24px;
}

.guides-preview-section .guides-meta {
    font-size: 0.85rem;
    color: #475569;
}

.guides-preview-section .guides-meta-item i {
    color: #10B981;
}

.guides-preview-section .guides-card-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
}

.guides-preview-section .guides-card-title a {
    color: #0F172A;
    text-decoration: none;
    transition: color 0.2s ease;
}

.guides-preview-section .guides-card-title a:hover {
    color: #10B981;
}

.guides-preview-section .guides-card-text {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.6;
}

.guides-preview-section .guides-card-btn {
    background-color: #10B981;
    border-color: #10B981;
    color: #FFFFFF;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 9999px;
    transition: all 0.3s ease;
}

.guides-preview-section .guides-card-btn:hover {
    background-color: #059669;
    border-color: #059669;
    color: #FFFFFF;
}

@media (max-width: 767.98px) {
    .guides-preview-section .guides-title {
        font-size: 1.75rem;
    }

    .guides-preview-section .guides-image-wrapper {
        height: 180px;
    }
}

/* ===== games-grid ===== */
.breezy-games-grid-section {
    padding: 60px 0;
    background-color: #F8FAFC;
    font-family: 'Outfit', sans-serif;
}

.breezy-games-grid-section .breezy-section-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #0F172A;
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.breezy-games-grid-section .breezy-section-subtitle {
    color: #475569;
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

.breezy-games-grid-section .breezy-btn-filter {
    background-color: #FFFFFF;
    color: #475569;
    border: 1px solid #E2E8F0;
    border-radius: 9999px;
    padding: 10px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.breezy-games-grid-section .breezy-btn-filter:hover {
    background-color: #F1F5F9;
    color: #0F172A;
    border-color: #CBD5E1;
}

.breezy-games-grid-section .breezy-btn-filter.active {
    background-color: #10B981;
    color: #FFFFFF;
    border-color: #10B981;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.4);
}

.breezy-games-grid-section .breezy-game-card {
    background-color: #FFFFFF;
    border-radius: 20px;
    border: 1px solid #E2E8F0;
    padding: 16px;
    width: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.breezy-games-grid-section .breezy-game-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 20px 35px rgba(15, 23, 42, 0.1);
    border-color: #CBD5E1;
}

.breezy-games-grid-section .breezy-card-img-wrapper {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 16px;
    background-color: #F1F5F9;
}

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

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

.breezy-games-grid-section .breezy-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: rgba(15, 23, 42, 0.85);
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 8px;
    backdrop-filter: blur(4px);
    z-index: 2;
}

.breezy-games-grid-section .breezy-card-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.breezy-games-grid-section .breezy-card-title-link {
    text-decoration: none;
}

.breezy-games-grid-section .breezy-game-title {
    color: #0F172A;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
    transition: color 0.2s ease;
}

.breezy-games-grid-section .breezy-card-title-link:hover .breezy-game-title {
    color: #10B981;
}

.breezy-games-grid-section .breezy-btn-play {
    display: block;
    width: 100%;
    text-align: center;
    background-color: #10B981;
    color: #FFFFFF;
    font-weight: 700;
    padding: 12px 20px;
    border-radius: 9999px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    font-size: 0.95rem;
}

.breezy-games-grid-section .breezy-btn-play:hover {
    background-color: #059669;
    color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

@keyframes breezyFadeIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

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

.breezy-games-grid-section .breezy-animate-fade-in {
    animation: breezyFadeIn 0.4s ease forwards;
}

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

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

    .breezy-games-grid-section {
        padding: 40px 0;
    }
}

/* ===== footer ===== */
.breezy-footer {
    background-color: #F1F5F9;
    border-top: 1px solid #E2E8F0;
    color: #475569;
    font-family: 'Outfit', sans-serif;
}

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

.breezy-footer .footer-brand-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: #0F172A;
}

.breezy-footer .footer-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #475569;
}

.breezy-footer .footer-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: #0F172A;
}

.breezy-footer .footer-links a {
    color: #475569;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease-in-out;
}

.breezy-footer .footer-links a:hover {
    color: #10B981;
    padding-left: 4px;
}

.breezy-footer .footer-contact-info {
    font-size: 0.9rem;
}

.breezy-footer .footer-contact-info a {
    color: #475569;
    text-decoration: none;
    transition: color 0.2s;
}

.breezy-footer .footer-contact-info a:hover {
    color: #10B981;
}

.breezy-footer .footer-contact-info i {
    color: #10B981;
    width: 20px;
}

.breezy-footer .footer-map-wrapper {
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
}

.breezy-footer .footer-divider {
    border-color: #E2E8F0;
    opacity: 1;
}

.breezy-footer .copyright-text {
    font-size: 0.85rem;
    color: #94A3B8;
}

.breezy-header {
    background-color: #FFFFFF;
    border-bottom: 1px solid #E2E8F0;
    z-index: 1030;
}

.breezy-header .breezy-navbar {
    padding: 1rem 0;
    background-color: #FFFFFF;
}

.breezy-header .breezy-logo {
    max-height: 40px;
    max-width: 40px;
    object-fit: contain;
}

.breezy-header .breezy-brand-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: #0F172A;
}

.breezy-header .nav-link {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    color: #475569;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.breezy-header .nav-link:hover,
.breezy-header .nav-link:focus {
    color: #10B981;
}

.breezy-header .navbar-nav .show>.nav-link {
    color: #10B981;
}

.breezy-header .dropdown-menu {
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
    background-color: #FFFFFF;
    padding: 0.5rem;
}

.breezy-header .dropdown-item {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    color: #475569;
    border-radius: 8px;
    padding: 0.6rem 1.2rem;
    transition: all 0.2s ease;
}

.breezy-header .dropdown-item:hover,
.breezy-header .dropdown-item:focus {
    background-color: #F1F5F9;
    color: #10B981;
}

.breezy-header .breezy-cta-btn {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: #FFFFFF;
    background-color: #10B981;
    border: none;
    border-radius: 9999px;
    padding: 0.6rem 1.5rem;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.3);
    transition: all 0.3s ease;
}

.breezy-header .breezy-cta-btn:hover,
.breezy-header .breezy-cta-btn:focus {
    color: #FFFFFF;
    background-color: #059669;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

@media (max-width: 991.98px) {
    .breezy-header .navbar-collapse {
        background-color: #FFFFFF;
        padding: 1.5rem 1rem;
        border-radius: 16px;
        margin-top: 1rem;
        box-shadow: 0 15px 30px rgba(15, 23, 42, 0.1);
        border: 1px solid #E2E8F0;
    }

    .breezy-header .nav-link {
        padding: 0.8rem 1rem;
        border-bottom: 1px solid #F1F5F9;
    }

    .breezy-header .nav-item:last-child .nav-link {
        border-bottom: none;
    }

    .breezy-header .dropdown-menu {
        border: none;
        box-shadow: none;
        padding-left: 1.5rem;
        background-color: #F8FAFC;
    }

    .breezy-header .breezy-cta-btn {
        width: 100%;
        text-align: center;
        margin-top: 1rem;
    }
}

.breezy-footer {
    background-color: #F1F5F9;
    border-top: 1px solid #E2E8F0;
    color: #475569;
    font-family: 'Outfit', sans-serif;
}

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

.breezy-footer .footer-brand-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: #0F172A;
}

.breezy-footer .footer-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #475569;
}

.breezy-footer .footer-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: #0F172A;
}

.breezy-footer .footer-links a {
    color: #475569;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease-in-out;
}

.breezy-footer .footer-links a:hover {
    color: #10B981;
    padding-left: 4px;
}

.breezy-footer .footer-contact-info {
    font-size: 0.9rem;
}

.breezy-footer .footer-contact-info a {
    color: #475569;
    text-decoration: none;
    transition: color 0.2s;
}

.breezy-footer .footer-contact-info a:hover {
    color: #10B981;
}

.breezy-footer .footer-contact-info i {
    color: #10B981;
    width: 20px;
}

.breezy-footer .footer-map-wrapper {
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
}

.breezy-footer .footer-divider {
    border-color: #E2E8F0;
    opacity: 1;
}

.breezy-footer .copyright-text {
    font-size: 0.85rem;
    color: #94A3B8;
}

.breezy-category-hero {
    background: linear-gradient(135deg, #ECFDF5 0%, #EFF6FF 100%);
    border-bottom: 1px solid #E2E8F0;
}

.breezy-category-hero-shape {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    top: -50px;
    right: -50px;
    z-index: 1;
}

.breezy-category-hero-badge {
    background-color: rgba(16, 185, 129, 0.1);
    color: #10B981 !important;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
}

.breezy-category-hero-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    color: #0F172A;
}

.breezy-category-hero-lead {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    color: #475569;
    max-width: 600px;
    line-height: 1.6;
}

.breezy-guide-list {
    background-color: #F8FAFC;
}

.breezy-guide-list .js-filter-btn {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: #475569;
    background-color: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 9999px;
    padding: 0.6rem 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(15, 23, 42, 0.05);
}

.breezy-guide-list .js-filter-btn:hover {
    color: #10B981;
    background-color: #ECFDF5;
    border-color: #10B981;
}

.breezy-guide-list .js-filter-btn.active {
    color: #FFFFFF;
    background-color: #10B981;
    border-color: #10B981;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.3);
}

.breezy-guide-list .js-search-input {
    font-family: 'Outfit', sans-serif;
    background-color: #FFFFFF;
    color: #0F172A;
    border: 1px solid #E2E8F0;
    border-radius: 0 9999px 9999px 0;
    padding: 0.6rem 1.2rem;
    font-size: 0.95rem;
}

.breezy-guide-list .js-search-input::placeholder {
    color: #94A3B8;
    opacity: 1;
}

.breezy-guide-list .input-group-text {
    border-radius: 9999px 0 0 9999px;
    border: 1px solid #E2E8F0;
    padding-left: 1.2rem;
    background-color: #FFFFFF;
}

.breezy-guide-list .card {
    background-color: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.breezy-guide-list .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(15, 23, 42, 0.1);
}

.breezy-guide-list .card-img-wrapper {
    height: 220px;
    position: relative;
}

.breezy-guide-list .card-img-top {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.breezy-guide-list .card:hover .card-img-top {
    transform: scale(1.05);
}

.breezy-guide-list .bg-emerald-badge {
    background-color: #10B981;
    color: #FFFFFF;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
}

.breezy-guide-list .bg-blue-badge {
    background-color: #3B82F6;
    color: #FFFFFF;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
}

.breezy-guide-list .bg-amber-badge {
    background-color: #F59E0B;
    color: #FFFFFF;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
}

.breezy-guide-list .text-muted-custom {
    color: #64748B;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
}

.breezy-guide-list .card-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: #0F172A;
    line-height: 1.4;
}

.breezy-guide-list .card-text {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
}

.breezy-guide-list .btn-primary {
    background-color: #10B981;
    border: none;
    color: #FFFFFF;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.3);
    transition: all 0.3s ease;
}

.breezy-guide-list .btn-primary:hover {
    background-color: #059669;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
    transform: translateY(-2px);
}

@media (max-width: 767.98px) {
    .breezy-category-hero-title {
        font-size: 18px !important;
        hyphens: auto;
    }

    .breezy-category-hero-lead {
        font-size: 14px !important;
    }

    .breezy-guide-list .card-title {
        font-size: 14px !important;
        hyphens: auto;
    }
}


/* ===== PAGE: privacy ===== */
.policy-content-wrapper { font-family: 'Outfit', sans-serif; color: #475569; background-color: #ffffff; padding: 3rem 2rem; border-radius: 20px; box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05); margin: 2rem auto; max-width: 960px; line-height: 1.8; } .policy-content-wrapper .policy-header { border-bottom: 2px solid #E2E8F0; padding-bottom: 1.5rem; margin-bottom: 2.5rem; } .policy-content-wrapper .policy-header h2 { font-family: 'Plus Jakarta Sans', sans-serif; color: #0F172A; font-size: 2.25rem; font-weight: 700; margin: 0 0 0.5rem 0; } .policy-content-wrapper .policy-meta { font-size: 0.875rem; color: #94A3B8; font-weight: 500; margin: 0; } .policy-content-wrapper .policy-section { margin-bottom: 2.5rem; } .policy-content-wrapper .policy-section h3 { font-family: 'Plus Jakarta Sans', sans-serif; color: #0F172A; font-size: 1.5rem; font-weight: 600; margin-top: 0; margin-bottom: 1rem; display: flex; align-items: center; gap: 0.75rem; } .policy-content-wrapper .policy-section h3::before { content: ''; display: inline-block; width: 4px; height: 1.25rem; background-color: #10B981; border-radius: 9999px; } .policy-content-wrapper .policy-section p { font-size: 1rem; margin-bottom: 1rem; text-align: justify; } .policy-content-wrapper .policy-section ul { list-style-type: none; padding-left: 0; margin-bottom: 1rem; } .policy-content-wrapper .policy-section ul li { position: relative; padding-left: 1.5rem; margin-bottom: 0.75rem; font-size: 1rem; } .policy-content-wrapper .policy-section ul li::before { content: '\f00c'; font-family: 'Font Awesome 5 Free'; font-weight: 900; color: #10B981; position: absolute; left: 0; top: 0.2rem; font-size: 0.875rem; } .policy-content-wrapper .policy-section strong { color: #0F172A; font-weight: 600; } .policy-content-wrapper .policy-section a { color: #10B981; text-decoration: none; font-weight: 500; transition: color 0.2s ease; } .policy-content-wrapper .policy-section a:hover { color: #059669; text-decoration: underline; } @media (max-width: 768px) { .policy-content-wrapper { padding: 1.5rem 1rem; margin: 1rem; border-radius: 12px; } .policy-content-wrapper .policy-header h2 { font-size: 1.5rem; } .policy-content-wrapper .policy-section h3 { font-size: 1.25rem; } .policy-content-wrapper .policy-section p, .policy-content-wrapper .policy-section ul li { font-size: 0.9375rem; } }

/* ===== PAGE: terms ===== */
.policy-content-wrapper { font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif; color: #0f172a; background-color: #ffffff; padding: 2.5rem; border-radius: 16px; box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05); border: 1px solid #e2e8f0; margin: 2rem auto; max-width: 900px; line-height: 1.7; } .policy-content-wrapper h1 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 2.25rem; font-weight: 700; color: #0f172a; margin-bottom: 1.5rem; border-bottom: 3px solid #10b981; padding-bottom: 0.75rem; } .policy-content-wrapper h2 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.5rem; font-weight: 600; color: #0f172a; margin-top: 2rem; margin-bottom: 1rem; border-left: 4px solid #10b981; padding-left: 10px; } .policy-content-wrapper p { font-size: 1rem; color: #475569; margin-bottom: 1.25rem; text-align: justify; } .policy-content-wrapper ul { margin-bottom: 1.25rem; padding-left: 0; list-style-type: none; } .policy-content-wrapper ul li { position: relative; font-size: 1rem; color: #475569; margin-bottom: 0.75rem; padding-left: 1.5rem; } .policy-content-wrapper ul li::before { content: "•"; color: #047857; font-weight: bold; font-size: 1.25rem; position: absolute; left: 0; top: -2px; } .policy-content-wrapper a { color: #1d4ed8; text-decoration: none; transition: color 0.2s ease-in-out; font-weight: 500; } .policy-content-wrapper a:hover { color: #1e40af; text-decoration: underline; } .policy-content-wrapper strong { color: #0f172a; font-weight: 600; } @media (max-width: 768px) { .policy-content-wrapper { padding: 1.5rem; margin: 1rem; border-radius: 12px; } .policy-content-wrapper h1 { font-size: 1.75rem; } .policy-content-wrapper h2 { font-size: 1.25rem; } .policy-content-wrapper p, .policy-content-wrapper ul li { font-size: 0.95rem; } }

/* ===== PAGE: disclaimer ===== */
.policy-content-wrapper { font-family: 'Outfit', sans-serif; color: #475569; background-color: #F8FAFC; padding: 48px 24px; } .policy-content-wrapper .disclaimer-container { max-width: 900px; margin: 0 auto; background-color: #FFFFFF; border-radius: 24px; padding: 48px; box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05); border: 1px solid #E2E8F0; } @media (max-width: 768px) { .policy-content-wrapper { padding: 24px 12px; } .policy-content-wrapper .disclaimer-container { padding: 24px 16px; border-radius: 16px; } } .policy-content-wrapper .disclaimer-header { text-align: center; border-bottom: 2px solid #F1F5F9; padding-bottom: 32px; margin-bottom: 32px; } .policy-content-wrapper .disclaimer-badge { display: inline-block; background-color: #ECFDF5; color: #10B981; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 600; font-size: 0.875rem; padding: 6px 16px; border-radius: 9999px; margin-bottom: 16px; } .policy-content-wrapper .disclaimer-title { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 2.25rem; color: #0F172A; margin-bottom: 12px; line-height: 1.3; } @media (max-width: 768px) { .policy-content-wrapper .disclaimer-title { font-size: 1.75rem; } } .policy-content-wrapper .disclaimer-meta { font-size: 0.875rem; color: #94A3B8; margin-bottom: 0; } .policy-content-wrapper .disclaimer-body { line-height: 1.8; } .policy-content-wrapper .disclaimer-intro { font-size: 1.125rem; color: #334155; margin-bottom: 32px; } .policy-content-wrapper .disclaimer-section { margin-bottom: 40px; } .policy-content-wrapper .disclaimer-section h2 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 1.5rem; color: #0F172A; margin-bottom: 16px; position: relative; padding-left: 16px; border-left: 4px solid #10B981; line-height: 1.3; } @media (max-width: 768px) { .policy-content-wrapper .disclaimer-section h2 { font-size: 1.25rem; padding-left: 12px; } } .policy-content-wrapper .disclaimer-section p { margin-bottom: 16px; font-size: 1rem; color: #475569; } .policy-content-wrapper .disclaimer-section ul { padding-left: 20px; margin-bottom: 20px; list-style-type: disc; } .policy-content-wrapper .disclaimer-section ul li { margin-bottom: 8px; font-size: 0.975rem; color: #475569; } .policy-content-wrapper .contact-info-block { background-color: #F8FAFC; padding: 32px; border-radius: 16px; border: 1px solid #E2E8F0; margin-top: 48px; } @media (max-width: 768px) { .policy-content-wrapper .contact-info-block { padding: 20px; margin-top: 32px; } } .policy-content-wrapper .contact-details-grid { display: grid; grid-template-columns: 1fr; gap: 20px; margin-top: 24px; } @media (min-width: 768px) { .policy-content-wrapper .contact-details-grid { grid-template-columns: repeat(3, 1fr); } } .policy-content-wrapper .contact-item { background-color: #FFFFFF; padding: 20px; border-radius: 12px; border: 1px solid #E2E8F0; display: flex; align-items: flex-start; gap: 16px; transition: transform 0.2s ease, box-shadow 0.2s ease; } .policy-content-wrapper .contact-item:hover { transform: translateY(-4px); box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04); } .policy-content-wrapper .contact-icon { background-color: #ECFDF5; color: #10B981; width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; } .policy-content-wrapper .contact-text { display: flex; flex-direction: column; } .policy-content-wrapper .contact-text strong { font-family: 'Plus Jakarta Sans', sans-serif; color: #0F172A; font-size: 0.9rem; margin-bottom: 4px; } .policy-content-wrapper .contact-text span, .policy-content-wrapper .contact-text a { font-size: 0.9rem; color: #475569; text-decoration: none; word-break: break-all; } .policy-content-wrapper .contact-text a:hover { color: #10B981; }

/* ===== PAGE: cookies ===== */
.policy-content-wrapper {
  max-width: 860px;
  margin: 60px auto;
  padding: 40px 50px;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
  font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  color: #475569;
  line-height: 1.8;
}
.policy-content-wrapper h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.25rem;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 20px;
  line-height: 1.3;
}
.policy-content-wrapper .policy-intro {
  font-size: 1.125rem;
  color: #334155;
  margin-bottom: 30px;
  line-height: 1.7;
}
.policy-content-wrapper h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #10B981;
  margin-top: 40px;
  margin-bottom: 16px;
  line-height: 1.4;
  border-bottom: 2px solid #ECFDF5;
  padding-bottom: 8px;
}
.policy-content-wrapper p {
  margin-bottom: 20px;
  font-size: 1rem;
}
.policy-content-wrapper strong {
  color: #0F172A;
  font-weight: 600;
}
.policy-content-wrapper a {
  color: #10B981;
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.3s ease;
}
.policy-content-wrapper a:hover {
  color: #059669;
}
.policy-content-wrapper .policy-list {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 24px;
}
.policy-content-wrapper .policy-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.7;
}
.policy-content-wrapper .policy-list li::before {
  content: "•";
  position: absolute;
  left: 6px;
  top: 0;
  color: #10B981;
  font-size: 1.5rem;
  line-height: 1;
}
.policy-content-wrapper .policy-updated-date {
  font-size: 0.875rem;
  color: #94A3B8;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid #E2E8F0;
}
@media (max-width: 768px) {
  .policy-content-wrapper {
    margin: 20px 15px;
    padding: 30px 20px;
    border-radius: 12px;
  }
  .policy-content-wrapper h1 {
    font-size: 1.75rem;
  }
  .policy-content-wrapper h2 {
    font-size: 1.25rem;
    margin-top: 30px;
  }
  .policy-content-wrapper .policy-intro {
    font-size: 1rem;
  }
  .policy-content-wrapper p, 
  .policy-content-wrapper .policy-list li {
    font-size: 0.9375rem;
  }
}

/* ===== PAGE: about ===== */
.bf-about-content {
  background-color: #F8FAFC;
  font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  color: #475569;
}
.bf-about-content h1.bf-main-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  color: #0F172A;
  line-height: 1.2;
}
.bf-about-content h2.bf-section-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: #0F172A;
  line-height: 1.3;
}
.bf-about-content h3.bf-feature-title,
.bf-about-content h3.bf-value-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: #0F172A;
}
.bf-about-content .bf-badge {
  background-color: #ECFDF5;
  color: #10B981;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 9999px;
  font-size: 0.875rem;
  border: 1px solid rgba(16, 185, 129, 0.2);
}
.bf-about-content .bf-lead-text {
  font-size: 1.125rem;
  line-height: 1.7;
}
.bf-about-content .bf-icon-wrap {
  background-color: #ECFDF5;
  color: #10B981;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.bf-about-content .bf-image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
}
.bf-about-content .bf-featured-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.bf-about-content .bf-image-wrapper:hover .bf-featured-img {
  transform: scale(1.03);
}
.bf-about-content .bf-section-subtitle {
  max-width: 600px;
  font-size: 1.05rem;
}
.bf-about-content .bf-value-card {
  background-color: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  border: 1px solid #E2E8F0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}
.bf-about-content .bf-value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
}
.bf-about-content .bf-value-icon {
  background-color: #F1F5F9;
  color: #10B981;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  font-size: 1.75rem;
}
.bf-about-content .bf-value-card:hover .bf-value-icon {
  background-color: #10B981;
  color: #FFFFFF;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.bf-about-content .bf-value-desc {
  font-size: 0.95rem;
  line-height: 1.6;
}
.bf-about-content .bf-stat-box {
  background-color: #FFFFFF;
  border-radius: 12px;
  border: 1px solid #E2E8F0;
}
.bf-about-content .bf-stat-number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.25rem;
  font-weight: 800;
  color: #10B981;
  line-height: 1.2;
}
.bf-about-content .bf-stat-label {
  font-size: 0.85rem;
  color: #64748B;
  font-weight: 500;
}
.bf-about-content .bf-promo-banner {
  background: linear-gradient(135deg, #ECFDF5 0%, #F0FDF4 100%);
  border-radius: 24px;
  border: 1px solid rgba(16, 185, 129, 0.15);
}
.bf-about-content .bf-banner-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: #0F172A;
}
.bf-about-content .bf-banner-desc {
  font-size: 1.1rem;
  color: #334155; 
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.bf-about-content .bf-btn-primary {
  background-color: #10B981;
  color: #FFFFFF;
  font-weight: 600;
  border-radius: 9999px;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.4);
  transition: all 0.3s ease;
  border: none;
}
.bf-about-content .bf-btn-primary:hover {
  background-color: #059669;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
}
.bf-about-content .bf-btn-outline {
  background-color: transparent;
  color: #10B981;
  border: 2px solid #10B981;
  font-weight: 600;
  border-radius: 9999px;
  transition: all 0.3s ease;
}
.bf-about-content .bf-btn-outline:hover {
  background-color: #10B981;
  color: #FFFFFF;
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .bf-about-content h1.bf-main-title {
    font-size: 1.8rem;
  }
  .bf-about-content h2.bf-section-title {
    font-size: 1.5rem;
  }
  .bf-about-content h3.bf-feature-title,
  .bf-about-content h3.bf-value-title {
    font-size: 1.1rem;
  }
  .bf-about-content .bf-banner-title {
    font-size: 1.5rem;
  }
}

/* ===== PAGE: events ===== */
.bf-events-section{background-color:#F8FAFC;font-family:'Outfit','Plus Jakarta Sans',sans-serif}.bf-events-section .bf-section-title{font-family:'Plus Jakarta Sans',sans-serif;font-weight:700;font-size:2.25rem;color:#0F172A}.bf-events-section .bf-section-subtitle{font-size:1.125rem;color:#475569}.bf-events-section .bf-search-wrapper{max-width:320px;width:100%}.bf-events-section .bf-search-input{border-radius:9999px;border:1px solid #E2E8F0;padding:12px 20px 12px 45px;font-size:.95rem;color:#0F172A;background-color:#FFFFFF;box-shadow:none}.bf-events-section .bf-search-input:focus{border-color:#10B981;box-shadow:0 0 0 4px rgba(16,185,129,0.2)}.bf-events-section .bf-search-icon{position:absolute;left:20px;top:50%;transform:translateY(-50%);color:#94A3B8}.bf-events-section .bf-sort-select{border-radius:9999px;border:1px solid #E2E8F0;padding:12px 35px 12px 20px;font-size:.95rem;color:#0F172A;background-color:#FFFFFF}.bf-events-section .bf-sort-select:focus{border-color:#10B981;box-shadow:0 0 0 4px rgba(16,185,129,0.2)}.bf-events-section .bf-tab-btn{border-radius:9999px;border:1px solid #E2E8F0;background-color:#FFFFFF;color:#475569;font-weight:500;padding:10px 24px;font-size:.95rem;transition:all .3s ease;box-shadow:0 2px 4px rgba(15,23,42,0.03)}.bf-events-section .bf-tab-btn:hover{background-color:#F1F5F9;color:#10B981}.bf-events-section .bf-tab-btn.active{background-color:#10B981;border-color:#10B981;color:#FFFFFF;box-shadow:0 4px 14px rgba(16,185,129,0.3)}.bf-events-section .bf-event-card{border-radius:20px;background-color:#FFFFFF;transition:transform .3s ease,box-shadow .3s ease;overflow:hidden}.bf-events-section .bf-event-card:hover{transform:translateY(-6px);box-shadow:0 16px 32px rgba(15,23,42,0.08)!important}.bf-events-section .bf-card-img-wrapper{height:200px;overflow:hidden;background-color:#E2E8F0}.bf-events-section .bf-card-img-wrapper img{width:100%;height:100%;object-fit:cover;transition:transform .5s ease}.bf-events-section .bf-event-card:hover .bf-card-img-wrapper img{transform:scale(1.05)}.bf-events-section .bf-badge-category{top:15px;left:15px;font-size:.75rem;font-weight:600;padding:6px 12px;border-radius:6px;text-transform:uppercase}.bf-events-section .bf-badge-category.bg-primary{background-color:#10B981!important}.bf-events-section .bf-badge-category.bg-info{background-color:#3B82F6!important}.bf-events-section .bf-badge-category.bg-warning{background-color:#F59E0B!important;color:#FFFFFF!important}.bf-events-section .bf-progress-bar-wrapper{height:8px;border-radius:9999px;background-color:#F1F5F9}.bf-events-section .xx-small{font-size:.75rem}.bf-events-section .bf-btn-primary{border-radius:9999px;background-color:#10B981;color:#FFFFFF;font-weight:600;padding:12px 24px;transition:all .3s ease;border:none;box-shadow:0 4px 14px rgba(16,185,129,0.3)}.bf-events-section .bf-btn-primary:hover,.bf-events-section .bf-btn-primary:focus{background-color:#059669;color:#FFFFFF;box-shadow:0 6px 18px rgba(16,185,129,0.4)}.bf-events-section .bf-btn-secondary{border-radius:9999px;background-color:#3B82F6;color:#FFFFFF;font-weight:600;padding:12px 24px;transition:all .3s ease;border:none;box-shadow:0 4px 14px rgba(59,130,246,0.3)}.bf-events-section .bf-btn-secondary:hover,.bf-events-section .bf-btn-secondary:focus{background-color:#2563EB;color:#FFFFFF;box-shadow:0 6px 18px rgba(59,130,246,0.4)}.bf-events-section .bf-event-modal .modal-content{border-radius:24px;overflow:hidden;box-shadow:0 20px 40px rgba(0,0,0,0.1);background-color:#FFFFFF}.bf-events-section .bf-modal-img-wrapper{height:100%;min-height:250px;background-color:#E2E8F0}.bf-events-section .bf-modal-img-wrapper img{height:100%;object-fit:cover}.bf-events-section .btn-close:focus{box-shadow:none}@media (max-width:767.98px){.bf-events-section .bf-section-title{font-size:1.5rem}.bf-events-section .bf-section-subtitle{font-size:.9rem}.bf-events-section .bf-search-wrapper{max-width:100%}}

/* ===== PAGE: chat ===== */
.breezy-chat-board {
  background-color: #F8FAFC;
  color: #475569;
}
.breezy-chat-board h1,
.breezy-chat-board h2,
.breezy-chat-board h5 {
  color: #0F172A !important;
}
.breezy-chat-board .card {
  background-color: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  overflow: hidden;
}
.breezy-chat-board .btn-light {
  background-color: #F1F5F9;
  color: #475569;
  border: 1px solid transparent;
  border-radius: 12px;
  transition: all 0.2s ease-in-out;
  font-weight: 500;
}
.breezy-chat-board .btn-light:hover {
  background-color: #E2E8F0;
  color: #0F172A;
}
.breezy-chat-board .btn-light.active {
  background-color: #10B981 !important;
  color: #FFFFFF !important;
  border-color: #10B981;
}
.breezy-chat-board .btn-light.active i {
  color: #FFFFFF !important;
}
.breezy-chat-board .bg-success-subtle {
  background-color: rgba(16, 185, 129, 0.15);
}
.breezy-chat-board .bg-info-subtle {
  background-color: rgba(59, 130, 246, 0.15);
}
.breezy-chat-board .bg-warning-subtle {
  background-color: rgba(245, 158, 11, 0.15);
}
.breezy-chat-board .text-sm {
  font-size: 0.85rem;
}
.breezy-chat-board .form-control {
  background-color: #F1F5F9;
  color: #0F172A;
  border-radius: 0 8px 8px 0;
  border: 1px solid transparent;
}
.breezy-chat-board .form-control::placeholder {
  color: #94A3B8;
  opacity: 1;
}
.breezy-chat-board .form-control:focus {
  background-color: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.25);
  border-color: #10B981;
}
.breezy-chat-board .input-group-text {
  border-radius: 8px 0 0 8px;
  border: 1px solid transparent;
  background-color: #F1F5F9;
}
.breezy-chat-board .js-chat-messages-container {
  scrollbar-width: thin;
  scrollbar-color: #10B981 #F1F5F9;
}
.breezy-chat-board .js-chat-messages-container::-webkit-scrollbar {
  width: 6px;
}
.breezy-chat-board .js-chat-messages-container::-webkit-scrollbar-track {
  background: #F1F5F9;
}
.breezy-chat-board .js-chat-messages-container::-webkit-scrollbar-thumb {
  background-color: #10B981;
  border-radius: 3px;
}

/* ===== PAGE: faq ===== */
.faq-section {
  background-color: #F8FAFC;
  font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
}

.faq-section .faq-search-box .input-group {
  border: 1px solid #E2E8F0 !important;
  background-color: #FFFFFF;
}

.faq-section .faq-search-box input:focus {
  box-shadow: none;
}

.faq-section .faq-card {
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid #E2E8F0;
}

.faq-section .faq-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(15, 23, 42, 0.05) !important;
}

.faq-section .faq-toggle-btn {
  color: #0F172A;
  outline: none;
  box-shadow: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: background-color 0.2s ease;
}

.faq-section .faq-toggle-btn:focus {
  outline: none;
}

.faq-section .faq-toggle-btn[aria-expanded="true"] {
  background-color: rgba(16, 185, 129, 0.04) !important;
}

.faq-section .faq-toggle-btn[aria-expanded="true"] .faq-icon-chevron {
  transform: rotate(180deg);
  color: #10B981 !important;
}

.faq-section .faq-icon-chevron {
  transition: transform 0.3s ease;
}

.faq-section .js-faq-tab-btn {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  border: 2px solid #E2E8F0;
  background-color: #FFFFFF;
  color: #475569;
  transition: all 0.3s ease;
}

.faq-section .js-faq-tab-btn:hover {
  background-color: #10B981;
  border-color: #10B981;
  color: #FFFFFF;
}

.faq-section .js-faq-tab-btn.active {
  background-color: #10B981 !important;
  border-color: #10B981 !important;
  color: #FFFFFF !important;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.4);
}

/* ===== PAGE: contact ===== */
.contact-page-section {
  background-color: #F8FAFC;
  font-family: 'Plus Jakarta Sans', 'Outfit', sans-serif;
}

.contact-page-section .contact-badge {
  background-color: rgba(16, 185, 129, 0.1);
  color: #10B981;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.contact-page-section .contact-title {
  color: #0F172A;
  font-weight: 800;
}

.contact-page-section .contact-desc {
  color: #475569;
  font-size: 1.1rem;
}

.contact-page-section .contact-card {
  background-color: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-page-section .contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(15, 23, 42, 0.08);
}

.contact-page-section .contact-icon-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background-color: rgba(16, 185, 129, 0.08);
  margin: 0 auto;
}

.contact-page-section .text-primary-brand {
  color: #10B981;
}

.contact-page-section .text-success-brand {
  color: #10B981;
}

.contact-page-section .btn-brand {
  background-color: #10B981;
  color: #FFFFFF;
  border-radius: 9999px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
}

.contact-page-section .btn-brand:hover {
  background-color: #059669;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.4);
}

.contact-page-section .btn-outline-brand {
  border: 2px solid #10B981;
  color: #10B981;
  border-radius: 9999px;
  font-weight: 600;
  transition: all 0.3s ease;
  background-color: transparent;
}

.contact-page-section .btn-outline-brand:hover {
  background-color: #10B981;
  color: #FFFFFF;
  transform: translateY(-2px);
}

.contact-page-section .working-status-pill {
  background-color: rgba(16, 185, 129, 0.06);
}

.contact-page-section .contact-map-card {
  border-radius: 24px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
}

.contact-page-section .min-h-350 {
  min-height: 350px;
}

.contact-page-section .map-container-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 24px;
}

.contact-page-section .support-showcase-card {
  background-color: #FFFFFF;
  border-radius: 24px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
}

.contact-page-section .support-img {
  max-height: 250px;
  object-fit: cover;
  border-radius: 16px;
}

.contact-page-section .z-index-1 {
  position: relative;
  z-index: 1;
}

@media (max-width: 767.98px) {
  .contact-page-section .contact-title {
    font-size: 1.75rem;
  }
  .contact-page-section .contact-desc {
    font-size: 1rem;
  }
  .contact-page-section .min-h-350 {
    min-height: 300px;
  }
}

.game-comment-card {
    background-color: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
    font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 100%;
    margin-bottom: 20px;
}

.game-comment-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.comment-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.comment-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #10B981;
    background-color: #F1F5F9;
    flex-shrink: 0;
}

.comment-meta {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 150px;
}

.comment-user-info {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.comment-username {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0F172A;
    margin: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.comment-badge {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 9999px;
    letter-spacing: 0.3px;
}

.badge-pro {
    background-color: #ECFDF5;
    color: #10B981;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.comment-time {
    font-size: 0.85rem;
    color: #94A3B8;
    display: flex;
    align-items: center;
}

.comment-rating {
    display: flex;
    gap: 4px;
}

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

.comment-body {
    font-size: 1rem;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 20px;
    word-break: break-word;
}

.comment-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid #F1F5F9;
    padding-top: 16px;
}

.comment-action-btn {
    background: transparent;
    border: none;
    color: #475569;
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 8px 16px;
    border-radius: 9999px;
    transition: all 0.2s ease;
}

.comment-action-btn:hover {
    background-color: #F1F5F9;
    color: #10B981;
}

.comment-action-btn:focus-visible {
    outline: 2px solid #10B981;
    outline-offset: 2px;
}

.like-count {
    margin-left: 4px;
    font-weight: 700;
}

.reply-comment-wrapper {
    position: relative;
    padding-left: 48px;
}

.reply-connector-line {
    position: absolute;
    left: 20px;
    top: -20px;
    width: 2px;
    height: calc(100% + 20px);
    background-color: #E2E8F0;
    border-bottom-left-radius: 8px;
}

.reply-comment-card {
    background-color: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
    font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 100%;
    margin-bottom: 16px;
}

.reply-comment-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}

.reply-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #3B82F6;
    background-color: #F1F5F9;
    flex-shrink: 0;
}

.username-reply {
    font-size: 0.95rem;
}

.badge-casual {
    background-color: #EFF6FF;
    color: #3B82F6;
    border: 1px solid rgba(59, 130, 246, 0.15);
}

@media (max-width: 576px) {
    .reply-comment-wrapper {
        padding-left: 20px;
    }

    .reply-connector-line {
        left: 8px;
    }
}


/* ===== PAGE TEMPLATE: game-hall ===== */
.breezy-header {
    background-color: #FFFFFF;
    border-bottom: 1px solid #E2E8F0;
    z-index: 1030;
}

.breezy-header .breezy-navbar {
    padding: 1rem 0;
    background-color: #FFFFFF;
}

.breezy-header .breezy-logo {
    max-height: 40px;
    max-width: 40px;
    object-fit: contain;
}

.breezy-header .breezy-brand-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: #0F172A;
}

.breezy-header .nav-link {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    color: #475569;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.breezy-header .nav-link:hover,
.breezy-header .nav-link:focus {
    color: #10B981;
}

.breezy-header .navbar-nav .show>.nav-link {
    color: #10B981;
}

.breezy-header .dropdown-menu {
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
    background-color: #FFFFFF;
    padding: 0.5rem;
}

.breezy-header .dropdown-item {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    color: #475569;
    border-radius: 8px;
    padding: 0.6rem 1.2rem;
    transition: all 0.2s ease;
}

.breezy-header .dropdown-item:hover,
.breezy-header .dropdown-item:focus {
    background-color: #F1F5F9;
    color: #10B981;
}

.breezy-header .breezy-cta-btn {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: #FFFFFF;
    background-color: #10B981;
    border: none;
    border-radius: 9999px;
    padding: 0.6rem 1.5rem;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.3);
    transition: all 0.3s ease;
}

.breezy-header .breezy-cta-btn:hover,
.breezy-header .breezy-cta-btn:focus {
    color: #FFFFFF;
    background-color: #059669;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

@media (max-width: 991.98px) {
    .breezy-header .navbar-collapse {
        background-color: #FFFFFF;
        padding: 1.5rem 1rem;
        border-radius: 16px;
        margin-top: 1rem;
        box-shadow: 0 15px 30px rgba(15, 23, 42, 0.1);
        border: 1px solid #E2E8F0;
    }

    .breezy-header .nav-link {
        padding: 0.8rem 1rem;
        border-bottom: 1px solid #F1F5F9;
    }

    .breezy-header .nav-item:last-child .nav-link {
        border-bottom: none;
    }

    .breezy-header .dropdown-menu {
        border: none;
        box-shadow: none;
        padding-left: 1.5rem;
        background-color: #F8FAFC;
    }

    .breezy-header .breezy-cta-btn {
        width: 100%;
        text-align: center;
        margin-top: 1rem;
    }
}

.breezy-footer {
    background-color: #F1F5F9;
    border-top: 1px solid #E2E8F0;
    color: #475569;
    font-family: 'Outfit', sans-serif;
}

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

.breezy-footer .footer-brand-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: #0F172A;
}

.breezy-footer .footer-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #475569;
}

.breezy-footer .footer-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: #0F172A;
}

.breezy-footer .footer-links a {
    color: #475569;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease-in-out;
}

.breezy-footer .footer-links a:hover {
    color: #10B981;
    padding-left: 4px;
}

.breezy-footer .footer-contact-info {
    font-size: 0.9rem;
}

.breezy-footer .footer-contact-info a {
    color: #475569;
    text-decoration: none;
    transition: color 0.2s;
}

.breezy-footer .footer-contact-info a:hover {
    color: #10B981;
}

.breezy-footer .footer-contact-info i {
    color: #10B981;
    width: 20px;
}

.breezy-footer .footer-map-wrapper {
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
}

.breezy-footer .footer-divider {
    border-color: #E2E8F0;
    opacity: 1;
}

.breezy-footer .copyright-text {
    font-size: 0.85rem;
    color: #94A3B8;
}

.breezy-game-section {
    padding: 2rem 0;
    background-color: #F8FAFC;
}

.breezy-game-section .game-card {
    background-color: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
    overflow: hidden;
}

.breezy-game-section .game-control-bar {
    background-color: #FFFFFF;
    border-bottom: 1px solid #E2E8F0;
    padding: 1rem 1.5rem;
}

.breezy-game-section .game-wrapper {
    position: relative;
    width: 100%;
    height: 550px;
    background-color: #000000;
}

.breezy-game-section .game-iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.breezy-game-section .game-wrapper:fullscreen {
    width: 100vw !important;
    height: 100vh !important;
}

.breezy-game-section .game-wrapper:-webkit-full-screen {
    width: 100vw !important;
    height: 100vh !important;
}

.breezy-game-section .exit-btn {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 99999;
}

.breezy-game-section .game-wrapper:fullscreen .exit-btn {
    display: inline-flex !important;
}

.breezy-game-section .game-wrapper:-webkit-full-screen .exit-btn {
    display: inline-flex !important;
}

.breezy-details-section {
    padding: 3rem 0;
    background-color: #FFFFFF;
}

.breezy-details-section h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 2.25rem;
    color: #0F172A;
    line-height: 1.3;
}

.breezy-details-section .meta-item {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    color: #64748B;
}

.breezy-details-section .content-body {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #475569;
}

.breezy-details-section .guide-link {
    color: #0F172A;
    text-decoration: none;
    transition: color 0.2s ease;
}

.breezy-details-section .guide-link:hover {
    color: #10B981;
}

@media (max-width: 767.98px) {
    .breezy-details-section h1 {
        font-size: 18px !important;
        hyphens: auto;
    }

    .breezy-details-section h2 {
        font-size: 16px !important;
        hyphens: auto;
    }

    .breezy-details-section h3 {
        font-size: 14px !important;
        hyphens: auto;
    }

    .breezy-game-section .game-wrapper {
        height: 350px;
    }

    .breezy-details-section {
        padding: 2rem 0;
    }
}

/* ===== PAGE TEMPLATE: guide ===== */
.breezy-header {
    background-color: #FFFFFF;
    border-bottom: 1px solid #E2E8F0;
    z-index: 1030;
}

.breezy-header .breezy-navbar {
    padding: 1rem 0;
    background-color: #FFFFFF;
}

.breezy-header .breezy-logo {
    max-height: 40px;
    max-width: 40px;
    object-fit: contain;
}

.breezy-header .breezy-brand-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: #0F172A;
}

.breezy-header .nav-link {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    color: #475569;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.breezy-header .nav-link:hover,
.breezy-header .nav-link:focus {
    color: #10B981;
}

.breezy-header .navbar-nav .show>.nav-link {
    color: #10B981;
}

.breezy-header .dropdown-menu {
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
    background-color: #FFFFFF;
    padding: 0.5rem;
}

.breezy-header .dropdown-item {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    color: #475569;
    border-radius: 8px;
    padding: 0.6rem 1.2rem;
    transition: all 0.2s ease;
}

.breezy-header .dropdown-item:hover,
.breezy-header .dropdown-item:focus {
    background-color: #F1F5F9;
    color: #10B981;
}

.breezy-header .breezy-cta-btn {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: #FFFFFF;
    background-color: #10B981;
    border: none;
    border-radius: 9999px;
    padding: 0.6rem 1.5rem;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.3);
    transition: all 0.3s ease;
}

.breezy-header .breezy-cta-btn:hover,
.breezy-header .breezy-cta-btn:focus {
    color: #FFFFFF;
    background-color: #059669;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

@media (max-width: 991.98px) {
    .breezy-header .navbar-collapse {
        background-color: #FFFFFF;
        padding: 1.5rem 1rem;
        border-radius: 16px;
        margin-top: 1rem;
        box-shadow: 0 15px 30px rgba(15, 23, 42, 0.1);
        border: 1px solid #E2E8F0;
    }

    .breezy-header .nav-link {
        padding: 0.8rem 1rem;
        border-bottom: 1px solid #F1F5F9;
    }

    .breezy-header .nav-item:last-child .nav-link {
        border-bottom: none;
    }

    .breezy-header .dropdown-menu {
        border: none;
        box-shadow: none;
        padding-left: 1.5rem;
        background-color: #F8FAFC;
    }

    .breezy-header .breezy-cta-btn {
        width: 100%;
        text-align: center;
        margin-top: 1rem;
    }
}

.breezy-footer {
    background-color: #F1F5F9;
    border-top: 1px solid #E2E8F0;
    color: #475569;
    font-family: 'Outfit', sans-serif;
}

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

.breezy-footer .footer-brand-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: #0F172A;
}

.breezy-footer .footer-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #475569;
}

.breezy-footer .footer-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: #0F172A;
}

.breezy-footer .footer-links a {
    color: #475569;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease-in-out;
}

.breezy-footer .footer-links a:hover {
    color: #10B981;
    padding-left: 4px;
}

.breezy-footer .footer-contact-info {
    font-size: 0.9rem;
}

.breezy-footer .footer-contact-info a {
    color: #475569;
    text-decoration: none;
    transition: color 0.2s;
}

.breezy-footer .footer-contact-info a:hover {
    color: #10B981;
}

.breezy-footer .footer-contact-info i {
    color: #10B981;
    width: 20px;
}

.breezy-footer .footer-map-wrapper {
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
}

.breezy-footer .footer-divider {
    border-color: #E2E8F0;
    opacity: 1;
}

.breezy-footer .copyright-text {
    font-size: 0.85rem;
    color: #94A3B8;
}

.breezy-game-section {
    padding: 2rem 0;
    background-color: #F8FAFC;
}

.breezy-game-section .game-card {
    background-color: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
    overflow: hidden;
}

.breezy-game-section .game-control-bar {
    background-color: #FFFFFF;
    border-bottom: 1px solid #E2E8F0;
    padding: 1rem 1.5rem;
}

.breezy-game-section .game-wrapper {
    position: relative;
    width: 100%;
    height: 550px;
    background-color: #000000;
}

.breezy-game-section .game-iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.breezy-game-section .game-wrapper:fullscreen {
    width: 100vw !important;
    height: 100vh !important;
}

.breezy-game-section .game-wrapper:-webkit-full-screen {
    width: 100vw !important;
    height: 100vh !important;
}

.breezy-game-section .exit-btn {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 99999;
}

.breezy-game-section .game-wrapper:fullscreen .exit-btn {
    display: inline-flex !important;
}

.breezy-game-section .game-wrapper:-webkit-full-screen .exit-btn {
    display: inline-flex !important;
}

.breezy-details-section {
    padding: 3rem 0;
    background-color: #FFFFFF;
}

.breezy-details-section h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 2.25rem;
    color: #0F172A;
    line-height: 1.3;
}

.breezy-details-section .meta-item {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    color: #64748B;
}

.breezy-details-section .content-body {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #475569;
}

.breezy-details-section .guide-link {
    color: #0F172A;
    text-decoration: none;
    transition: color 0.2s ease;
}

.breezy-details-section .guide-link:hover {
    color: #10B981;
}

@media (max-width: 767.98px) {
    .breezy-details-section h1 {
        font-size: 18px !important;
        hyphens: auto;
    }

    .breezy-details-section h2 {
        font-size: 16px !important;
        hyphens: auto;
    }

    .breezy-details-section h3 {
        font-size: 14px !important;
        hyphens: auto;
    }

    .breezy-game-section .game-wrapper {
        height: 350px;
    }

    .breezy-details-section {
        padding: 2rem 0;
    }
}/* ===== unified policy list markers ===== */
.policy-content-wrapper ul,
.policy-content-wrapper ol {
    list-style: none !important;
    padding-left: 0 !important;
}
.policy-content-wrapper ul li,
.policy-content-wrapper ol li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
}
.policy-content-wrapper ul li::before,
.policy-content-wrapper ol li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #10B981;
    position: absolute;
    left: 0;
    top: 0.2rem;
    font-size: 0.875rem;
}
/* ===== cookie consent buttons always one line ===== */
.cookie-consent-buttons {
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: flex-start !important;
}
.cookie-consent-btn {
    white-space: nowrap !important;
    flex: 0 0 auto !important;
    min-width: 0 !important;
}
/* ===== disclaimer contact block vertical ===== */
.contact-info-block .contact-details-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
}
.contact-info-block .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}
