@import url('https://fonts.googleapis.com/css2?family=Shantell+Sans:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@300;400;500&display=swap');

body {
    font-family: 'Fira Code', monospace;
    margin: 0;
    padding: 0;
    color: #333;
    background: #f5f5f5;
    line-height: 1.6;
}

:root {
    --gradient-primary: linear-gradient(135deg, #2af598 0%, #08aeea 100%);
    --gradient-secondary: linear-gradient(135deg, #08aeea 0%, #2af598 100%);
    --gradient-accent: linear-gradient(135deg, #00ff87 0%, #60efff 100%);
}

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

.klb_ageCheck_box {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0,0,0,0.3);
}

.klb_ageCheck_header {
    font-family: 'Shantell Sans', cursive;
    color: #08aeea;
    margin-bottom: 1rem;
}

.klb_ageCheck_message {
    margin-bottom: 1.5rem;
}

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

.klb_ageCheck_yes, .klb_ageCheck_no {
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Fira Code', monospace;
    font-weight: 500;
    transition: all 0.3s ease;
}

.klb_ageCheck_yes {
    background: var(--gradient-primary);
    color: white;
}

.klb_ageCheck_no {
    background: #f5f5f5;
    color: #333;
}

.klb_cookieAlert_banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #333;
    color: white;
    padding: 1rem;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.klb_cookieAlert_inner {
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.klb_cookieAlert_symbol {
    font-size: 1.5rem;
    color: #2af598;
}

.klb_cookieAlert_anchor {
    color: #08aeea;
    text-decoration: underline;
}

.klb_cookieAlert_ok {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Fira Code', monospace;
}

.klb_siteHeader_wrapper {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.klb_headerContent_area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.klb_brandDisplay_emblem {
    height: 50px;
    width: auto;
}

.klb_brandDisplay_name {
    font-family: 'Shantell Sans', cursive;
    font-size: 1.8rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin: 0;
}

.klb_navMenu_holder {
    display: flex;
}

.klb_navMenu_list {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.klb_navMenu_target {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.klb_navMenu_target:hover {
    color: #08aeea;
}

.klb_mobileToggle_button {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.klb_mobileNav_dropdown {
    position: fixed;
    top: 0;
    left: -115%;
    width: 100%;
    height: 100vh;
    background: white;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    z-index: 101;
    transition: left 0.3s ease;
    padding: 2rem 1rem;
}

.klb_mobileNav_dropdown.active {
    left: 0;
}

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

.klb_mobileNav_element {
    margin-bottom: 1rem;
}

.klb_mobileNav_destination {
    text-decoration: none;
    color: #333;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.klb_welcomeSegment_section {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.klb_welcomeSegment_canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    z-index: -1;
}

.klb_welcomeSegment_main {
    max-width: 800px;
    padding: 2rem;
}

.klb_welcomeSegment_title {
    font-family: 'Shantell Sans', cursive;
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.klb_welcomeSegment_description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

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

.klb_welcomeSegment_primary, .klb_welcomeSegment_secondary {
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.klb_welcomeSegment_primary {
    background: white;
    color: #08aeea;
}

.klb_welcomeSegment_secondary {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 1px solid white;
}

.klb_advantagesSegment_section {
    position: relative;
    padding: 5rem 1rem;
}

.klb_advantagesSegment_pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../klb-image/klb-img-bg-1.jpg') repeat;
    opacity: 0.05;
    z-index: -2;
}

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

.klb_advantagesSegment_core {
    max-width: 1200px;
    margin: 0 auto;
}

.klb_advantagesSegment_heading {
    font-family: 'Shantell Sans', cursive;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

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

.klb_advantagesSegment_card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    width: calc(25% - 2rem);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.klb_advantagesSegment_card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.klb_advantagesSegment_icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.klb_advantagesSegment_label {
    font-family: 'Shantell Sans', cursive;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.klb_featureGame_section {
    padding: 5rem 1rem;
    background: #f9f9f9;
}

.klb_featureGame_container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 40px;
}

.klb_featureGame_container:last-of-type {
    margin-bottom: 0;
}

.klb_featureGame_visual {
    position: relative;
    flex: 1;
}

.klb_featureGame_image {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.klb_featureGame_tag {
    position: absolute;
    top: -15px;
    right: -15px;
    background: var(--gradient-accent);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.klb_featureGame_info {
    flex: 1;
}

.klb_featureGame_title {
    font-family: 'Shantell Sans', cursive;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.klb_featureGame_summary {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.klb_featureGame_points {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

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

.klb_featureGame_button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 2.5rem;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.klb_featureGame_button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.klb_updatesSegment_section {
    padding: 4rem 1rem;
    background: var(--gradient-primary);
    color: white;
}

.klb_updatesSegment_wrapper {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.klb_updatesSegment_header {
    font-family: 'Shantell Sans', cursive;
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.klb_updatesSegment_text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
}

.klb_updatesSegment_form {
    width: 100%;
    max-width: 500px;
}

.klb_updatesSegment_field {
    margin-bottom: 1rem;
    position: relative;
}

.klb_updatesSegment_input {
    width: 100%;
    max-width: 280px;
    padding: 1rem;
    border-radius: 50px;
    border: none;
    font-family: 'Fira Code', monospace;
}

.klb_updatesSegment_error {
    color: #ffcccc;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    display: none;
}

.klb_updatesSegment_agreement {
    margin: 1rem 0;
    text-align: left;
    font-size: 0.9rem;
}

.klb_updatesSegment_agreement a {
    color: white;
    text-decoration: underline;
}

.klb_updatesSegment_submit {
    width: 100%;
    padding: 1rem;
    border-radius: 50px;
    border: none;
    background: white;
    color: #08aeea;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.klb_updatesSegment_submit:hover {
    background: #f0f0f0;
}

.klb_updatesSegment_confirmation {
    display: none;
    text-align: center;
    padding: 20px;
    background: rgba(46, 204, 113, 0.2);
    border-radius: 8px;
    margin-top: 20px;
    color: #27ae60;
}

.klb_updatesSegment_confirmation i {
    font-size: 24px;
    margin-bottom: 10px;
    display: block;
}

.klb_updatesSegment_confirmation p {
    margin: 0;
    font-weight: 500;
}

.klb_communitySegment_section {
    position: relative;
    padding: 5rem 1rem;
    color: white;
}

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

.klb_communitySegment_filter {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: -1;
}

.klb_communitySegment_center {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.klb_communitySegment_title {
    font-family: 'Shantell Sans', cursive;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.klb_communitySegment_intro {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.klb_communitySegment_numbers {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
}

.klb_communitySegment_stat {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 10px;
    min-width: 150px;
}

.klb_communitySegment_stat i {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.klb_communitySegment_figure {
    font-family: 'Shantell Sans', cursive;
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}

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

.klb_communitySegment_highlight {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 10px;
    flex: 1;
    transition: transform 0.3s ease;
}

.klb_communitySegment_highlight:hover {
    transform: translateY(-10px);
}

.klb_communitySegment_highlight i {
    font-size: 2rem;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.klb_communitySegment_name {
    font-family: 'Shantell Sans', cursive;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.klb_testimonialsSegment_section {
    padding: 5rem 1rem;
    background: #f9f9f9;
}

.klb_testimonialsSegment_frame {
    max-width: 1200px;
    margin: 0 auto;
}

.klb_testimonialsSegment_heading {
    font-family: 'Shantell Sans', cursive;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.klb_testimonialsSegment_slides {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding-bottom: 2rem;
}

.klb_testimonialsSegment_card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    width: 100%;
    min-width: 290px;
    transition: transform 0.3s ease;
}

.klb_testimonialsSegment_card:hover {
    transform: translateY(-10px);
}

.klb_testimonialsSegment_photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 3px solid #08aeea;
}

.klb_testimonialsSegment_player {
    font-family: 'Shantell Sans', cursive;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.klb_testimonialsSegment_stars {
    color: #ffc107;
    margin-bottom: 1rem;
}

.klb_testimonialsSegment_quote {
    width: 100%;
    max-width: 270px;
    height: 100%;
    min-height: 150px;
    font-size: 14px;
}

.klb_supportSegment_section {
    position: relative;
    padding: 5rem 1rem;
}

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

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

.klb_supportSegment_main {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    color: white;
}

.klb_supportSegment_info {
    flex: 1;
}

.klb_supportSegment_title {
    font-family: 'Shantell Sans', cursive;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.klb_supportSegment_text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.klb_supportSegment_contacts {
    margin-top: 2rem;
}

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

.klb_supportSegment_formArea {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.klb_supportSegment_group {
    margin-bottom: 1.5rem;
}

.klb_supportSegment_label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.klb_supportSegment_input, .klb_supportSegment_textbox {
    width: 100%;
    max-width: 500px;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Fira Code', monospace;
}

.klb_supportSegment_textbox {
    width: 100%;
    max-width: 500px;
    min-height: 150px;
    resize: vertical;
}

.klb_supportSegment_error {
    color: #e74c3c;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    display: none;
}

.klb_supportSegment_terms {
    margin: 1.5rem 0;
    font-size: 0.9rem;
    color: #333;
}

.klb_supportSegment_terms a {
    color: #08aeea;
}

.klb_supportSegment_button {
    width: 100%;
    padding: 1rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.klb_supportSegment_button:hover {
    opacity: 0.9;
}

.klb_supportSegment_confirmation {
    text-align: center;
    padding: 2rem;
    color: #2ecc71;
    display: none;
}

.klb_supportSegment_confirmation i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.klb_faqSegment_section {
    padding: 5rem 1rem;
    background: #f9f9f9;
}

.klb_faqSegment_container {
    max-width: 800px;
    margin: 0 auto;
}

.klb_faqSegment_headline {
    font-family: 'Shantell Sans', cursive;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.klb_faqSegment_questions {
    border-radius: 10px;
    overflow: hidden;
}

.klb_faqSegment_item {
    margin-bottom: 1rem;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.klb_faqSegment_query {
    width: 100%;
    padding: 1.5rem;
    text-align: left;
    border: none;
    background: white;
    font-family: 'Shantell Sans', cursive;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.klb_faqSegment_query i:first-child {
    margin-right: 1rem;
    color: #08aeea;
}

.klb_faqSegment_answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.klb_faqSegment_item.active .klb_faqSegment_answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
}

.klb_noticeSegment_section {
    position: relative;
    padding: 4rem 1rem;
    color: white;
}

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

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

.klb_noticeSegment_wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
}

.klb_noticeSegment_block {
    flex: 1;
}

.klb_noticeSegment_header {
    font-family: 'Shantell Sans', cursive;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #2af598;
}

.klb_noticeSegment_content a {
    color: #2af598;
    text-decoration: underline;
}

.klb_noticeSegment_logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.klb_noticeSegment_logos img {
    width: 140px;
    max-width: 140px;
    background: #fff;
    padding: 7px;
    border-radius: 4px;
}

.klb_siteFooter_area {
    background: #333;
    color: white;
    padding: 4rem 1rem 0;
}

.klb_footerContent_box {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.klb_footerSection_part {
    flex: 1;
    min-width: 250px;
}

.klb_footerSection_title {
    font-family: 'Shantell Sans', cursive;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #2af598;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.klb_footerSection_item {
    margin-bottom: 1rem;
}

.klb_footerSection_link {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.klb_footerSection_link:hover {
    color: #2af598;
}

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

.klb_footerCopyright_bar {
    text-align: center;
    padding: 1.5rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
}

.klb_scrollTop_trigger {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
}

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

.policy-container, .cookie-container, .rg-container {
    max-width: 900px;
    margin: 2rem auto;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.policy-header, .cookie-header, .rg-header {
    color: white;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    text-align: center;
}

.policy-header h1, .cookie-header h1, .rg-header h1 {
    font-family: 'Shantell Sans', cursive;
    margin: 0;
    font-size: 2.5rem;
}

.back-button {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.8rem 1.5rem;
    color: white;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.back-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.cookie-types {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.cookie-type {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #08aeea;
}

.warning-box {
    background: #fff8e6;
    border-left: 4px solid #ffc107;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 4px 4px 0;
}

.resources-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.resource-card {
    background: #f5f5f5;
    padding: 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.hidden {
    display: none !important;
}

@media (max-width: 1024px) {
    .klb_advantagesSegment_card {
        width: calc(50% - 2rem);
    }
    
    .klb_featureGame_container {
        flex-direction: column;
    }
    
    .klb_supportSegment_main {
        flex-direction: column;
    }
    
    .klb_communitySegment_numbers {
        flex-wrap: wrap;
    }
    
    .klb_communitySegment_highlights {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .klb_navMenu_holder {
        display: none;
    }
    
    .klb_mobileToggle_button {
        width: auto;
        height: auto;
        display: block;
        z-index: 333;
    }

    .klb_welcomeSegment_title {
        font-size: 2.5rem;
    }
    
    .klb_advantagesSegment_heading, 
    .klb_communitySegment_title,
    .klb_testimonialsSegment_heading,
    .klb_supportSegment_title,
    .klb_faqSegment_headline {
        font-size: 2rem;
    }

    .klb_updatesSegment_input,
    .klb_supportSegment_input, 
    .klb_supportSegment_textbox, 
    .klb_supportSegment_textbox {
        width: 90%;
    }
    
    .klb_noticeSegment_wrapper {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .klb_welcomeSegment_title {
        font-size: 2rem;
    }
    
    .klb_welcomeSegment_actions {
        flex-direction: column;
    }
    
    .klb_advantagesSegment_card {
        width: 100%;
    }
    
    .klb_communitySegment_stat {
        width: 100%;
    }
   
    .klb_updatesSegment_header {
        font-size: 1.8rem;
    }

    .klb_headerContent_area,
    .klb_brandDisplay_panel {
        flex-direction: column;
    }

    .klb_mobileToggle_button {
        position: relative;
        top: -40px;
        right: -115px;
    }
}

@media (max-width: 320px) {
    .klb_welcomeSegment_title {
        font-size: 1.8rem;
    }
    
    .klb_brandDisplay_name {
        font-size: 1.5rem;
    }
    
    .klb_ageCheck_options {
        flex-direction: column;
    }
    
    .klb_cookieAlert_inner {
        width: 90%;
        max-width: 290px;
        flex-direction: column;
        text-align: center;
    }

    .klb_cookieAlert_info {
        width: 90%;
    }
    
    .klb_cookieAlert_ok {
        margin-top: 1rem;
    }

    .klb_testimonialsSegment_card {
        min-width: 205px !important;
    }

    .klb_testimonialsSegment_quote {
        max-width: 250px;
    }
}