@charset "UTF-8";

/* ============================================
   WORDLE PLAY - MAIN STYLESHEET
   ============================================ */

/* === FONTS === */
@import url(https://fonts.googleapis.com/css?family=Nunito:300,400,600,700,800,900,1000,1100,1200&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Livvic:wght@400;500;600;700&display=swap);

/* === BASE RESET === */
*, ::after, ::before {
    box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
    :root {
        scroll-behavior: smooth;
    }
}

/* === TYPOGRAPHY === */
body {
    font-family: Nunito, sans-serif;
    overflow-x: hidden !important;
    font-size: 16px;
    color: #161c2d;
    margin: 0;
    background-color: #fffdfc;
}

.h1, .h2, .h3, .h4, .h5, .h6,
h1, h2, h3, h4, h5, h6 {
    font-family: Nunito, sans-serif;
    font-weight: 600;
}

.h1, .h2, h1, h2 {
    font-size: 34px !important;
}

.h3, .h5, h3, h5 {
    font-size: 20px !important;
}

.h4, h4 {
    font-size: 24px !important;
}

.h6, h6 {
    font-size: 16px !important;
}

p, .spcb_text {
    line-height: 1.6;
}

.spcb_text {
    font-size: 18px;
    align-self: center;
}

b {
    font-weight: 800;
}

/* === LINKS === */
a {
    -webkit-transition: .1s;
    transition: .1s;
    text-decoration: none !important;
    color: #b41c67;
}

a:hover {
    color: #0a58ca;
}

a:not([href]):not([class]),
a:not([href]):not([class]):hover {
    color: inherit;
    text-decoration: none;
}

/* === LISTS === */
ul {
    padding-left: 2rem;
    margin-top: 0;
    margin-bottom: 1rem;
}

ul ul {
    margin-bottom: 0;
}

.list-unstyled {
    padding-left: 0;
    list-style: none;
}

.list-inline {
    padding-left: 0;
    list-style: none;
}

.list-inline-item {
    display: inline-block;
}

.list-inline-item:not(:last-child) {
    margin-right: 0.5rem;
}

/* === IMAGES === */
img, svg {
    vertical-align: middle;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

/* === SELECTION === */
::-moz-selection {
    background: rgba(47, 85, 212, .9);
    color: #fff;
}

::selection {
    background: rgba(47, 85, 212, .9);
    color: #fff;
}

/* === LAYOUT === */
@media (min-width: 1400px) {
    .container {
        max-width: 96% !important;
    }
}

.container, .container-fluid, .container-lg, .container-md, .container-sm {
    width: 100%;
    padding-right: var(--bs-gutter-x, 0.75rem);
    padding-left: var(--bs-gutter-x, 0.75rem);
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container, .container-sm {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container, .container-md, .container-sm {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container, .container-lg, .container-md, .container-sm {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm {
        max-width: 1140px;
    }
}

/* === GRID === */
.row {
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(var(--bs-gutter-y) * -1);
    margin-right: calc(var(--bs-gutter-x) / -2);
    margin-left: calc(var(--bs-gutter-x) / -2);
}

.row > * {
    position: relative;
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) / 2);
    padding-left: calc(var(--bs-gutter-x) / 2);
    margin-top: var(--bs-gutter-y);
}

.col { flex: 1 0 0%; }
.col-auto { flex: 0 0 auto; width: auto; }
.col-1 { flex: 0 0 auto; width: 8.3333333333%; }
.col-2 { flex: 0 0 auto; width: 16.6666666667%; }
.col-3 { flex: 0 0 auto; width: 25%; }
.col-4 { flex: 0 0 auto; width: 33.3333333333%; }
.col-5 { flex: 0 0 auto; width: 41.6666666667%; }
.col-6 { flex: 0 0 auto; width: 50%; }
.col-7 { flex: 0 0 auto; width: 58.3333333333%; }
.col-8 { flex: 0 0 auto; width: 66.6666666667%; }
.col-9 { flex: 0 0 auto; width: 75%; }
.col-10 { flex: 0 0 auto; width: 83.3333333333%; }
.col-11 { flex: 0 0 auto; width: 91.6666666667%; }
.col-12 { flex: 0 0 auto; width: 100%; }

/* Gutters */
.g-0 { --bs-gutter-x: 0; --bs-gutter-y: 0; }
.g-1 { --bs-gutter-x: 0.25rem; --bs-gutter-y: 0.25rem; }
.g-2 { --bs-gutter-x: 0.5rem; --bs-gutter-y: 0.5rem; }
.g-3 { --bs-gutter-x: 1rem; --bs-gutter-y: 1rem; }
.g-4 { --bs-gutter-x: 1.5rem; --bs-gutter-y: 1.5rem; }
.g-5 { --bs-gutter-x: 3rem; --bs-gutter-y: 3rem; }

/* SM Breakpoint */
@media (min-width: 576px) {
    .col-sm { flex: 1 0 0%; }
    .col-sm-auto { flex: 0 0 auto; width: auto; }
    .col-sm-1 { flex: 0 0 auto; width: 8.3333333333%; }
    .col-sm-2 { flex: 0 0 auto; width: 16.6666666667%; }
    .col-sm-3 { flex: 0 0 auto; width: 25%; }
    .col-sm-4 { flex: 0 0 auto; width: 33.3333333333%; }
    .col-sm-5 { flex: 0 0 auto; width: 41.6666666667%; }
    .col-sm-6 { flex: 0 0 auto; width: 50%; }
    .col-sm-7 { flex: 0 0 auto; width: 58.3333333333%; }
    .col-sm-8 { flex: 0 0 auto; width: 66.6666666667%; }
    .col-sm-9 { flex: 0 0 auto; width: 75%; }
    .col-sm-10 { flex: 0 0 auto; width: 83.3333333333%; }
    .col-sm-11 { flex: 0 0 auto; width: 91.6666666667%; }
    .col-sm-12 { flex: 0 0 auto; width: 100%; }
    .g-sm-0 { --bs-gutter-x: 0; --bs-gutter-y: 0; }
    .g-sm-1 { --bs-gutter-x: 0.25rem; --bs-gutter-y: 0.25rem; }
    .g-sm-2 { --bs-gutter-x: 0.5rem; --bs-gutter-y: 0.5rem; }
    .g-sm-3 { --bs-gutter-x: 1rem; --bs-gutter-y: 1rem; }
    .g-sm-4 { --bs-gutter-x: 1.5rem; --bs-gutter-y: 1.5rem; }
    .g-sm-5 { --bs-gutter-x: 3rem; --bs-gutter-y: 3rem; }
}

/* MD Breakpoint */
@media (min-width: 768px) {
    .col-md { flex: 1 0 0%; }
    .col-md-auto { flex: 0 0 auto; width: auto; }
    .col-md-1 { flex: 0 0 auto; width: 8.3333333333%; }
    .col-md-2 { flex: 0 0 auto; width: 16.6666666667%; }
    .col-md-3 { flex: 0 0 auto; width: 25%; }
    .col-md-4 { flex: 0 0 auto; width: 33.3333333333%; }
    .col-md-5 { flex: 0 0 auto; width: 41.6666666667%; }
    .col-md-6 { flex: 0 0 auto; width: 50%; }
    .col-md-7 { flex: 0 0 auto; width: 58.3333333333%; }
    .col-md-8 { flex: 0 0 auto; width: 66.6666666667%; }
    .col-md-9 { flex: 0 0 auto; width: 75%; }
    .col-md-10 { flex: 0 0 auto; width: 83.3333333333%; }
    .col-md-11 { flex: 0 0 auto; width: 91.6666666667%; }
    .col-md-12 { flex: 0 0 auto; width: 100%; }
    .g-md-0 { --bs-gutter-x: 0; --bs-gutter-y: 0; }
    .g-md-1 { --bs-gutter-x: 0.25rem; --bs-gutter-y: 0.25rem; }
    .g-md-2 { --bs-gutter-x: 0.5rem; --bs-gutter-y: 0.5rem; }
    .g-md-3 { --bs-gutter-x: 1rem; --bs-gutter-y: 1rem; }
    .g-md-4 { --bs-gutter-x: 1.5rem; --bs-gutter-y: 1.5rem; }
    .g-md-5 { --bs-gutter-x: 3rem; --bs-gutter-y: 3rem; }
}

/* LG Breakpoint */
@media (min-width: 992px) {
    .col-lg { flex: 1 0 0%; }
    .col-lg-auto { flex: 0 0 auto; width: auto; }
    .col-lg-1 { flex: 0 0 auto; width: 8.3333333333%; }
    .col-lg-2 { flex: 0 0 auto; width: 16.6666666667%; }
    .col-lg-3 { flex: 0 0 auto; width: 25%; }
    .col-lg-4 { flex: 0 0 auto; width: 33.3333333333%; }
    .col-lg-5 { flex: 0 0 auto; width: 41.6666666667%; }
    .col-lg-6 { flex: 0 0 auto; width: 50%; }
    .col-lg-7 { flex: 0 0 auto; width: 58.3333333333%; }
    .col-lg-8 { flex: 0 0 auto; width: 66.6666666667%; }
    .col-lg-9 { flex: 0 0 auto; width: 75%; }
    .col-lg-10 { flex: 0 0 auto; width: 83.3333333333%; }
    .col-lg-11 { flex: 0 0 auto; width: 91.6666666667%; }
    .col-lg-12 { flex: 0 0 auto; width: 100%; }
    .g-lg-0 { --bs-gutter-x: 0; --bs-gutter-y: 0; }
    .g-lg-1 { --bs-gutter-x: 0.25rem; --bs-gutter-y: 0.25rem; }
    .g-lg-2 { --bs-gutter-x: 0.5rem; --bs-gutter-y: 0.5rem; }
    .g-lg-3 { --bs-gutter-x: 1rem; --bs-gutter-y: 1rem; }
    .g-lg-4 { --bs-gutter-x: 1.5rem; --bs-gutter-y: 1.5rem; }
    .g-lg-5 { --bs-gutter-x: 3rem; --bs-gutter-y: 3rem; }
}

/* === DISPLAY CLASSES === */
.display-1 { font-size: calc(1.625rem + 4.5vw); font-weight: 300; line-height: 1.2; }
.display-2 { font-size: calc(1.575rem + 3.9vw); font-weight: 300; line-height: 1.2; }
.display-3 { font-size: calc(1.525rem + 3.3vw); font-weight: 300; line-height: 1.2; }
.display-4 { font-size: calc(1.475rem + 2.7vw); font-weight: 300; line-height: 1.2; }
.display-5 { font-size: calc(1.425rem + 2.1vw); font-weight: 300; line-height: 1.2; }
.display-6 { font-size: calc(1.375rem + 1.5vw); font-weight: 300; line-height: 1.2; }

@media (min-width: 1200px) {
    .display-1 { font-size: 5rem; }
    .display-2 { font-size: 4.5rem; }
    .display-3 { font-size: 4rem; }
    .display-4 { font-size: 3.5rem; }
    .display-5 { font-size: 3rem; }
    .display-6 { font-size: 2.5rem; }
}

/* === UTILITY CLASSES === */
.d-block { display: block !important; }
.d-flex .flex-1 { -webkit-box-flex: 1; -ms-flex: 1; flex: 1; }
.justify-content-center { justify-content: center !important; }
.mx-auto { margin-right: auto !important; margin-left: auto !important; }
.mt-3 { margin-top: 0.8rem !important; }
.mt-4 { margin-top: 1.5rem !important; }
.mt-5 { margin-top: 3rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.text-center { text-align: center !important; }
.text-light { color: #f8f9fc !important; }
.text-body { color: #212529 !important; }
.text-muted { color: #8492a6 !important; }
.text-primary { color: salmon !important; }
.no-padding { padding: 0 !important; width: 100% !important; }

a.text-primary:focus,
a.text-primary:hover {
    color: #284bc1 !important;
}

a.text-muted:focus,
a.text-muted:hover {
    color: #75859b !important;
}

summary {
    display: list-item;
    cursor: pointer;
}

[hidden] {
    display: none !important;
}

/* === SECTIONS === */
.section {
    position: relative;
    padding: 100px 0;
}

.bg-half {
    position: relative;
    padding: 32px 0;
    background-size: cover;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    background-position: center center;
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
    .bg-half {
        padding: 50px 0;
    }
}

.para-desc {
    max-width: 600px;
}

/* === PAGE HEADINGS === */
.spcb-h1, spcb-h1 {
    font-size: 38px !important;
    font-weight: 900 !important;
    margin-top: 35px;
}

@media (max-width: 767px) {
    .spcb-h1 {
        font-size: 34px !important;
    }
}

.spcb-h2 {
    font-size: 20px !important;
    font-weight: 700;
}

.spcb_head {
    font-size: 24px !important;
    font-weight: 900 !important;
}

@media (max-width: 1024px) {
    .spcb_head {
        font-size: 22px !important;
        font-weight: 900 !important;
    }
}

@media (max-width: 512px) {
    .spcb_head {
        font-size: 20px !important;
        font-weight: 900 !important;
    }
}

.number {
    font-size: 38px !important;
    font-weight: 700 !important;
}

/* === HEADER === */
header {
    display: block;
    padding: 0px !important;
}

.header_menu {
    display: flex;
    justify-content: center;
}

.header_menu_link {
    background: #fff;
    color: #13141c;
    font-size: 14px;
    line-height: 14px;
    margin: 3px;
    padding: 6px 15px;
    border-radius: 7px;
    text-decoration: none;
    text-align: center;
}

.header_menu_link.active {
    background: #d6e7ed;
    color: #000;
    font-size: 14px;
    font-weight: 700;
}

.header_menu_link img {
    height: 19px;
    margin-right: 6px;
}

.header_menu_link:hover {
    background: #17f067;
}

.header_menu_link.active:hover {
    background: #00cb4b !important;
}

.darkmode--activated header {
    background-color: #13141c;
}

.darkmode--activated .header_menu_link.active {
    background: #66f099;
}

.darkmode--activated .header_menu_link.active:hover {
    background: #17f067 !important;
}

@media (max-width: 991px) {
    header {
        position: relative;
        z-index: 100;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

@media (max-width: 767px) {
    .header_menu {
        justify-content: center !important;
        margin: auto;
    }
}

@media (max-width: 768px) {
    .header_menu_link img {
        display: table;
        margin: auto;
    }
}

/* === LOGO === */
.logo_img {
    height: 16px;
}

@media (max-width: 400px) {
    .logo_img {
        height: 12px;
    }
}

.logo_text {
    color: #191919 !important;
}

.dark .logo_text {
    color: #d9d9d9 !important;
}

/* === BANNERS / ADS === */
.banner {
    display: block;
}

.banner_middle {
    width: 728px;
    height: 90px;
}

.banner_under_mobile {
    display: none;
}

@media (max-width: 600px) {
    .banner_under {
        display: none;
    }
    .banner_under_mobile {
        display: grid;
    }
}

.ad__container {
    padding-top: 30px;
}

/* === SHARE SECTION === */
.share_s {
    position: relative;
    padding: 30px 0;
}

/* === FOOTER === */
.footer-bar {
    margin-top: 30px;
    margin-bottom: 30px;
}

/* === FLAGS === */
.flag {
    width: 20px;
    vertical-align: middle;
    margin-right: 6px;
    float: left;
}

/* === FRAMES BLOCK === */
.frames_block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1000px;
    margin: auto;
}

@media (max-width: 991px) {
    .frames_block {
        margin-left: 3px;
        margin-right: 3px;
    }
}

/* === WORDLE BUTTONS === */
.wordle_but {
    display: block;
    margin: 12px;
    width: calc(25% - 24px);
    text-align: center;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    color: #3c4858 !important;
    background-color: #d3dcf5;
    transition: .2s ease-in-out;
}

.wordle_but:hover {
    box-shadow: -2px -2px 6px rgba(255, 255, 255, .6),
                -2px -2px 4px rgba(255, 255, 255, .4),
                2px 2px 2px rgba(255, 255, 255, .05),
                2px 2px 4px rgba(0, 0, 0, .1);
}

@media (max-width: 710px) {
    .wordle_but {
        width: calc(50% - 24px);
        font-size: 12px;
        margin-top: 5px;
    }
}

/* === WORDLE STEPS (How To Play) === */
.wordle_step {
    display: flex;
    margin-top: 1.4rem;
}

/* === FAQ BLOCK === */
.faq_block {
    border-radius: 14px;
    margin-top: 35px;
    padding: 32px;
    background-color: #e6e6e6;
}

.wordle_h3 {
    padding-bottom: 10px;
    margin-top: 0;
    font-weight: 700;
    text-align: left;
}

.wordle_text {
    text-align: left;
    font-size: 18px;
}

body.dark .faq_block {
    color: #000;
}

body.dark .share_s {
    background-color: #212121;
}

body.dark .wordle_but {
    box-shadow: none;
}

/* === GAME CARDS (.we_but) === */
.we_but {
    display: inline-flex;
    min-height: 90px;
    max-height: 90px;
    align-items: center;
    margin: 12px;
    width: calc(25% - 24px);
    text-align: center;
    padding: 2px 13px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    color: #3c4858 !important;
    background-color: #cadaff !important;
    transition: transform .2s;
}

.we_but:hover {
    transform: translate(0, -3px);
}

.wemage {
    width: 38px;
    margin-right: 10px;
}

.we_d {
    margin: auto;
}

@media (max-width: 1024px) {
    .we_but {
        font-size: 11px;
    }
}

@media (max-width: 710px) {
    .we_but {
        width: calc(50% - 24px);
        font-size: 12px;
        margin-top: 5px;
    }
}

/* === G BLOCK === */
.g_block {
    background-color: #fff;
    text-align: left;
    font-family: Nunito, sans-serif !important;
    min-height: 600px;
}

/* === SPECIAL BUTTONS === */
.nerdle_but {
    min-width: max-content;
    padding: 18px 20px;
    font-size: 16px;
    font-weight: 700;
    background-color: #acff87 !important;
    border: 1px solid;
    color: #000 !important;
}

.nerdle_but:hover {
    background-color: #8dd46d !important;
}

.dordle_but,
.gen_but,
.kid_but,
.lewd_but,
.octordle_but,
.quordle_but,
.tour_but {
    min-width: max-content;
    padding: 18px 20px;
    border: 1px solid #000;
    font-size: 16px;
    font-weight: 700;
    color: #000 !important;
}

.dordle_but { background-color: #d5d0ff !important; }
.dordle_but:hover { background-color: #a6a0d7 !important; }

.quordle_but { background-color: #ffc487 !important; }
.quordle_but:hover { background-color: #e9af73 !important; }

.octordle_but { background-color: #ffcab3 !important; }
.octordle_but:hover { background-color: #ffae8b !important; }

.kid_but { background-color: #f9dcff !important; }
.kid_but:hover { background-color: #f4bfff !important; }

.lewd_but { background-color: #fff5c6 !important; }
.lewd_but:hover { background-color: #ffefa2 !important; }

.gen_but { background-color: #d1efff !important; }
.gen_but:hover { background-color: #b0e3ff !important; }

.tour_but { background-color: #d8fdff !important; }
.tour_but:hover { background-color: #bcfcff !important; }

.plusle_but {
    background-color: #5adca3 !important;
    color: #000 !important;
    border: none;
    border-radius: 6px;
}

.plusle_but:hover {
    background-color: #52c090 !important;
}

.quordle_b {
    background-color: #b6ebfe !important;
    color: #000 !important;
    border: 1px solid;
    border-radius: 6px;
}

.quordle_b:hover {
    background-color: #94e3ff !important;
}

/* === MODE BUTTON === */
.mode-button {
    background-color: #dde1ed00 !important;
    transition: .2s ease-in-out;
}

.mode-button.active {
    background-color: #00ac4a !important;
    transition: .2s ease-in-out;
}

.mode-button:hover {
    background-color: #04cf5c !important;
    transition: .2s ease-in-out;
}

/* === GAMES GRID === */
.games {
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 0;
}

.game-item {
    width: 200px;
    margin: 15px;
    background: #fff;
    box-shadow: 0 5px 20px rgb(0 0 0 / 7%);
    transition: transform .2s;
    text-decoration: none;
    border-radius: 10px;
}

.game-item:hover {
    transform: translate(0, -3px);
}

.game-item__img {
    height: 133px;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
}

.game-item__img img {
    display: block;
    max-width: 100%;
    transition: transform .35s;
    transform: scale(1);
}

.game-item__info {
    padding: 10px 15px 15px;
    text-align: center;
}

.game-item__title {
    color: #13141c;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
    transition: .3s;
}

.game-item__text {
    color: #7e8399;
    font-size: 13px;
    line-height: 18px;
    margin-bottom: 10px;
}

/* === APP ITEMS === */
.game-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.app-item {
    display: block;
    width: 300px;
    text-align: center;
    text-decoration: none;
    color: #000;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, .1);
    transition: transform .2s, box-shadow .2s;
}

.app-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, .2);
}

.app-item img {
    width: 100%;
    height: auto;
    display: block;
}

.app-item .title {
    padding: 10px 0;
    font-size: 20px;
    font-weight: 700;
    background-color: #f8f8f8;
    border-top: 1px solid #ddd;
}

/* === MISC === */
.btn {
    text-decoration: none;
    border-radius: 10px;
}

.btn-center,
.headline,
.wordle-text .h2--center,
.wordle-text p.center {
    text-align: center;
}

.row__field:focus {
    outline: 0;
}

.Game-keyboard-button:hover {
    background-color: #faebd7;
}

.light {
    background-color: #fff;
}

.stats-chart table .number {
    font-size: 16px !important;
}

.page,
.scroll-element .scroll-element_outer,
svg:not(:root) {
    overflow: hidden;
}

.ezmob-footer-close {
    font-family: Nunito, 'Open Sans', sans-serif !important;
    line-height: 22px !important;
    color: #fff !important;
    background: #b0b0c1 !important;
    width: 24px !important;
    border: none !important;
}


/* ============================================
   REFRESH 2025 - MICRO IMPROVEMENTS
   ============================================ */

/* === GLOBAL TRANSITIONS === */
a, button, .wordle_but, .we_but, .faq_block, .wordle_step {
    transition: all 0.25s ease;
}

/* === HEADER IMPROVEMENTS === */
header.header {
    border-bottom: none !important;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.header_menu_link {
    border-radius: 10px;
    font-weight: 600;
}

.header_menu_link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 172, 74, 0.25);
}

/* === FAQ CARDS IMPROVEMENTS === */
.faq_block {
    background-color: #f7f7f7;
    border-radius: 16px;
    border-left: 4px solid #00ac4a;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    margin-top: 20px;
    padding: 24px 28px;
}

.faq_block:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.wordle_h3 {
    color: #1a1a1a;
    font-size: 18px !important;
    margin-bottom: 8px;
}

.wordle_text {
    color: #4a4a4a;
    font-size: 16px;
    line-height: 1.6;
}

/* === HOW TO PLAY STEPS === */
.wordle_step {
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    border-radius: 12px;
    padding: 16px 20px;
    margin-top: 14px;
    border-left: 4px solid #00ac4a;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.wordle_step:hover {
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.wordle_step .number {
    color: #00ac4a;
    font-size: 28px !important;
    font-weight: 800 !important;
    min-width: 36px;
}

/* === GAME CARDS IMPROVEMENTS === */
.we_but {
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.we_but:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* === WORDLE BUTTONS IMPROVEMENTS === */
.wordle_but {
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.wordle_but:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

/* === SHARE SECTION === */
.share_s {
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    border-radius: 20px;
    margin: 40px auto;
    max-width: 1000px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

/* === FOOTER IMPROVEMENTS === */
.footer {
    padding: 30px 20px !important;
}

.footer a {
    color: #555 !important;
    font-weight: 600;
    transition: all 0.2s ease;
}

.footer a:hover {
    color: #00ac4a !important;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.footer-link {
    display: inline-block;
    padding: 8px 16px;
    background: #f5f5f5;
    border-radius: 20px;
    color: #555 !important;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
    border: 1px solid #e5e5e5;
}

.footer-link:hover {
    background: #00ac4a;
    color: white !important;
    border-color: #00ac4a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 172, 74, 0.3);
}

.footer-link:active {
    background: #008c3a;
    color: white !important;
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0, 172, 74, 0.2);
}

/* === GREEN ACCENT BUTTON === */
a[style*="background-color:#00ac4a"] {
    border-radius: 12px !important;
    box-shadow: 0 4px 14px rgba(0, 172, 74, 0.35);
    transition: all 0.25s ease;
}

a[style*="background-color:#00ac4a"]:hover {
    box-shadow: 0 6px 20px rgba(0, 172, 74, 0.45);
    transform: translateY(-2px);
}

/* === SEE MORE LINK === */
a[href="/wordle-games"] {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(135deg, #00ac4a 0%, #00c853 100%);
    color: white !important;
    border-radius: 30px;
    font-size: 18px !important;
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(0, 172, 74, 0.35);
    transition: all 0.25s ease;
}

a[href="/wordle-games"]:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 172, 74, 0.45);
}

/* === MOBILE IMPROVEMENTS === */
@media (max-width: 768px) {
    .faq_block {
        padding: 20px;
        margin-top: 16px;
        border-radius: 14px;
    }
    
    .wordle_step {
        padding: 14px 16px;
    }
    
    .wordle_step .number {
        font-size: 24px !important;
        min-width: 30px;
    }
    
    .share_s {
        margin: 30px 10px;
        border-radius: 16px;
    }
    
    .footer-link {
        padding: 7px 14px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .faq_block {
        padding: 16px;
        border-radius: 12px;
    }
    
    .wordle_h3 {
        font-size: 16px !important;
    }
    
    .wordle_text {
        font-size: 15px;
    }
    
    .footer-link {
        padding: 6px 12px;
        font-size: 12px;
    }
}

/* === DARK MODE SUPPORT === */
body.dark .faq_block {
    background-color: #2a2a2a;
    border-left-color: #00c853;
    color: #e0e0e0;
}

body.dark .wordle_h3 {
    color: #f0f0f0;
}

body.dark .wordle_text {
    color: #b0b0b0;
}

body.dark .wordle_step {
    background: linear-gradient(135deg, #2a2a2a 0%, #333 100%);
}

body.dark .wordle_step .number {
    color: #00c853;
}

body.dark .footer-link {
    background: #333;
    border-color: #444;
    color: #ccc !important;
}

body.dark .footer-link:hover {
    background: #00ac4a;
    color: white !important;
}

body.dark .footer-link:active {
    background: #008c3a;
    color: white !important;
}

body.dark .share_s {
    background: linear-gradient(135deg, #1a1a1a 0%, #222 100%);
}

body.dark .we_but {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

body.dark .wordle_but {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* ============================================
   ADDITIONAL IMPROVEMENTS
   ============================================ */

/* === H1/H2 HERO SECTION === */
.spcb-h1 {
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}

.spcb-h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #00ac4a 0%, #00c853 100%);
    border-radius: 2px;
}

.spcb-h2 {
    margin-top: 16px;
}

/* Hero section container */
.bg-half .col-lg-8.col-md-8.text-center > div {
    background: linear-gradient(135deg, #ffffff 0%, #f8fdf9 100%);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 172, 74, 0.08);
    border: 1px solid rgba(0, 172, 74, 0.1);
}

/* === LANGUAGE BUTTONS WITH FLAGS === */
.wordle_but .flag {
    transition: transform 0.2s ease;
}

.wordle_but:has(.flag) {
    position: relative;
    overflow: hidden;
}

.wordle_but:has(.flag):hover {
    background-color: #c5d4f0;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    transform: translateY(-3px);
}

.wordle_but:has(.flag):hover .flag {
    transform: scale(1.15);
}

/* Fallback for browsers without :has() support */
a.wordle_but[href^="/"] .flag,
a.wordle_but[href="/"] .flag {
    transition: transform 0.2s ease;
}

/* Language section specific styling */
section:has(a[href="/es"]) .frames_block .wordle_but,
section:has(a[href="/de"]) .frames_block .wordle_but {
    border: 1px solid rgba(0, 0, 0, 0.06);
}

/* General flag button improvements (works without :has) */
.frames_block a.wordle_but[href^="/"][href$=""] {
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: linear-gradient(135deg, #d3dcf5 0%, #e8ecf8 100%);
}

.frames_block a.wordle_but[href^="/"][href$=""]:hover {
    background: linear-gradient(135deg, #c0ccef 0%, #d3dcf5 100%);
}

/* === APP STORE / GOOGLE PLAY BUTTONS === */
.banner_under_mobile a[href*="apple.com"],
.banner_under_mobile a[href*="play.google.com"],
a[href*="apple.com"]:has(img[src*="ios"]),
a[href*="play.google.com"]:has(img[src*="android"]) {
    display: inline-block;
    transition: all 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
}

.banner_under_mobile a[href*="apple.com"]:hover,
.banner_under_mobile a[href*="play.google.com"]:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.banner_under_mobile a[href*="apple.com"] img,
.banner_under_mobile a[href*="play.google.com"] img {
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.banner_under_mobile a[href*="apple.com"]:hover img,
.banner_under_mobile a[href*="play.google.com"]:hover img {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

/* Wordle App section title */
.banner_under_mobile h3 {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    margin-bottom: 5px;
}

.banner_under_mobile h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #00ac4a 0%, #00c853 100%);
    border-radius: 2px;
}

/* === SECTION HEADERS WITH DECORATIVE LINE === */
.spcb_head {
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}

.spcb_head::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #00ac4a 0%, #00c853 50%, transparent 100%);
    border-radius: 2px;
}

/* Centered headers get centered line */
[style*="text-align:center"] .spcb_head::after,
.spcb_head[style*="text-align:center"]::after,
.text-center .spcb_head::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Section dividers */
.section-title {
    position: relative;
}

/* Rich text section headers */
.rich-text .spcb_head {
    margin-bottom: 20px;
}

/* Play variations section */
.frames_block[style*="margin-top:20px"] {
    padding-top: 10px;
}

/* === TODAY & UNLIMITED BUTTONS === */
a.we_but[style*="background-color:#b7f9b6"] {
    background: linear-gradient(135deg, #b7f9b6 0%, #98f097 100%) !important;
    border: 1px solid rgba(0, 172, 74, 0.15);
}

a.we_but[style*="background-color:#b7f9b6"]:hover {
    background: linear-gradient(135deg, #98f097 0%, #7be87a 100%) !important;
    box-shadow: 0 8px 24px rgba(0, 172, 74, 0.2);
}

/* === GENERATOR BUTTONS === */
a.wordle_but[style*="background-color:#d3eff5"] {
    background: linear-gradient(135deg, #d3eff5 0%, #c0e8f0 100%) !important;
    border: 1px solid rgba(0, 172, 200, 0.15);
}

a.wordle_but[style*="background-color:#d3eff5"]:hover {
    background: linear-gradient(135deg, #c0e8f0 0%, #a8dde8 100%) !important;
    box-shadow: 0 6px 18px rgba(0, 172, 200, 0.2);
}

/* === DARK MODE ADDITIONS === */
body.dark .spcb-h1::after,
body.dark .spcb_head::after,
body.dark .banner_under_mobile h3::after {
    background: linear-gradient(90deg, #00c853 0%, #00e676 50%, transparent 100%);
}

body.dark .bg-half .col-lg-8.col-md-8.text-center > div {
    background: linear-gradient(135deg, #1a1a1a 0%, #222 100%);
    border-color: rgba(0, 200, 83, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

body.dark a.we_but[style*="background-color:#b7f9b6"] {
    background: linear-gradient(135deg, #2d5a2d 0%, #1e4a1e 100%) !important;
    color: #b7f9b6 !important;
}

body.dark a.wordle_but[style*="background-color:#d3eff5"] {
    background: linear-gradient(135deg, #1e3a4a 0%, #153040 100%) !important;
    color: #d3eff5 !important;
}

/* === MOBILE ADJUSTMENTS === */
@media (max-width: 768px) {
    .spcb-h1::after {
        width: 60px;
        height: 3px;
    }
    
    .spcb_head::after {
        width: 50px;
    }
    
    .bg-half .col-lg-8.col-md-8.text-center > div {
        padding: 30px 20px;
        border-radius: 16px;
        margin: 0 10px;
    }
    
    .banner_under_mobile a[href*="apple.com"] img,
    .banner_under_mobile a[href*="play.google.com"] img {
        max-width: 180px;
    }
}

@media (max-width: 480px) {
    .spcb-h1::after {
        width: 50px;
    }
    
    .spcb_head::after {
        width: 40px;
    }
    
    .bg-half .col-lg-8.col-md-8.text-center > div {
        padding: 25px 15px;
        border-radius: 14px;
    }
    
    .banner_under_mobile a[href*="apple.com"] img,
    .banner_under_mobile a[href*="play.google.com"] img {
        max-width: 160px;
    }
}