:root {
    --bf-primary-color: #4a2545;
    --bf-secondary-color: #a67f8e;
    --bf-accent-color: #d9b8c4;
    --bf-gradient: linear-gradient(135deg, var(--bf-primary-color) 0%, var(--bf-secondary-color) 100%);
    --bf-text-light: #f8f1f4;
    --bf-text-dark: #2d1b2b;
    --bf-font-heading: 'Cormorant Garamond', serif;
    --bf-font-body: 'Nunito', sans-serif;
    --bf-border-radius: 0.8rem;
    --bf-box-shadow: 0 0.4rem 1.5rem rgba(74, 37, 69, 0.15);
    --bf-transition: all 0.3s ease;
}

*, *::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--bf-font-body);
    color: var(--bf-text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #f9f6f8;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--bf-font-heading);
    font-weight: 600;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--bf-transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.bf_container {
    width: 100%;
    max-width: 120rem;
    margin: 0 auto;
    padding: 2rem;
}

.bf_button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.8rem 1.6rem;
    border-radius: var(--bf-border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--bf-transition);
    border: none;
    font-family: var(--bf-font-body);
    font-size: 1rem;
}

.bf_button:hover {
    transform: translateY(-0.2rem);
}

.bf_section {
    padding: 5rem 0;
    position: relative;
}

.bf_section_title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.bf_section_subtitle {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.bf_ageConfirmation_layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.bf_ageVerification_box {
    background-color: white;
    padding: 3rem;
    border-radius: var(--bf-border-radius);
    max-width: 50rem;
    text-align: center;
    box-shadow: var(--bf-box-shadow);
}

.bf_ageCheck_title {
    color: var(--bf-primary-color);
    justify-content: center;
}

.bf_ageCheck_content {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.bf_ageCheck_buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.bf_ageConfirm_yes {
    background: var(--bf-gradient);
    color: white;
}

.bf_ageConfirm_no {
    background-color: #f1f1f1;
    color: var(--bf-text-dark);
}

.bf_cookieNotice_banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--bf-primary-color);
    color: white;
    padding: .5rem 0;
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.bf_cookieNotice_banner.active {
    transform: translateY(0);
}

.bf_cookieAlert_container {
    width: 100%;
    max-width: 120rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    padding: 0.5rem 2rem;
}

.bf_cookieAlert_icon {
    font-size: 2rem;
}

.bf_cookieAlert_message {
    flex: 1;
    min-width: 20rem;
}

.bf_cookieAlert_link {
    color: var(--bf-accent-color);
    font-weight: 600;
}

.bf_cookieAccept_button {
    background-color: var(--bf-accent-color);
    color: var(--bf-primary-color);
}

.bf_mainHeader_wrapper {
    background-color: white;
    box-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 990;
}

.bf_headerContent_area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.bf_brandIdentity_panel {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.bf_brandLogo_image {
    height: 3.5rem;
}

.bf_brandName_title {
    font-size: 1.8rem;
    margin-bottom: 0;
    color: var(--bf-primary-color);
}

.bf_primaryNavigation_holder {
    display: flex;
}

.bf_navMenu_list {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}

.bf_navItem_element {
    position: relative;
}

.bf_navItem_element .material-symbols-outlined {
  font-size: 1.2rem;
  vertical-align: middle;
  margin-right: 0.3rem;
  color: var(--bf-color-primary);
}

.bf_navLink_text {
  display: inline-block;
  vertical-align: middle;
}

.bf_mobileNav_item .material-symbols-outlined {
  font-size: 1.4rem;
  margin-right: 0.5rem;
}

.bf_navLink_target {
    padding: 0.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.bf_navLink_target:hover {
    color: var(--bf-secondary-color);
}

.bf_mobileMenu_toggle {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--bf-primary-color);
}

.bf_mobileNavigation_drawer {
    position: fixed;
    top: 5.5rem;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    transform: translateY(-150%);
    transition: transform 0.3s ease;
    z-index: 980;
}

.bf_mobileNavigation_drawer.active {
    transform: translateY(0);
}

.bf_mobileNav_list {
    list-style: none;
    padding: 1.5rem 2rem;
}

.bf_mobileNav_item {
    margin-bottom: 1rem;
}

.bf_mobileNav_link {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 0;
    font-weight: 600;
}

.bf_welcomeSection_wrapper {
    padding-top: 8rem;
    padding-bottom: 6rem;
    position: relative;
    overflow: hidden;
}

.bf_welcomeBackground_canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bf-gradient);
    z-index: -1;
    opacity: 0.9;
}

.bf_welcomeContent_container {
    text-align: center;
    color: white;
    max-width: 60rem;
}

.bf_welcomeTitle_heading {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.bf_welcomeDescription_text {
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.bf_welcomeAction_buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.bf_welcomePrimary_button {
    background-color: white;
    color: var(--bf-primary-color);
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.bf_welcomeSecondary_button {
    background-color: transparent;
    color: white;
    border: 0.2rem solid white;
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.bf_aboutSection_wrapper {
    background-color: white;
}

.bf_aboutContainer_box {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.bf_aboutContent_column {
    flex: 1;
}

.bf_aboutVisual_column {
    flex: 1;
}

.bf_aboutImage_frame {
    height: 30rem;
    border-radius: var(--bf-border-radius);
    background: url('../bf-img/bf-about-img.jpg') center/cover;
    box-shadow: var(--bf-box-shadow);
}

.bf_aboutFeatures_list {
    list-style: none;
    margin-top: 2rem;
}

.bf_aboutFeature_item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.bf_gameSection_wrapper {
    background-color: #f5f0f4;
}

.bf_gameSection_container {
    text-align: center;
}

.bf_gameCards_wrapper {
    display: flex;
    gap: 2rem;
    margin: 3rem 0;
    flex-wrap: wrap;
    justify-content: center;
}

.bf_gameCard_item {
    background-color: white;
    border-radius: var(--bf-border-radius);
    overflow: hidden;
    box-shadow: var(--bf-box-shadow);
    width: calc(33.333% - 1.5rem);
    min-width: 20rem;
    padding: 1rem;
    transition: var(--bf-transition);
    opacity: 0;
    transform: translateY(2rem);
}

.bf_gameCard_item.animated {
    opacity: 1;
    transform: translateY(0);
}

.bf_gameCard_imageContainer {
    position: relative;
    height: auto;
    overflow: hidden;
}

.bf_gameCard_visual {
    transition: transform 0.5s ease;
}

.bf_gameCard_item:hover .bf_gameCard_visual {
    transform: scale(1.05);
}

.bf_gameCard_badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--bf-accent-color);
    color: var(--bf-primary-color);
    padding: 0.3rem 1rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.bf_gameCard_content {
    padding: 1.5rem;
    text-align: left;
}

.bf_gameCard_name {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.bf_gameCard_description {
    height: auto;
    min-height: 66px;
    margin-bottom: 1.5rem;
    color: #666;
}

.bf_gameCard_button {
    background: var(--bf-gradient);
    color: white;
    width: 100%;
    padding: 0.8rem;
}

.bf_gameSection_footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.bf_gameMore_button {
    background-color: var(--bf-primary-color);
    color: white;
    padding: 1rem 2rem;
}

.bf_gameSection_note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #666;
}

.bf_spotlightSection_wrapper {
    position: relative;
    padding: 6rem 0;
}

.bf_spotlightBackground_image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../bf-img/bf-background-img-1.jpg') center/cover;
    z-index: -2;
}

.bf_spotlightOverlay_layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(74, 37, 69, 0.8);
    z-index: -1;
}

.bf_spotlightContainer_box {
    text-align: center;
    color: white;
}

.bf_spotlightTitle_heading {
    color: white;
    justify-content: center;
}

.bf_spotlightSubtitle_text {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
}

.bf_spotlightGame_card {
    background-color: white;
    border-radius: var(--bf-border-radius);
    overflow: hidden;
    display: none;
    color: var(--bf-text-dark);
    text-align: left;
}

.bf_spotlightGame_card.active {
    display: flex;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.bf_spotlightVisual_column {
    flex: 1;
    min-width: 20rem;
    position: relative;
}

.bf_spotlightGame_image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bf_spotlightBadge_tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: var(--bf-accent-color);
    color: var(--bf-primary-color);
    padding: 0.3rem 1rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.bf_spotlightInfo_column {
    flex: 1;
    padding: 2rem;
    min-width: 20rem;
}

.bf_spotlightGame_title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.bf_spotlightGame_description {
    margin-bottom: 1.5rem;
}

.bf_spotlightFeatures_list {
    list-style: none;
    margin-bottom: 2rem;
}

.bf_spotlightFeature_item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
}

.bf_spotlightPlay_button {
    background: var(--bf-gradient);
    color: white;
    padding: 0.8rem 1.5rem;
}

.bf_featuresSection_wrapper {
    background-color: white;
}

.bf_featuresContainer_box {
    text-align: center;
}

.bf_featuresGrid_layout {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
    justify-content: center;
}

.bf_featureCard_item {
    background-color: #f9f6f8;
    border-radius: var(--bf-border-radius);
    padding: 2rem;
    width: calc(33.333% - 1.5rem);
    min-width: 20rem;
    text-align: center;
    transition: var(--bf-transition);
    opacity: 0;
    transform: translateY(2rem);
}

.bf_featureCard_item.animated {
    opacity: 1;
    transform: translateY(0);
}

.bf_featureCard_item:hover {
    transform: translateY(-0.5rem);
    box-shadow: var(--bf-box-shadow);
}

.bf_featureCard_icon {
    font-size: 3rem;
    color: var(--bf-secondary-color);
    margin-bottom: 1rem;
}

.bf_featureCard_title {
    margin-bottom: 1rem;
}

.bf_testimonialSection_wrapper {
    position: relative;
    padding: 6rem 0;
}

.bf_testimonialBackground_image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../bf-img/bf-background-img-2.jpg') center/cover;
    z-index: -2;
}

.bf_testimonialOverlay_layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(74, 37, 69, 0.9);
    z-index: -1;
}

.bf_testimonialContainer_box {
    text-align: center;
    color: white;
}

.bf_testimonialTitle_heading {
    color: white;
    justify-content: center;
}

.bf_testimonialSubtitle_text {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
}

.bf_testimonialSlider_track {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 1rem 0;
    margin-bottom: 2rem;
    scrollbar-width: none;
}

.bf_testimonialSlider_track::-webkit-scrollbar {
    display: none;
}

.bf_testimonialSlide_item {
    scroll-snap-align: start;
    min-width: calc(50% - 1rem);
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(0.5rem);
    border-radius: var(--bf-border-radius);
    padding: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    text-align: left;
}

.bf_testimonialUser_image {
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.bf_testimonialContent_box {
    flex: 1;
}

.bf_testimonialUser_name {
    margin-bottom: 0.5rem;
}

.bf_testimonialRating_stars {
    display: flex;
    gap: 0.3rem;
    margin-bottom: 1rem;
    color: var(--bf-accent-color);
}

.bf_testimonialQuote_text {
    font-style: italic;
}

.bf_testimonialSection_footer {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3rem;
}

.bf_testimonialMore_button {
    background-color: var(--bf-accent-color);
    color: var(--bf-primary-color);
    padding: 1rem 2rem;
}

.bf_testimonialContact_button {
    background-color: transparent;
    color: white;
    border: 0.1rem solid white;
    padding: 1rem 2rem;
}

.bf_faqSection_wrapper {
    background-color: #f5f0f4;
}

.bf_faqContainer_box {
    text-align: center;
}

.bf_faqAccordion_list {
    max-width: 70rem;
    margin: 3rem auto 0;
}

.bf_faqItem_element {
    background-color: white;
    border-radius: var(--bf-border-radius);
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: var(--bf-box-shadow);
}

.bf_faqQuestion_button {
    width: 100%;
    padding: 1.5rem 2rem;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: none;
    border: none;
    font-family: var(--bf-font-body);
    font-weight: 600;
    font-size: 1.1rem;
}

.bf_faqQuestion_button:hover {
    background-color: #f9f6f8;
}

.bf_faqAnswer_content {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.bf_faqItem_element.active .bf_faqAnswer_content {
    padding: 0 2rem 2rem;
    max-height: 30rem;
}

.bf_faqItem_element.active .bf_faqToggle_icon {
    transform: rotate(45deg);
}

.bf_faqToggle_icon {
    transition: transform 0.3s ease;
}

.bf_faqContact_prompt {
    margin-top: 3rem;
}

.bf_faqContact_button {
    background: var(--bf-gradient);
    color: white;
    padding: 1rem 2rem;
    margin-left: 1rem;
}

.bf_newsletterModal_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.bf_newsletterModal_overlay.active {
    opacity: 1;
    visibility: visible;
}

.bf_newsletterModal_container {
    background-color: white;
    border-radius: var(--bf-border-radius);
    padding: 3rem;
    max-width: 50rem;
    position: relative;
    box-shadow: var(--bf-box-shadow);
    transform: translateY(2rem);
    transition: transform 0.3s ease;
}

.bf_newsletterModal_overlay.active .bf_newsletterModal_container {
    transform: translateY(0);
}

.bf_newsletterModal_close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #666;
}

.bf_newsletterModal_title {
    margin-bottom: 1rem;
    justify-content: center;
}

.bf_newsletterModal_text {
    margin-bottom: 2rem;
    text-align: center;
}

.bf_newsletterModal_form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.bf_newsletterModal_group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.bf_newsletterModal_label {
    padding-top: 0.5rem;
    font-weight: 600;
}

.bf_newsletterModal_input {
    padding: 1rem;
    border: 0.1rem solid #ddd;
    border-radius: var(--bf-border-radius);
    font-family: var(--bf-font-body);
}

.bf_newsletterModal_error {
    color: #e74c3c;
    font-size: 0.8rem;
    display: none;
}

.bf_newsletterModal_terms {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 1rem 0;
}

.bf_newsletterModal_submit {
    background: var(--bf-gradient);
    color: white;
    padding: 1rem;
    font-size: 1.1rem;
}

.bf_newsletterModal_success {
    text-align: center;
    padding: 2rem;
    display: none;
}

.bf_newsletterModal_success.hidden {
    display: none;
}

.bf_newsletterModal_success span {
    font-size: 4rem;
    color: var(--bf-secondary-color);
    margin-bottom: 1rem;
}

.bf_noticeSection_wrapper {
    background-color: var(--bf-primary-color);
    color: white;
}

.bf_noticeContainer_box {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.bf_noticeItem_card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--bf-border-radius);
    padding: 2rem;
    width: calc(33.333% - 1.5rem);
    min-width: 20rem;
    text-align: center;
    transition: var(--bf-transition);
    opacity: 0;
    transform: translateY(2rem);
}

.bf_noticeItem_card.animated {
    opacity: 1;
    transform: translateY(0);
}

.bf_noticeItem_card:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-0.5rem);
}

.bf_noticeItem_icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--bf-accent-color);
}

.bf_noticeItem_title {
    margin-bottom: 1rem;
    color: white;
}

.bf_noticeItem_text {
    color: rgba(255, 255, 255, 0.8);
}

.bf_noticeItem_text a {
    color: var(--bf-accent-color);
    font-weight: 600;
}

.bf_mainFooter_wrapper {
    background-color: var(--bf-text-dark);
    color: white;
    padding: 4rem 0 0;
}

.bf_footerContent_container {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.bf_footerSection_column {
    flex: 1;
    min-width: 20rem;
}

.bf_footerSection_title {
    color: white;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.bf_footerSection_text {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
}

.bf_footerSection_list {
    list-style: none;
}

.bf_footerSection_item {
    margin-bottom: 1rem;
}

.bf_footerSection_link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--bf-transition);
    color: rgba(255, 255, 255, 0.7);
}

.bf_footerSection_link:hover {
    color: var(--bf-accent-color);
    padding-left: 0.5rem;
}

.bf_footerSection_address {
    font-style: normal;
    margin-bottom: 1.5rem;
}

.bf_footerSection_address p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

.bf_footerContact_button {
    background: var(--bf-gradient);
    color: white;
    padding: 0.8rem 1.5rem;
    width: 100%;
    margin-top: 1rem;
}

.bf_footerCopyright_bar {
    text-align: center;
    padding: 1.5rem 0;
    margin-top: 3rem;
    border-top: 0.1rem solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.bf_contactModal_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.bf_contactModal_overlay.active {
    opacity: 1;
    visibility: visible;
}

.bf_contactModal_container {
    background-color: white;
    border-radius: var(--bf-border-radius);
    padding: 3rem;
    max-width: 50rem;
    position: relative;
    box-shadow: var(--bf-box-shadow);
    transform: translateY(2rem);
    transition: transform 0.3s ease;
}

.bf_contactModal_overlay.active .bf_contactModal_container {
    transform: translateY(0);
}

.bf_contactModal_close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #666;
}

.bf_contactModal_title {
    margin-bottom: 1rem;
    justify-content: center;
}

.bf_contactModal_text {
    margin-bottom: 2rem;
    text-align: center;
}

.bf_contactModal_form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.bf_contactModal_group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.bf_contactModal_label {
    padding-top: 0.5rem;
    font-weight: 600;
}

.bf_contactModal_input,
.bf_contactModal_select,
.bf_contactModal_textarea {
    padding: 1rem;
    border: 0.1rem solid #ddd;
    border-radius: var(--bf-border-radius);
    font-family: var(--bf-font-body);
}

.bf_contactModal_textarea {
    min-height: 10rem;
    resize: vertical;
}

.bf_contactModal_error {
    color: #e74c3c;
    font-size: 0.8rem;
    display: none;
}

.bf_contactModal_terms {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 1rem 0;
}

.bf_contactModal_submit {
    background: var(--bf-gradient);
    color: white;
    padding: 1rem;
    font-size: 1.1rem;
}

.bf_contactModal_success {
    text-align: center;
    padding: 2rem;
    display: none;
}

.bf_contactModal_success.hidden {
    display: none;
}

.bf_contactModal_success span {
    font-size: 4rem;
    color: var(--bf-secondary-color);
    margin-bottom: 1rem;
}

.bf_scrollTop_button {
    position: fixed;
    bottom: 17rem;
    right: 2rem;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: var(--bf-gradient);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--bf-box-shadow);
    opacity: 0;
    visibility: hidden;
    transition: var(--bf-transition);
    z-index: 995;
}

.bf_scrollTop_button.active {
    opacity: 1;
    visibility: visible;
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-1rem); }
    100% { transform: translateY(0); }
}

@media (max-width: 1024px) {
    .bf_spotlightGame_card {
        flex-direction: column;
    }
    
    .bf_testimonialSlide_item {
        min-width: calc(100% - 1rem);
    }
}

@media (max-width: 768px) {
    .bf_primaryNavigation_holder {
        display: none;
    }
    
    .bf_mobileMenu_toggle {
        display: block;
    }
    
    .bf_aboutContainer_box {
        flex-direction: column;
    }
    
    .bf_aboutImage_frame {
        width: 100%;
    }
    
    .bf_gameCard_item {
        width: calc(50% - 1rem);
    }
    
    .bf_featureCard_item {
        width: calc(50% - 1rem);
    }
}

@media (max-width: 480px) {
    .bf_section_title {
        font-size: 2rem;
    }
    
    .bf_ageVerification_box {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .bf_ageCheck_buttons {
        flex-direction: column;
    }
    
    .bf_cookieAlert_container {
        flex-direction: column;
        text-align: center;
    }
    
    .bf_cookieAlert_message {
        min-width: auto;
    }
    
    .bf_welcomeAction_buttons {
        flex-direction: column;
    }
    
    .bf_gameCard_item,
    .bf_featureCard_item,
    .bf_noticeItem_card {
        width: 100%;
    }
    
    .bf_footerSection_column {
        min-width: 100%;
    }
    
    .bf_contactModal_container,
    .bf_newsletterModal_container {
        padding: 2rem 1rem;
        margin: 0 1rem;
    }
}

@media (max-width: 320px) {
    .bf_container {
        padding: 1rem;
    }
    
    .bf_headerContent_area {
        padding: 1rem;
    }
    
    .bf_brandName_title {
        font-size: 1.5rem;
    }
    
    .bf_section_title {
        font-size: 1.8rem;
    }
}

.bfpages_faq_wrapper {
    background-color: var(--bf-primary-color);
    color: white;
    text-align: center;
    padding: 12rem 0 4rem 0;
}

.bfpages_faq_wrapper .bf_section_title {
    color: white;
    justify-content: center;
}

.bfpages_faq_wrapper .bf_section_subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.bfpages_faq_content {
    padding: 4rem 0;
    background-color: #f9f6f8;
}

.bfpages_faq_list {
    max-width: 70rem;
    margin: 0 auto;
}

.bfpages_faq_item {
    background-color: white;
    border-radius: var(--bf-border-radius);
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: var(--bf-box-shadow);
}

.bfpages_faq_question {
    width: 100%;
    padding: 1.5rem 2rem;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: none;
    border: none;
    font-family: var(--bf-font-body);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--bf-text-dark);
}

.bfpages_faq_question:hover {
    background-color: #f9f6f8;
}

.bfpages_faq_answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.bfpages_faq_item.active .bfpages_faq_icon {
    transform: rotate(45deg);
}

.bfpages_faq_item.active .bfpages_faq_answer {
    padding: 0 2rem 2rem;
    max-height: 50rem;
    transition: max-height 0.5s ease, padding 0.3s ease;
}

.bfpages_faq_item:not(.active) .bfpages_faq_answer {
    max-height: 0;
    overflow: hidden;
}

.bfpages_faq_icon {
    transition: transform 0.3s ease;
}

@media (max-width: 768px) {
    .bfpages_faq_question {
        font-size: 1rem;
        padding: 1.2rem;
    }
    
    .bfpages_faq_answer {
        padding: 0 1.2rem;
    }
    
    .bfpages_faq_item.active .bfpages_faq_answer {
        padding: 0 1.2rem 1.5rem;
    }
}

.bfpages_reviews_header {
    background-color: var(--bf-primary-color);
    color: white;
    text-align: center;
    padding: 12rem 0 4rem 0;
}

.bfpages_reviews_header .bf_section_title {
    color: white;
    justify-content: center;
}

.bfpages_reviews_header .bf_section_subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.bfpages_reviews_content {
    padding: 4rem 0;
    background-color: #f9f6f8;
}

.bfpages_reviews_grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.bfpages_review_card {
    background-color: white;
    border-radius: var(--bf-border-radius);
    overflow: hidden;
    box-shadow: var(--bf-box-shadow);
    width: calc(33.333% - 1.5rem);
    min-width: 20rem;
    transition: var(--bf-transition);
}

.bfpages_review_card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 0.5rem 1.5rem rgba(74, 37, 69, 0.2);
}

.bfpages_review_image {
    width: 100%;
    height: 15rem;
    object-fit: cover;
}

.bfpages_review_content {
    padding: 1.5rem;
}

.bfpages_review_rating {
    display: flex;
    gap: 0.3rem;
    margin: 0.5rem 0;
    color: var(--bf-secondary-color);
}

.bfpages_review_text {
    margin-bottom: 1rem;
    color: #555;
}

.bfpages_review_date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #777;
}

@media (max-width: 1024px) {
    .bfpages_review_card {
        width: calc(50% - 1rem);
    }
}

@media (max-width: 480px) {
    .bfpages_review_card {
        width: 100%;
    }
}

.bfpages_responsible_header {
    background-color: var(--bf-primary-color);
    color: white;
    text-align: center;
    padding: 12rem 0 4rem 0;
}

.bfpages_responsible_header .bf_section_title {
    color: white;
    justify-content: center;
}

.bfpages_responsible_header .bf_section_subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.bfpages_responsible_content {
    padding: 4rem 0;
    background-color: #f9f6f8;
}

.bfpages_responsible_list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.bfpages_responsible_item {
    background-color: white;
    border-radius: var(--bf-border-radius);
    padding: 2rem;
    width: calc(33.333% - 1.5rem);
    min-width: 20rem;
    text-align: center;
    box-shadow: var(--bf-box-shadow);
    transition: var(--bf-transition);
}

.bfpages_responsible_item:hover {
    transform: translateY(-0.5rem);
}

.bfpages_responsible_icon {
    font-size: 3rem;
    color: var(--bf-secondary-color);
    margin-bottom: 1rem;
}

.bfpages_responsible_item h3 {
    margin-bottom: 1rem;
    color: var(--bf-primary-color);
}

.bfpages_responsible_item p {
    color: #555;
}

.bfpages_responsible_item a {
    color: var(--bf-secondary-color);
    font-weight: 600;
}

@media (max-width: 1024px) {
    .bfpages_responsible_item {
        width: calc(50% - 1rem);
    }
}

@media (max-width: 480px) {
    .bfpages_responsible_item {
        width: 100%;
    }
}

.bfpages_games_intro {
    background-color: var(--bf-primary-color);
    color: white;
    padding: 12rem 0 4rem 0;
}

.bfpages_games_intro .bf_section_title {
    color: white;
    margin-bottom: 2rem;
    justify-content: center;
}

.bfpages_games_description {
    max-width: 70rem;
    margin: 0 auto;
    text-align: center;
}

.bfpages_games_description p {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.bfpages_games_collection {
    padding: 4rem 0;
    background-color: #f9f6f8;
}

.bfpages_games_grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.bfpages_game_card {
    background-color: white;
    border-radius: var(--bf-border-radius);
    overflow: hidden;
    box-shadow: var(--bf-box-shadow);
    width: calc(50% - 1rem);
    min-width: 20rem;
    padding: 1rem;
    transition: var(--bf-transition);
}

.bfpages_game_card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 0.5rem 1.5rem rgba(74, 37, 69, 0.2);
}

.bfpages_game_imageContainer {
    position: relative;
    height: auto;
    overflow: hidden;
}

.bfpages_game_visual {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.bfpages_game_card:hover .bfpages_game_visual {
    transform: scale(1.05);
}

.bfpages_game_badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--bf-accent-color);
    color: var(--bf-primary-color);
    padding: 0.3rem 1rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.bfpages_game_content {
    padding: 1.5rem;
}

.bfpages_game_name {
    text-align: center;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.bfpages_game_description {
    margin-bottom: 1.5rem;
    color: #666;
}

.bfpages_game_button {
    background: var(--bf-gradient);
    color: white;
    width: 100%;
    padding: 0.8rem;
}

@media (max-width: 768px) {
    .bfpages_game_card {
        width: 100%;
    }
}

.bfpages_contact_header {
    background-color: var(--bf-primary-color);
    color: white;
    text-align: center;
    padding: 12rem 0 4rem 0;
}

.bfpages_contact_header .bf_section_title {
    color: white;
    justify-content: center;
}

.bfpages_contact_header .bf_section_subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.bfpages_contact_main {
    padding: 4rem 0;
    background-color: #f9f6f8;
}

.bfpages_contact_content {
    max-width: 70rem;
    margin: 0 auto 3rem;
}

.bfpages_contact_content h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    color: var(--bf-primary-color);
}

.bfpages_contact_info {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.bfpages_contact_method {
    flex: 1;
    min-width: 15rem;
    background-color: white;
    padding: 1.5rem;
    border-radius: var(--bf-border-radius);
    box-shadow: var(--bf-box-shadow);
    text-align: center;
}

.bfpages_contact_method span {
    font-size: 2.5rem;
    color: var(--bf-secondary-color);
    margin-bottom: 1rem;
}

.bfpages_contact_method h4 {
    margin-bottom: 0.5rem;
    color: var(--bf-primary-color);
}

@media (max-width: 768px) {
    .bfpages_contact_info {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .bfpages_contact_method {
        width: 100%;
    }
}

.bfpages_cookies_header {
    background-color: var(--bf-primary-color);
    color: white;
    text-align: center;
    padding: 12rem 0 4rem 0;
}

.bfpages_cookies_header .bf_section_title {
    color: white;
    justify-content: center;
}

.bfpages_cookies_header .bf_section_subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.bfpages_cookies_content {
    padding: 4rem 0;
    background-color: #f9f6f8;
}

.bfpages_cookies_intro {
    max-width: 70rem;
    margin: 0 auto 3rem;
    text-align: center;
    font-size: 1.1rem;
    color: #555;
}

.bfpages_cookies_list {
    max-width: 70rem;
    margin: 0 auto;
}

.bfpages_cookies_item {
    background-color: white;
    border-radius: var(--bf-border-radius);
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--bf-box-shadow);
}

.bfpages_cookies_item h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: var(--bf-primary-color);
}

.bfpages_cookies_types {
    list-style: none;
    margin-left: 1.5rem;
}

.bfpages_cookies_types li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
}

.bfpages_cookies_types li:before {
    content: "•";
    color: var(--bf-secondary-color);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.bfpages_terms_header {
    background-color: var(--bf-primary-color);
    color: white;
    padding: 12rem 0 4rem 0;
    text-align: center;
}

.bfpages_terms_header .bf_section_title {
    color: white;
    justify-content: center;
}

.bfpages_terms_header .bf_section_subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

.bfpages_terms_content {
    padding: 4rem 0;
    background-color: #f9f6f8;
}

.bfpages_terms_intro {
    max-width: 70rem;
    margin: 0 auto 3rem;
    text-align: center;
}

.bfpages_terms_intro p {
    font-size: 1.1rem;
    color: #555;
}

.bfpages_terms_grid {
    display: flex;
    gap: 3rem;
    max-width: 70rem;
    margin: 0 auto;
}

.bfpages_terms_section {
    flex: 1;
    min-width: 20rem;
}

.bfpages_terms_section h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    color: var(--bf-primary-color);
    padding-bottom: 0.5rem;
    border-bottom: 0.1rem solid #ddd;
}

.bfpages_terms_item {
    margin-bottom: 2rem;
}

.bfpages_terms_item h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    color: var(--bf-secondary-color);
}

@media (max-width: 768px) {
    .bfpages_terms_grid {
        flex-direction: column;
    }
    
    .bfpages_terms_section {
        width: 100%;
    }
}

.bfpages_contact_form_wrapper {
    background-color: white;
    border-radius: var(--bf-border-radius);
    padding: 2.5rem;
    box-shadow: var(--bf-box-shadow);
    margin-top: 2rem;
}

.bfpages_contact_form_description {
    margin-bottom: 2rem;
    color: #666;
}

.bfpages_contact_group {
    margin-bottom: 1.5rem;
}

.bfpages_contact_label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.bfpages_contact_input,
.bfpages_contact_select,
.bfpages_contact_textarea {
    width: 100%;
    padding: 1rem;
    border: 0.1rem solid #ddd;
    border-radius: var(--bf-border-radius);
    font-family: var(--bf-font-body);
}

.bfpages_contact_textarea {
    min-height: 12rem;
}

.bfpages_contact_error {
    color: #e74c3c;
    font-size: 0.8rem;
}

.bfpages_contact_terms {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 1.5rem 0;
    font-size: 0.9rem;
}

.bfpages_contact_submit {
    background: var(--bf-gradient);
    color: white;
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
}

.bfpages_contact_success {
    text-align: center;
    padding: 2rem;
    background-color: #f0faf0;
    border-radius: var(--bf-border-radius);
    margin-top: 1.5rem;
}

.bfpages_contact_success.hidden {
    display: none;
}

.bfpages_contact_success span {
    font-size: 3rem;
    color: #4CAF50;
    margin-bottom: 1rem;
    display: block;
}

@media (max-width: 768px) {
    .bfpages_contact_form_wrapper {
        padding: 1.5rem;
    }
}