:root {
    --primary: #6b2137;
    --secondary: #8a2c48;
    --accent: #b8924a;
    --bg-main: #faf5ef;
    --bg-surface: #f3ebe0;
    --text-primary: #2d1b12;
    --text-secondary: #6b5244;
    --gradient-glow: linear-gradient(135deg, #6b2137 0%, #8a2c48 100%);
}

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

h1,
h2,
h3,
h4,
.heading-font {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-weight: 700;
}

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

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

.glass-card {
    background: rgba(243, 235, 224, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(107, 33, 55, 0.08);
    border-radius: 16px;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

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

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

.btn-custom:hover {
    opacity: 0.9;
    transform: scale(1.02);
    color: #2d1b12;
    box-shadow: 0 0 20px rgba(107, 33, 55, 0.4);
}

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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(45, 27, 18, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* ===== header ===== */
.royalbriarclub-header {
    background-color: #faf5ef;
    border-bottom: 1px solid rgba(107, 33, 55, 0.08);
    z-index: 1030;
}

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

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

.royalbriarclub-header .royalbriarclub-brand-name {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: #2d1b12;
    letter-spacing: 1px;
}

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

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

.royalbriarclub-header .dropdown-menu {
    background-color: #f3ebe0;
    border: 1px solid rgba(107, 33, 55, 0.08);
    border-radius: 8px;
    box-shadow: 0 10px 30px -5px rgba(45, 27, 18, 0.08);
    padding: 0.5rem 0;
    margin-top: 0.5rem;
}

.royalbriarclub-header .dropdown-item {
    color: #6b5244;
    font-weight: 500;
    padding: 0.6rem 1.5rem;
    transition: all 0.3s ease;
}

.royalbriarclub-header .dropdown-item:hover {
    background-color: rgba(107, 33, 55, 0.1);
    color: #2d1b12;
}

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

.royalbriarclub-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(107, 33, 55, 0.4);
    color: #ffffff !important;
    opacity: 0.95;
}

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

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

.royalbriarclub-header .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(248, 250, 252, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

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

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

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

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

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

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

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

.royalbriarclub-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(45, 27, 18, 0.85);
    z-index: 2;
}

.royalbriarclub-hero-headline {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: clamp(2.5rem, 8vw, 5rem);
    line-height: 1.1;
    font-weight: 700;
    color: #2d1b12;
    text-shadow: 0 0 20px rgba(107, 33, 55, 0.5);
}

.royalbriarclub-hero-headline .text-primary-glow {
    background: linear-gradient(135deg, #6b2137 0%, #8a2c48 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.royalbriarclub-btn-primary {
    background: linear-gradient(135deg, #6b2137 0%, #8a2c48 100%);
    color: #2d1b12;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Playfair Display', 'Georgia', serif;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
    box-shadow: 0 10px 20px rgba(107, 33, 55, 0.3);
}

.royalbriarclub-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(107, 33, 55, 0.5);
    color: #2d1b12;
}

.royalbriarclub-link-secondary {
    color: #2d1b12;
    text-decoration: none;
    font-family: 'Playfair Display', 'Georgia', serif;
    font-weight: 500;
    transition: color 0.3s ease;
}

.royalbriarclub-link-secondary:hover {
    color: #b8924a;
}

.royalbriarclub-hero-floating-cta {
    width: 160px;
    height: 160px;
    background: #6b2137;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #2d1b12;
    font-family: 'Playfair Display', 'Georgia', serif;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 10;
    box-shadow: 0 0 30px rgba(107, 33, 55, 0.6);
}

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

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

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

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

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

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

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

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

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

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

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

/* ===== registration ===== */
.registration-block {
    background: linear-gradient(rgba(45, 27, 18, 0.8), rgba(45, 27, 18, 0.8)),
    url('./graphics/pics/royalbriarclub-registration-background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.registration-block .registration-card {
    background: #f3ebe0;
    border: 1px solid rgba(107, 33, 55, 0.08);
    border-radius: 16px;
    box-shadow: 0 10px 30px -5px rgba(45, 27, 18, 0.08);
    backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
}

.registration-block .registration-title {
    font-family: 'Playfair Display', 'Georgia', serif;
    color: #2d1b12;
    font-size: clamp(20px, 4vw, 32px);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.registration-block .input-group-text {
    background-color: #faf5ef;
    border: 1px solid rgba(107, 33, 55, 0.1);
    color: #6b2137;
    border-right: none;
}

.registration-block .form-control {
    background-color: #faf5ef;
    border: 1px solid rgba(107, 33, 55, 0.1);
    color: #2d1b12;
    padding: 0.75rem 1rem;
}

.registration-block .form-control:focus {
    background-color: #faf5ef;
    border-color: #6b2137;
    box-shadow: 0 0 0 0.25rem rgba(107, 33, 55, 0.25);
    color: #2d1b12;
}

.registration-block .form-control::placeholder {
    color: #9c8979;
    opacity: 1;
}

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

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

.registration-block .registration-link:hover {
    color: #6b2137;
}

.registration-block .btn-registration {
    background: linear-gradient(135deg, #6b2137 0%, #8a2c48 100%);
    border: none;
    color: #2d1b12;
    font-family: 'Playfair Display', 'Georgia', serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 8px;
}

.registration-block .btn-registration:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(107, 33, 55, 0.4);
    color: #2d1b12;
}

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

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

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

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

/* ===== games-preview ===== */
.royalbriarclub-games-preview {
    background-color: #faf5ef;
    color: #2d1b12;
    overflow: hidden;
}

.royalbriarclub-games-preview .royalbriarclub-title {
    font-family: 'Playfair Display', 'Georgia', serif;
    color: #6b2137;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
}

.royalbriarclub-games-preview .royalbriarclub-subtitle {
    color: #6b5244;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.royalbriarclub-games-preview .royalbriarclub-disclaimer {
    background: rgba(107, 33, 55, 0.05);
    border: 1px solid rgba(107, 33, 55, 0.2);
    color: #6b5244;
    font-size: 0.9rem;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.5;
}

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

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

.royalbriarclub-games-preview .royalbriarclub-game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px -10px rgba(107, 33, 55, 0.3);
    border-color: rgba(107, 33, 55, 0.4);
}

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

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

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

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

.royalbriarclub-games-preview .royalbriarclub-game-name {
    font-family: 'Playfair Display', 'Georgia', serif;
    color: #2d1b12;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.royalbriarclub-games-preview .royalbriarclub-game-card:hover .royalbriarclub-game-name {
    color: #b8924a;
}

.royalbriarclub-games-preview .royalbriarclub-meta-text {
    color: #9c8979;
    font-size: 0.8rem;
    font-weight: 500;
}

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

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

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

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

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

.royalbriarclub-subtext {
    color: #6b5244;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.royalbriarclub-card {
    background: #f3ebe0;
    border: 1px solid rgba(107, 33, 55, 0.08);
    border-radius: 12px;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    position: relative;
}

.royalbriarclub-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px -5px rgba(107, 33, 55, 0.3);
    border-color: #6b2137;
}

.royalbriarclub-icon-box {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #6b2137 0%, #8a2c48 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: #2d1b12;
    font-size: 1.8rem;
    box-shadow: 0 0 20px rgba(107, 33, 55, 0.4);
}

.royalbriarclub-card-title {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 1.25rem;
}

.royalbriarclub-card-desc {
    color: #6b5244;
    font-size: 0.95rem;
    line-height: 1.6;
}

.royalbriarclub-disclaimer {
    background: rgba(243, 235, 224, 0.7);
    border: 1px solid rgba(107, 33, 55, 0.1);
    border-radius: 8px;
    color: #9c8979;
    font-size: 0.85rem;
    max-width: 900px;
    margin: 0 auto;
}

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

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

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

/* ===== footer ===== */
.royalbriarclub-footer {
    background-color: #faf5ef;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(107, 33, 55, 0.08);
    font-family: 'Inter', sans-serif;
    color: #2d1b12;
}

.royalbriarclub-disclaimer-box {
    background: rgba(243, 235, 224, 0.9);
    border: 2px solid #6b2137;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 50px;
}

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

.royalbriarclub-disclaimer-header h3 {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 1.25rem;
    margin: 0;
    color: #2d1b12;
}

.royalbriarclub-disclaimer-content p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #6b5244;
    margin-bottom: 10px;
}

.royalbriarclub-org-logos {
    padding: 30px 0;
    border-bottom: 1px solid rgba(107, 33, 55, 0.08);
    margin-bottom: 40px;
}

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

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

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

.royalbriarclub-footer-title {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 1.1rem;
    color: #2d1b12;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.royalbriarclub-footer-links a {
    color: #6b5244;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.royalbriarclub-footer-links a:hover {
    color: #6b2137;
}

.royalbriarclub-footer-desc {
    color: #6b5244;
    line-height: 1.6;
    font-size: 0.95rem;
}

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

.royalbriarclub-copyright {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(107, 33, 55, 0.08);
    margin-top: 40px;
    color: #9c8979;
    font-size: 0.85rem;
}

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

.royalbriarclub-modal-content {
    background: #f3ebe0;
    border: 1px solid rgba(107, 33, 55, 0.1);
    border-radius: 16px;
    padding: 40px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 40px rgba(45, 27, 18, 0.08);
}

.royalbriarclub-modal-content h2 {
    font-family: 'Playfair Display', 'Georgia', serif;
    color: #2d1b12;
    margin-bottom: 20px;
}

.royalbriarclub-modal-content p {
    color: #6b5244;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

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

.royalbriarclub-btn-primary {
    background: linear-gradient(135deg, #6b2137 0%, #8a2c48 100%);
    color: #2d1b12;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s;
}

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

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

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

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

.royalbriarclub-hero-section {
    background: linear-gradient(rgba(45, 27, 18, 0.7), rgba(45, 27, 18, 0.8)),
    url('./graphics/pics/royalbriarclub-hero-bg.jpg') center/cover no-repeat;
    padding: 120px 0 80px;
    text-align: center;
}

.royalbriarclub-hero-title {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: #2d1b12;
    margin-bottom: 20px;
}

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

.royalbriarclub-section-heading {
    font-family: 'Playfair Display', 'Georgia', serif;
    color: #2d1b12;
    margin-bottom: 30px;
}

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

.royalbriarclub-filter-btn {
    background: #f3ebe0;
    border: 1px solid rgba(107, 33, 55, 0.1);
    color: #6b5244;
    padding: 8px 20px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.royalbriarclub-filter-btn.active,
.royalbriarclub-filter-btn:hover {
    background: #6b2137;
    color: #2d1b12;
    border-color: #6b2137;
}

.royalbriarclub-game-card {
    background: #f3ebe0;
    border: 1px solid rgba(107, 33, 55, 0.08);
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    transition: transform 0.3s ease;
}

.royalbriarclub-game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(45, 27, 18, 0.08);
}

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

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

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

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

.royalbriarclub-play-btn {
    background: #6b2137;
    color: #2d1b12;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
}

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

.royalbriarclub-game-title {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 1.1rem;
    color: #2d1b12;
    margin-bottom: 8px;
}

.royalbriarclub-game-meta {
    font-size: 0.85rem;
    color: #9c8979;
    margin-bottom: 15px;
}

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

.royalbriarclub-details-link:hover {
    background: #6b2137;
    color: #2d1b12;
}

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

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

.royalbriarclub-article-body {
    color: #6b5244;
    line-height: 1.8;
    font-family: 'Inter', sans-serif;
}

.royalbriarclub-sidebar-card {
    background: #f3ebe0;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(107, 33, 55, 0.08);
}

.royalbriarclub-sidebar-title {
    font-family: 'Playfair Display', 'Georgia', serif;
    color: #2d1b12;
    font-size: 1.1rem;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(107, 33, 55, 0.1);
    padding-bottom: 10px;
}

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

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

.royalbriarclub-meta-list strong {
    color: #2d1b12;
}

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

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

.royalbriarclub-rec-item h5 {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 0.9rem;
    color: #2d1b12;
    margin: 0;
}

.royalbriarclub-rec-item span {
    font-size: 0.75rem;
    color: #9c8979;
}

.royalbriarclub-comment-item {
    background: rgba(107, 33, 55, 0.03);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 15px;
}

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

.royalbriarclub-author {
    font-weight: 700;
    color: #6b2137;
}

.royalbriarclub-date {
    font-size: 0.8rem;
    color: #9c8979;
}

.royalbriarclub-comment-text {
    color: #6b5244;
    font-size: 0.95rem;
    margin: 0;
}


/* ===== PAGE: about ===== */
.about-mission-section {
  background-color: #faf5ef;
  color: #2d1b12;
  font-family: 'Inter', sans-serif;
}

.about-mission-section .about-heading {
  font-family: 'Playfair Display', 'Georgia', serif;
  color: #6b2137;
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  text-transform: uppercase;
  letter-spacing: 2px;
}

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

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

.about-mission-section .stat-number {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: 1.5rem;
  color: #b8924a;
  font-weight: 700;
}

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

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

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

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

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

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

.about-mission-section .value-card h3 {
  font-family: 'Playfair Display', 'Georgia', serif;
  color: #2d1b12;
}

.about-mission-section .responsible-gaming-block {
  background: linear-gradient(180deg, rgba(243, 235, 224, 0.9) 0%, rgba(243, 235, 224, 1) 100%);
  border: 1px solid rgba(107, 33, 55, 0.2);
}

.about-mission-section .responsible-gaming-block h2 {
  font-family: 'Playfair Display', 'Georgia', serif;
  color: #2d1b12;
}

.about-mission-section .btn-primary {
  background: linear-gradient(135deg, #6b2137 0%, #8a2c48 100%);
  border: none;
  font-family: 'Playfair Display', 'Georgia', serif;
  font-weight: 500;
  transition: filter 0.3s ease;
}

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

.about-mission-section .btn-outline-secondary {
  border: 1px solid #6b2137;
  color: #2d1b12;
  font-family: 'Playfair Display', 'Georgia', serif;
  background: transparent;
}

.about-mission-section .btn-outline-secondary:hover {
  background: rgba(107, 33, 55, 0.1);
  border-color: #8a2c48;
}

/* ===== PAGE: achievements ===== */
.achievements-section { padding: clamp(40px, 10vh, 120px) 0; background-color: #faf5ef; min-height: 80vh; } .achievements-section__title { font-family: 'Playfair Display', 'Georgia', serif; color: #2d1b12; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; } .achievements-section__subtitle { color: #6b5244; font-size: 1.1rem; max-width: 600px; margin: 0 auto; line-height: 1.6; } .search-wrapper { position: relative; } .search-wrapper__icon { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); color: #9c8979; } .achievements-section__search { background: #f3ebe0; border: 1px solid rgba(107, 33, 55, 0.08); color: #2d1b12; padding: 12px 12px 12px 45px; border-radius: 8px; transition: border-color 0.3s ease; } .achievements-section__search:focus { background: #f3ebe0; border-color: #6b2137; color: #2d1b12; box-shadow: 0 0 0 0.25rem rgba(107, 33, 55, 0.25); outline: none; } .achievements-section__search::placeholder { color: #9c8979; } .filter-btn { background: #f3ebe0; border: 1px solid rgba(107, 33, 55, 0.08); color: #6b5244; padding: 8px 20px; border-radius: 50px; font-weight: 600; transition: all 0.3s ease; } .filter-btn:hover { background: #2d3e5a; color: #2d1b12; } .filter-btn.active { background: #6b2137; color: #2d1b12; border-color: #6b2137; box-shadow: 0 0 15px rgba(107, 33, 55, 0.4); } .achievement-card { background: #f3ebe0; border: 1px solid rgba(107, 33, 55, 0.08); border-radius: 16px; padding: 24px; transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.5s ease; position: relative; overflow: hidden; } .achievement-card:hover { transform: translateY(-8px) scale(1.02); box-shadow: 0 10px 30px -5px rgba(45, 27, 18, 0.08); border-color: rgba(107, 33, 55, 0.3); } .achievement-card__header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 20px; } .achievement-card__icon { width: 48px; height: 48px; border-radius: 12px; background: linear-gradient(135deg, rgba(107, 33, 55, 0.1) 0%, rgba(138, 44, 72, 0.1) 100%); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: #b8924a; border: 1px solid rgba(184, 146, 74, 0.2); } .achievement-card__badge { background: rgba(100, 116, 139, 0.2); color: #6b5244; font-size: 0.75rem; font-weight: 700; padding: 4px 12px; border-radius: 20px; text-transform: uppercase; } .achievement-card__title { font-family: 'Playfair Display', 'Georgia', serif; color: #2d1b12; font-size: 1.25rem; margin-bottom: 12px; } .achievement-card__text { color: #6b5244; font-size: 0.9rem; line-height: 1.5; margin-bottom: 20px; height: 3em; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; } .achievement-card__progress-info { display: flex; justify-content: space-between; color: #9c8979; font-size: 0.8rem; font-weight: 600; margin-bottom: 8px; text-transform: uppercase; } .achievement-card .progress { height: 8px; background: rgba(45, 27, 18, 0.5); border-radius: 4px; border: 1px solid rgba(107, 33, 55, 0.05); } .achievement-card .progress-bar { background: linear-gradient(90deg, #6b2137 0%, #8a2c48 100%); border-radius: 4px; } @media (max-width: 767px) { .achievements-section__title { font-size: 1.5rem; } .achievements-section__subtitle { font-size: 0.95rem; } .achievement-card__text { height: auto; -webkit-line-clamp: unset; } }

/* ===== PAGE: events ===== */
.events-calendar-section { background-color: #faf5ef; color: #2d1b12; overflow: hidden; }
.events-calendar-section__hero-title { font-family: 'Playfair Display', 'Georgia', serif; color: #6b2137; text-transform: uppercase; font-weight: 700; }
.events-calendar-section__hero-subtitle { color: #6b5244; font-size: 1.1rem; max-width: 700px; margin: 0 auto; }
.events-calendar-section__filter-btn { background: #f3ebe0; border: 1px solid rgba(107, 33, 55, 0.3); color: #2d1b12; padding: 10px 24px; border-radius: 30px; transition: all 0.3s ease; font-weight: 600; cursor: pointer; }
.events-calendar-section__filter-btn:hover { background: rgba(107, 33, 55, 0.2); border-color: #6b2137; }
.events-calendar-section__filter-btn.active { background: #6b2137; border-color: #6b2137; color: #2d1b12; box-shadow: 0 0 15px rgba(107, 33, 55, 0.4); }
.events-calendar-section__card { background: #f3ebe0; border-radius: 16px; border: 1px solid rgba(107, 33, 55, 0.08); height: 100%; display: flex; flex-direction: column; transition: transform 0.3s ease, box-shadow 0.3s ease; isolation: isolate; }
.events-calendar-section__card:hover { transform: translateY(-8px); box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4); border-color: rgba(107, 33, 55, 0.4); }
.events-calendar-section__img-wrapper { position: relative; width: 100%; height: 200px; overflow: hidden; border-radius: 16px 16px 0 0; }
.events-calendar-section__img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.events-calendar-section__card:hover .events-calendar-section__img-wrapper img { transform: scale(1.1); }
.events-calendar-section__badge { position: absolute; top: 15px; left: 15px; background: rgba(138, 44, 72, 0.9); padding: 4px 12px; border-radius: 20px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.events-calendar-section__content { padding: 1.5rem; display: flex; flex-direction: column; flex-grow: 1; }
.events-calendar-section__date { color: #b8924a; font-size: 0.85rem; margin-bottom: 0.75rem; font-weight: 600; }
.events-calendar-section__card-title { font-family: 'Playfair Display', 'Georgia', serif; color: #2d1b12; font-size: 1.25rem; margin-bottom: 0.75rem; }
.events-calendar-section__card-desc { color: #6b5244; font-size: 0.95rem; line-height: 1.5; margin-bottom: 0; }
@media (max-width: 767px) {
  .events-calendar-section__hero-title { font-size: 1.25rem; }
  .events-calendar-section__hero-subtitle { font-size: 0.9rem; }
  .events-calendar-section__card-title { font-size: 1.1rem; }
}

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

/* ===== PAGE: tournaments ===== */
.history-list { background-color: #faf5ef; position: relative; overflow: hidden; } .history-list .font-heading { font-family: 'Playfair Display', 'Georgia', serif; color: #2d1b12; } .history-list__controls { background: #f3ebe0; border: 1px solid rgba(107, 33, 55, 0.08); box-shadow: 0 4px 15px rgba(45, 27, 18, 0.06); } .history-list__controls .form-control, .history-list__controls .form-select { background-color: #faf5ef; border: 1px solid rgba(107, 33, 55, 0.3); color: #2d1b12; } .history-list__controls .form-control::placeholder { color: #9c8979; } .history-list__controls .form-control:focus, .history-list__controls .form-select:focus { border-color: #6b2137; box-shadow: 0 0 0 0.25rem rgba(107, 33, 55, 0.25); color: #2d1b12; } .history-list__card { background: #f3ebe0; border: 1px solid rgba(107, 33, 55, 0.08); border-radius: 12px; transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease; } .history-list__card:hover { transform: translateY(-5px); border-color: #6b2137; box-shadow: 0 10px 30px -5px rgba(107, 33, 55, 0.2); } .history-list__img-wrapper { height: 180px; overflow: hidden; border-top-left-radius: 12px; border-top-right-radius: 12px; border-bottom: 2px solid #6b2137; } .history-list__img-wrapper img { height: 100%; object-fit: cover; } .history-list__card .badge { background: linear-gradient(135deg, #6b2137 0%, #8a2c48 100%); color: #2d1b12; font-weight: 600; padding: 0.5rem 0.8rem; border-radius: 6px; } .history-list__avatar { width: 42px; height: 42px; border-radius: 50%; border: 2px solid #6b2137; background-color: #faf5ef; object-fit: cover; } .history-list__card h2 { color: #2d1b12; font-family: 'Playfair Display', 'Georgia', serif; } .text-accent { color: #b8924a; } .history-list .border-secondary { border-color: rgba(148, 163, 184, 0.1) !important; }

/* ===== PAGE: privacy ===== */
.privacy-section { background-color: #faf5ef; color: #2d1b12; font-family: 'Inter', sans-serif; }
.privacy-section .privacy-card { background: #f3ebe0; border: 1px solid rgba(107, 33, 55, 0.08); border-radius: 16px; box-shadow: 0 10px 30px -5px rgba(45, 27, 18, 0.08); backdrop-filter: blur(12px); }
.privacy-section .privacy-title { font-family: 'Playfair Display', 'Georgia', serif; color: #6b2137; font-size: clamp(1.8rem, 5vw, 2.5rem); text-align: center; text-transform: uppercase; letter-spacing: 2px; }
.privacy-section h3 { font-family: 'Playfair Display', 'Georgia', serif; color: #8a2c48; font-size: 1.25rem; margin-bottom: 1rem; display: flex; align-items: center; }
.privacy-section h3 i { color: #b8924a; font-size: 1rem; }
.privacy-section p, .privacy-section li { color: #6b5244; line-height: 1.8; margin-bottom: 1rem; }
.privacy-section ul { padding-left: 1.25rem; }
.privacy-section li { margin-bottom: 0.5rem; list-style-type: square; }
.privacy-section .btn-privacy-action { background: linear-gradient(135deg, #6b2137 0%, #8a2c48 100%); color: #2d1b12; border: none; padding: 12px 32px; border-radius: 8px; font-weight: 600; text-transform: uppercase; font-family: 'Playfair Display', 'Georgia', serif; transition: all 0.3s ease; letter-spacing: 1px; }
.privacy-section .btn-privacy-action:hover { transform: scale(1.05); box-shadow: 0 0 15px rgba(107, 33, 55, 0.5); opacity: 0.9; }

/* ===== PAGE: terms ===== */
.terms-section {
  background-color: #faf5ef;
  color: #2d1b12;
  min-height: 100vh;
}

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

.terms-section .terms-title {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: clamp(24px, 4vw, 40px);
  color: #6b2137;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

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

.terms-section .terms-subtitle {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: 1.25rem;
  color: #b8924a;
  margin-bottom: 1.2rem;
  border-left: 4px solid #8a2c48;
  padding-left: 15px;
}

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

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

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

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

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

/* ===== PAGE: disclaimer ===== */
.disclaimer-content { background-color: #faf5ef; min-height: 100vh; position: relative; overflow: hidden; }.disclaimer-card { background: #f3ebe0; border: 1px solid rgba(107, 33, 55, 0.08); border-radius: 16px; padding: clamp(20px, 5vw, 60px); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4); position: relative; z-index: 2; backdrop-filter: blur(12px); }.disclaimer-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, #6b2137, transparent); }.disclaimer-header h1 { font-family: 'Playfair Display', 'Georgia', serif; font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 700; color: #2d1b12; text-transform: uppercase; letter-spacing: 2px; }.disclaimer-divider { height: 4px; width: 60px; background: linear-gradient(90deg, #6b2137, #8a2c48); border-radius: 2px; margin-bottom: 1.5rem; }.disclaimer-block h2 { font-family: 'Playfair Display', 'Georgia', serif; font-weight: 600; letter-spacing: 1px; color: #b8924a !important; margin-bottom: 1rem; border-left: 3px solid #6b2137; padding-left: 15px; }.disclaimer-block p { font-family: 'Inter', sans-serif; font-size: 1rem; line-height: 1.8; color: #6b5244; margin-bottom: 0; }.disclaimer-footer p { color: #9c8979; margin-bottom: 0; }.js-reveal-content { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1); }.js-reveal-content.active { opacity: 1; transform: translateY(0); }@media (max-width: 768px) { .disclaimer-block h2 { font-size: 1.1rem; } .disclaimer-block p { font-size: 0.95rem; } }

/* ===== PAGE: rgp ===== */
.rgp-content-section {
    background-color: #faf5ef;
    font-family: 'Inter', sans-serif;
    color: #2d1b12;
}

.rgp-content-section .rgp-card {
    background: #f3ebe0;
    border-radius: 20px;
    border: 1px solid rgba(107, 33, 55, 0.08);
    box-shadow: 0 10px 30px -5px rgba(45, 27, 18, 0.08);
    overflow: hidden;
    position: relative;
}

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

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

.rgp-content-section .rgp-section-title {
    font-family: 'Playfair Display', 'Georgia', serif;
    color: #8a2c48;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid #6b2137;
    padding-left: 1rem;
}

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

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

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

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

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

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

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

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

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

.rgp-content-section .form-check-input {
    background-color: #f3ebe0;
    border-color: #9c8979;
}

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

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

.rgp-content-section .rgp-btn-outline:hover {
    background: #6b2137;
    color: #2d1b12;
    box-shadow: 0 0 15px rgba(107, 33, 55, 0.4);
}

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

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

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

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

.rgp-content-section .modal-content {
    background: #f3ebe0;
    border: 1px solid rgba(107, 33, 55, 0.1);
    border-radius: 16px;
    color: #2d1b12;
}

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

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

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

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

.comment-username {
    font-family: 'Playfair Display', 'Georgia', serif;
    color: #2d1b12;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.comment-date {
    color: #9c8979;
    font-size: 0.85rem;
}

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

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

.btn-action:hover {
    color: #8a2c48;
}

.reply-comment-card {
    background: rgba(45, 27, 18, 0.5);
    border-left: 3px solid #8a2c48;
    border-radius: 0 8px 8px 0;
    padding: 1rem;
    backdrop-filter: blur(12px);
}

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

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

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

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

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


/* ===== PAGE TEMPLATE: games ===== */
.royalbriarclub-game-page {
    background-color: #faf5ef;
    color: #2d1b12;
    font-family: 'Inter', sans-serif;
}

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

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

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

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

.royalbriarclub-control-btn {
    background: rgba(45, 27, 18, 0.7);
    color: #2d1b12;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.royalbriarclub-control-btn:hover {
    background: #6b2137;
    color: #2d1b12;
}

.royalbriarclub-info-card,
.royalbriarclub-sidebar-card,
.royalbriarclub-comments-container {
    background: #f3ebe0;
    border: 1px solid rgba(107, 33, 55, 0.08);
    border-radius: 16px;
    box-shadow: 0 10px 30px -5px rgba(45, 27, 18, 0.08);
}

.royalbriarclub-title-main {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: #6b2137;
}

.royalbriarclub-subtitle {
    color: #6b5244;
    font-size: 1.1rem;
}

.royalbriarclub-content-area h3 {
    font-family: 'Playfair Display', 'Georgia', serif;
    color: #2d1b12;
    margin-bottom: 1.5rem;
}

.royalbriarclub-content-area p {
    line-height: 1.8;
    color: #6b5244;
}

.royalbriarclub-sidebar-title {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 1.25rem;
    color: #8a2c48;
}

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

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

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

.royalbriarclub-details-list .label {
    color: #9c8979;
    font-weight: 600;
}

.royalbriarclub-details-list .value {
    color: #2d1b12;
}


.main-comment-card {
    border: 1px solid rgba(107, 33, 55, 0.05);
    border-radius: 12px;
    background: rgba(243, 235, 224, 0.7);
}

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

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

.comment-date {
    font-size: 0.85rem;
    color: #9c8979;
}

.comment-text {
    color: #6b5244;
    line-height: 1.6;
}

.btn-action {
    color: #6b5244;
    transition: color 0.3s ease;
}

.btn-action:hover {
    color: #6b2137;
}

.royalbriarclub-comment-form input,
.royalbriarclub-comment-form textarea {
    background-color: #faf5ef !important;
    border: 1px solid rgba(107, 33, 55, 0.1) !important;
    color: #2d1b12 !important;
}

.royalbriarclub-comment-form input::placeholder,
.royalbriarclub-comment-form textarea::placeholder {
    color: #9c8979 !important;
}


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

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

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

/* ===== FOOTER DARK OVERRIDE ===== */
.royalbriarclub-footer {
    background-color: #2d1b12 !important;
    color: #d4c4b0 !important;
}

.royalbriarclub-footer h3,
.royalbriarclub-footer h4,
.royalbriarclub-footer h5,
.royalbriarclub-footer .royalbriarclub-footer-heading {
    color: #ffffff !important;
}

.royalbriarclub-footer p,
.royalbriarclub-footer span,
.royalbriarclub-footer li,
.royalbriarclub-footer .footer-desc,
.royalbriarclub-footer .royalbriarclub-footer-text {
    color: #d4c4b0 !important;
}

.royalbriarclub-footer a {
    color: #b8924a !important;
}

.royalbriarclub-footer a:hover {
    color: #d4a85c !important;
}

.royalbriarclub-footer .royalbriarclub-disclaimer-box {
    background-color: rgba(255, 255, 255, 0.05) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.royalbriarclub-footer .royalbriarclub-disclaimer-box p,
.royalbriarclub-footer .royalbriarclub-disclaimer-box h3 {
    color: #d4c4b0 !important;
}

.royalbriarclub-footer .royalbriarclub-bottom-bar {
    border-top-color: rgba(255, 255, 255, 0.1) !important;
    color: #9c8979 !important;
}

/* ===== BUTTON WHITE TEXT ===== */
.royalbriarclub-cta-btn,
.royalbriarclub-btn-primary,
.btn-custom,
.royalbriarclub-play-btn,
.royalbriarclub-filter-btn.active,
button[type="submit"],
.royalbriarclub-cta-btn:hover,
.royalbriarclub-btn-primary:hover {
    color: #ffffff !important;
}

/* ===== HEADER STYLING ===== */
.royalbriarclub-header {
    background: rgba(250, 245, 239, 0.95) !important;
    backdrop-filter: blur(12px) !important;
    border-bottom: 1px solid rgba(107, 33, 55, 0.1) !important;
}

.royalbriarclub-header .royalbriarclub-brand-name,
.royalbriarclub-header .nav-link {
    color: #2d1b12 !important;
}

.royalbriarclub-header .nav-link:hover {
    color: #6b2137 !important;
}

/* ===== CARD STYLING ===== */
.royalbriarclub-game-card,
.royalbriarclub-card,
.glass-card,
.royalbriarclub-sidebar-card,
.royalbriarclub-article-content {
    background: #ffffff !important;
    border: 1px solid rgba(107, 33, 55, 0.08) !important;
    box-shadow: 0 4px 20px rgba(45, 27, 18, 0.08) !important;
}

.royalbriarclub-game-card:hover,
.glass-card:hover {
    box-shadow: 0 8px 30px rgba(45, 27, 18, 0.12) !important;
}

/* ===== HERO SECTION ===== */
.royalbriarclub-hero {
    background-color: #2d1b12 !important;
}

.royalbriarclub-hero-overlay {
    background: rgba(45, 27, 18, 0.65) !important;
}

.royalbriarclub-hero-headline,
.royalbriarclub-hero-content h1,
.royalbriarclub-hero-subtext,
.royalbriarclub-hero-content p {
    color: #ffffff !important;
}

.royalbriarclub-hero-floating-cta {
    color: #ffffff !important;
}

/* ===== CATEGORY HERO ===== */
.royalbriarclub-category-hero {
    color: #ffffff !important;
}

.royalbriarclub-category-hero h1,
.royalbriarclub-category-hero p {
    color: #ffffff !important;
}

/* ===== SECTION HEADINGS ===== */
.royalbriarclub-heading,
.royalbriarclub-title,
.royalbriarclub-section-heading,
.royalbriarclub-game-name,
.royalbriarclub-game-title,
.royalbriarclub-card-title,
.royalbriarclub-article-title,
.royalbriarclub-sidebar-title,
.royalbriarclub-module-title {
    color: #2d1b12 !important;
}

/* ===== BADGES AND ACCENTS ===== */
.royalbriarclub-badge {
    background: linear-gradient(135deg, #6b2137, #8a2c48) !important;
    color: #ffffff !important;
}

/* ===== REGISTRATION SECTION ===== */
.registration-block {
    background: linear-gradient(135deg, #2d1b12, #1a100b) !important;
}

.registration-card {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
}

.registration-title,
.registration-subtitle,
.registration-block .form-label,
.registration-block h2 {
    color: #ffffff !important;
}

/* ===== FEATURES SECTION ===== */
.royalbriarclub-features {
    background: linear-gradient(135deg, #2d1b12, #1a100b) !important;
}

.royalbriarclub-features .royalbriarclub-card {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
}

.royalbriarclub-features .royalbriarclub-card-title,
.royalbriarclub-features .royalbriarclub-heading,
.royalbriarclub-features h2,
.royalbriarclub-features h3 {
    color: #ffffff !important;
}

.royalbriarclub-features .royalbriarclub-card-desc,
.royalbriarclub-features .royalbriarclub-subtext,
.royalbriarclub-features p {
    color: #d4c4b0 !important;
}

.royalbriarclub-features .royalbriarclub-icon-box {
    background: linear-gradient(135deg, #6b2137, #8a2c48) !important;
    color: #ffffff !important;
}

.royalbriarclub-features .royalbriarclub-icon-box i {
    color: #ffffff !important;
}

/* ===== DISCLAIMER BOX ===== */
.royalbriarclub-disclaimer {
    background: rgba(107, 33, 55, 0.06) !important;
    border: 1px solid rgba(107, 33, 55, 0.12) !important;
    color: #6b5244 !important;
}

/* ===== META TEXT ===== */
.royalbriarclub-meta-text,
.royalbriarclub-game-meta {
    color: #9c8979 !important;
}

/* ===== AGE VERIFICATION MODAL ===== */
.age-modal-content {
    background: #ffffff !important;
    color: #2d1b12 !important;
}

.age-modal-content h2,
.age-modal-content h3 {
    color: #2d1b12 !important;
}

/* ===== FILTER BUTTONS ===== */
.royalbriarclub-filter-btn {
    color: #6b5244 !important;
    border-color: rgba(107, 33, 55, 0.2) !important;
    background: transparent !important;
}

.royalbriarclub-filter-btn:hover,
.royalbriarclub-filter-btn.active {
    background: linear-gradient(135deg, #6b2137, #8a2c48) !important;
    color: #ffffff !important;
    border-color: #6b2137 !important;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar-track {
    background: #f3ebe0 !important;
}

::-webkit-scrollbar-thumb {
    background: #6b2137 !important;
}

/* ===== LINKS ===== */
a {
    color: #6b2137;
}

a:hover {
    color: #8a2c48;
}

/* ===== COMMENTS ===== */
.royalbriarclub-comment-item {
    background: #faf5ef !important;
    border: 1px solid rgba(107, 33, 55, 0.06) !important;
}

.royalbriarclub-comment-text {
    color: #6b5244 !important;
}

.royalbriarclub-author {
    color: #6b2137 !important;
}

.royalbriarclub-date {
    color: #9c8979 !important;
}

/* ===== GAME DETAILS LINK ===== */
.royalbriarclub-details-link {
    color: #6b2137 !important;
}

.royalbriarclub-details-link:hover {
    color: #8a2c48 !important;
}

/* ===== RECOMMENDED SIDEBAR ===== */
.royalbriarclub-rec-item h5 {
    color: #2d1b12 !important;
}

.royalbriarclub-rec-item span {
    color: #9c8979 !important;
}

/* ===== NAVBAR TOGGLER ===== */
.navbar-toggler-icon {
    filter: brightness(0) !important;
}
