/********** Template CSS **********/

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

/*** Button ***/
.btn {
    transition: .5s;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.sticky-top {
    top: -150px;
    transition: .5s;
}

.navbar {
    padding: 15px 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: 18px;
}

.navbar .navbar-nav .nav-link {
    margin-left: 30px;
    padding: 0;
    outline: none;
    color: var(--bs-dark);
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--bs-primary)
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .dropdown-menu .dropdown-item:hover,
.navbar .dropdown-menu .dropdown-item.active {
    color: var(--bs-white);
    background: var(--bs-primary);
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-left: 0;
        padding: 10px 0;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Hero Header ***/
.hero-header {
    margin-top: -100px;
    padding-top: 150px;
    background: url(../img/hero-bg.jpg) top center no-repeat;
    background-size: cover;
}

.hero-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

.header-carousel {
    position: relative;
    padding: 45px 90px 45px 0;
}

.header-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    width: calc(50% + 45px);
    height: 100%;
    background: var(--bs-primary);
    z-index: -1;
}

.header-carousel .owl-dots {
    position: absolute;
    top: 50%;
    right: 38px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 5px 0;
    width: 15px;
    height: 15px;
    border: 2px solid var(--bs-white);
    transition: .5s;
}

.header-carousel .owl-dot.active {
    height: 30px;
    background: var(--bs-white);
}


/*** About ***/
.about-img {
    position: relative;
    overflow: hidden;
}

.about-img::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url(../img/bg-about-img.png) top left no-repeat;
    background-size: contain;
}


/*** Project ***/
.project-item img {
    transition: .5s;
}
  
.project-item:hover img {
    transform: scale(1.2);
}
  
.project-overlay {
    position: absolute;
    padding: 25px;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    background: linear-gradient(rgba(255, 255, 255, .1) 50%, var(--bs-dark));
    z-index: 1;
}


/*** Service ***/
.service-item {
    position: relative;
    padding: 30px 25px;
    transition: .5s;
}

.service-item.bg-primary:hover {
    background: var(--bs-light) !important;
}

.service-item.bg-primary p {
    color: var(--bs-light);
    transition: .5s;
}

.service-item.bg-primary:hover p {
    color: var(--bs-secondary);
}

.service-item.bg-light:hover {
    background: var(--bs-primary) !important;
}

.service-item.bg-light p {
    color: var(--bs-secondary);
    transition: .5s;
}

.service-item.bg-light:hover p {
    color: var(--bs-light);
}


.service-item .service-img h3 {
    position: absolute;
    top: 0;
    left: 0;
    padding: 0 12px 7px 0;
}

.service-item.bg-primary .service-img h3 {
    background: var(--bs-primary);
    color: var(--bs-white);
    transition: .5s;
}

.service-item.bg-primary:hover .service-img h3 {
    background: var(--bs-light);
    color: var(--bs-dark);
}

.service-item.bg-light .service-img h3 {
    background: var(--bs-light);
    color: var(--bs-dark);
    transition: .5s;
}

.service-item.bg-light:hover .service-img h3 {
    background: var(--bs-primary);
    color: var(--bs-white);
}


/*** Our Team ***/
.team-item img {
    transition: .5s;
}
  
.team-item:hover img {
    transform: scale(1.2);
}
  
.team-overlay {
    position: absolute;
    padding: 30px;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    background: linear-gradient(rgba(255, 255, 255, .1) 50%, var(--bs-dark));
    z-index: 1;
}

.team-overlay small {
    display: inline-block;
    padding: 3px 15px;
    color: var(--bs-white);
    background: var(--bs-primary);
}


/*** Testimonial ***/
.testimonial-img {
    position: relative;
    padding: 45px 0 45px 90px;
}

.testimonial-img::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: calc(50% + 45px);
    height: 100%;
    background: var(--bs-primary);
    z-index: -1;
}

.testimonial-text h5 {
    position: relative;
    padding-left: 45px;
}

.testimonial-text h5::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 40px;
    height: 2px;
    background: var(--bs-primary);
}

.testimonial-carousel .owl-dots {
    position: absolute;
    height: 17px;
    bottom: 0;
    right: 0;
    left: auto;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin-left: 10px;
    width: 15px;
    height: 15px;
    background: var(--bs-white);
    border: 2px solid var(--bs-primary);
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--bs-primary);
}

@media (max-width: 768px) {
    .testimonial-carousel .owl-dots {
        left: 0;
        right: auto;
    }

    .testimonial-carousel .owl-dot {
        margin-right: 10px;
        margin-left: 0;
    }
}


/*** Newsletter ***/
.newsletter {
    background: url(../img/hero-bg.jpg) bottom right no-repeat;
    background-size: cover;
}

@media (min-width: 992px) {
    .newsletter .container {
        max-width: 100% !important;
    }

    .newsletter .newsletter-text  {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .newsletter .newsletter-text  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .newsletter .newsletter-text  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 10px;
    padding: 0;
    text-align: left;
    color: rgba(255,255,255,.5);
    font-weight: normal;
    transition: .3s;
}

.footer .btn.btn-link:hover {
    color: var(--bs-white);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 14px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: rgba(255,255,255,.5);
}

.footer .copyright a:hover {
    color: var(--bs-white);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

.blog-item {
    background: var(--bs-light);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.blog-item:hover {
    transform: translateY(-5px);
}

.blog-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    background: var(--bs-white);
    padding: 20px;
    text-align: left;
}

.blog-content h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    color: var(--bs-dark);
    margin-bottom: 15px;
}

.blog-content p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    color: var(--bs-secondary);
    margin-bottom: 20px;
}

#blog-post {
   
    padding-top: 60px;
    padding-bottom: 60px;
}

#blog-post .container {
    max-width: 800px;
}

#blog-post .row {
    justify-content: center;
}

#blog-post h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    color: var(--bs-dark);
    text-align: center;
}

#blog-post p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    color: var(--bs-secondary);
    line-height: 1.6;
}



.game-card {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    transition: all 0.35s ease;
    position: relative;
    border: 2px solid #f4e8ff;
}

.game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(138, 44, 185, 0.25);
    border-color: #197087;
}


.game-card-img {
    position: relative;
    overflow: hidden;
}

.game-card-img img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    transition: transform .4s ease;
}

.game-card:hover .game-card-img img {
    transform: scale(1.08);
}

.game-card-content {
    padding: 22px;
    text-align: center;
}

.game-card-content h4 {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #4a004e;
    margin-bottom: 12px;
}

/* STAR RATING */
.game-rating {
    font-size: 1.4rem;
    color: #197087;
    margin-bottom: 18px;
    letter-spacing: 2px;
}

/* PLAY BUTTON */
.game-play-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 26px;
    background: linear-gradient(135deg, #197087, #197087);
    color: #ffffff;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all .35s ease;
    box-shadow: 0 4px 15px #19708762;
}

.game-play-btn:hover {
    background: linear-gradient(135deg, #197087, #197087);
    box-shadow: 0 6px 22px #19708762;
    color: #ffffff;
    transform: translateY(-3px);
}

/* PLAY BUTTON ICON */
.game-play-btn i {
    font-size: 1.3rem;
    color: #fff;
    transition: transform .35s ease;
}

.game-play-btn:hover i {
    transform: translateX(4px);
}


#faq {
    position: relative;
    background: url('../img/bg.png') center center no-repeat;
    background-size: cover;
    background-attachment: fixed;       
}

#faq::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255, 255, 255, 0.934);   
    z-index: 1;
}

#faq > .container {
    position: relative;
    z-index: 2;                          
}

#faq .accordion-button {
    font-size: 1.1rem;
    color: var(--bs-dark);
    background-color: #fff;
    padding: 1.25rem 1.5rem;
    border-radius: 8px !important;
    box-shadow: none !important;
}

#faq .accordion-button:not(.collapsed) {
    color: var(--bs-primary);
    background-color: #fff;
    box-shadow: none;
}

#faq .accordion-button:focus {
    border-color: transparent;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.15);
}

#faq .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230d6efd'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

#faq .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230d6efd'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(-180deg);
}

#faq .accordion-body {
    padding: 1rem 1.5rem 1.5rem;
    color: #555;
    line-height: 1.6;
    background-color: #fff;
}

/* Age Gate – стиль як на твоєму скріншоті, показується кожного разу */
.age-gate-backdrop {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(12px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.6s ease-out;
}

.age-gate-modal {
    background: #ffffff;
    border-radius: 28px;
    max-width: 420px;
    width: 90%;
    padding: 45px 35px;
    text-align: center;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
    animation: zoomIn 0.5s ease-out 0.2s both;
}

.age-gate-logo img {
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.2));
}

.age-gate-content h2 {
    font-family: "Space Grotesk", sans-serif;
    font-size: 2.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.age-gate-content p.text-muted {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.65;
}

.btn-enter {
    background: linear-gradient(135deg, #197087, #051f27);
    border: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-enter:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(201, 29, 29, 0.5) !important;
}

.btn-leave {
    background: transparent;
    color: #ccc !important;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-leave:hover {
    background: rgba(255,255,255,0.15);
    color: #000000 !important;
    border-color: #000000;
    transform: translateY(-4px);
}

/* Анімації */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes zoomIn {
    from { transform: scale(0.85); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

@media (max-width: 576px) {
    .age-gate-modal {
        padding: 35px 25px;
        border-radius: 20px;
    }
    .age-gate-content h2 {
        font-size: 1.8rem;
    }
    .age-gate-buttons {
        flex-direction: column;
    }
    .btn-enter, .btn-leave {
        width: 100%;
    }
}



#why-choose-us h2 {
    font-family: "Space Grotesk", sans-serif;
    font-weight: 700;
    color: #1a1a1a;
    position: relative;
    display: inline-block;
}

#why-choose-us h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background: var(--bs-primary);
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.feature-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 25px 35px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
    transition: all 0.35s ease;
    border: 1px solid rgba(25, 112, 135, 0.08);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 40px rgba(25, 112, 135, 0.15);
    border-color: rgba(25, 112, 135, 0.2);
}

.feature-icon {
    width: 90px;
    height: 90px;
    background: rgba(25, 112, 135, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: all 0.35s ease;
}

.feature-card:hover .feature-icon {
    background: var(--bs-primary);
    transform: scale(1.1);
}

.feature-card:hover .feature-icon i {
    color: #ffffff !important;
}

.feature-card h4 {
    font-family: "Space Grotesk", sans-serif;
    font-weight: 600;
    font-size: 1.35rem;
    color: #2c2c2c;
    margin-bottom: 14px;
}

.feature-card p {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.65;
    margin-bottom: 0;
}

@media (max-width: 991.98px) {
    .feature-card {
        padding: 35px 20px 30px;
    }
}


/* Entry Point — Find Your Mood */
#find-your-mood {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9f0f7 100%);
}

#find-your-mood h2 {
    font-family: "Space Grotesk", sans-serif;
    font-weight: 700;
    color: #1a1a1a;
    position: relative;
    display: inline-block;
}

#find-your-mood h2::after {
    content: '';
    position: absolute;
    width: 70px;
    height: 4px;
    background: var(--bs-primary);
    bottom: -14px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 3px;
}

.mood-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 25px 35px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    border: 1px solid rgba(25, 112, 135, 0.08);
    height: 100%;
}

.mood-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 22px 45px rgba(25, 112, 135, 0.16);
    border-color: var(--bs-primary);
}

.mood-icon {
    width: 110px;
    height: 110px;
    background: rgba(25, 112, 135, 0.07);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.4s ease;
}

.mood-card:hover .mood-icon {
    background: var(--bs-primary);
    transform: scale(1.08);
}

.mood-card:hover .mood-icon i {
    color: #ffffff !important;
}

.mood-card h4 {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 12px;
}

.mood-card p {
    font-size: 0.97rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 22px;
}

/* Responsive */
@media (max-width: 991.98px) {
    .mood-card {
        padding: 32px 20px 28px;
    }
    
    .mood-icon {
        width: 95px;
        height: 95px;
    }
}


/* ===== Player Impressions ===== */
#player-impressions {
  background: linear-gradient(135deg, #f0f4f8 0%, #e8f4f7 100%);
  overflow: hidden;
}

/* Header */
.impressions-label {
  display: inline-block;
  background: rgba(25, 112, 135, 0.1);
  color: #197087;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 30px;
  border: 1px solid rgba(25, 112, 135, 0.2);
}

.impressions-title {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  color: #1a1a1a;
  position: relative;
  display: inline-block;
}

.impressions-title::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 4px;
  background: #197087;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.impressions-subtitle {
  color: #6c757d;
  font-size: 1.05rem;
  margin-top: 1.2rem;
}

/* Grid */
.impressions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

@media (max-width: 991.98px) {
  .impressions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575.98px) {
  .impressions-grid {
    grid-template-columns: 1fr;
  }
  .impressions-title {
    font-size: 1.8rem;
  }
}

/* Note Card Base */
.note-card {
  position: relative;
  border-radius: 4px 16px 16px 16px;
  padding: 32px 24px 24px;
  box-shadow:
    4px 4px 0px rgba(0,0,0,0.08),
    0 12px 30px rgba(0,0,0,0.09);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  cursor: default;
}

.note-card:hover {
  transform: translateY(-8px) rotate(0deg);
  box-shadow:
    6px 6px 0px rgba(0,0,0,0.1),
    0 20px 45px rgba(0,0,0,0.14);
}

/* Slight random tilt on each card */
.note-card:nth-child(1) { transform: rotate(-1.2deg); }
.note-card:nth-child(2) { transform: rotate(0.8deg); }
.note-card:nth-child(3) { transform: rotate(-0.5deg); }
.note-card:nth-child(4) { transform: rotate(1deg); }
.note-card:nth-child(5) { transform: rotate(-0.9deg); }
.note-card:nth-child(6) { transform: rotate(0.6deg); }

.note-card:nth-child(1):hover,
.note-card:nth-child(2):hover,
.note-card:nth-child(3):hover,
.note-card:nth-child(4):hover,
.note-card:nth-child(5):hover,
.note-card:nth-child(6):hover {
  transform: translateY(-10px) rotate(0deg);
}

/* Color variants */
.note-yellow { background: #fffde7; }
.note-teal   { background: #e0f7fa; }
.note-purple { background: #f3e5f5; }
.note-orange { background: #fff3e0; }
.note-blue   { background: #e3f2fd; }
.note-pink   { background: #fce4ec; }

/* Pin */
.note-pin {
  position: absolute;
  top: -10px;
  left: 24px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #ffffff 10%, #197087 70%);
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
  z-index: 2;
}

.note-yellow .note-pin { background: radial-gradient(circle at 35% 35%, #fff 10%, #f5a623 70%); }
.note-teal   .note-pin { background: radial-gradient(circle at 35% 35%, #fff 10%, #197087 70%); }
.note-purple .note-pin { background: radial-gradient(circle at 35% 35%, #fff 10%, #8e24aa 70%); }
.note-orange .note-pin { background: radial-gradient(circle at 35% 35%, #fff 10%, #e65100 70%); }
.note-blue   .note-pin { background: radial-gradient(circle at 35% 35%, #fff 10%, #1565c0 70%); }
.note-pink   .note-pin { background: radial-gradient(circle at 35% 35%, #fff 10%, #c2185b 70%); }

/* Avatar emoji */
.note-avatar {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}

/* Note text */
.note-text {
  font-size: 0.97rem;
  line-height: 1.65;
  color: #333;
  margin-bottom: 18px;
  font-style: italic;
}

/* Meta */
.note-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.note-name {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: #197087;
}

.note-location {
  font-size: 0.78rem;
  color: #888;
}

/* Tag */
.note-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: #197087;
  background: rgba(25, 112, 135, 0.1);
  border-radius: 20px;
  padding: 3px 12px;
  letter-spacing: 0.5px;
}

/* ===== Ticker ===== */
.impressions-ticker {
  overflow: hidden;
  background: #197087;
  border-radius: 50px;
  padding: 14px 0;
}

.ticker-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: ticker-scroll 22s linear infinite;
}

.ticker-track span {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}



/* ===========================
   Mini Guide: How It Works
=========================== */
#how-it-works {
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

/* Subtle background pattern */
#how-it-works::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(25,112,135,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

#how-it-works::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(25,112,135,0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* ---- Header ---- */
.guide-label {
  display: inline-block;
  background: rgba(25, 112, 135, 0.08);
  color: #197087;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 30px;
  border: 1px solid rgba(25, 112, 135, 0.18);
}

.guide-title {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  color: #1a1a1a;
  position: relative;
  display: inline-block;
}

.guide-title::after {
  content: '';
  position: absolute;
  width: 55px;
  height: 4px;
  background: #197087;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.guide-subtitle {
  color: #6c757d;
  font-size: 1.05rem;
  margin-top: 1.2rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ---- Steps Wrapper ---- */
.guide-steps {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ---- Single Step ---- */
.guide-step {
  display: flex;
  gap: 0;
  align-items: stretch;
}

/* Left column — number + line */
.step-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 72px;
}

.step-number {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #ffffff;
  background: #197087;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(25,112,135,0.3);
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.guide-step:hover .step-number {
  transform: scale(1.12);
  box-shadow: 0 8px 22px rgba(25,112,135,0.4);
}

.step-line {
  width: 2px;
  flex: 1;
  background: linear-gradient(to bottom, #197087 0%, rgba(25,112,135,0.15) 100%);
  margin-top: 6px;
  margin-bottom: 0;
  border-radius: 2px;
}

/* Right column — card body */
.step-body {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: #f8fcfd;
  border: 1px solid rgba(25,112,135,0.09);
  border-radius: 18px;
  padding: 28px 24px;
  margin-left: 20px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
}

.guide-step:hover .step-body {
  background: #ffffff;
  border-color: rgba(25,112,135,0.22);
  box-shadow: 0 12px 35px rgba(25,112,135,0.1);
  transform: translateX(6px);
}

/* Arrow connector */
.step-body::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 22px;
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-right: 10px solid rgba(25,112,135,0.09);
  transition: border-right-color 0.35s ease;
}

.guide-step:hover .step-body::before {
  border-right-color: rgba(25,112,135,0.22);
}

/* Icon */
.step-icon-wrap {
  width: 52px;
  height: 52px;
  background: rgba(25,112,135,0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.35s ease;
}

.step-icon-wrap i {
  font-size: 1.3rem;
  color: #197087;
  transition: color 0.35s ease;
}

.guide-step:hover .step-icon-wrap {
  background: #197087;
}

.guide-step:hover .step-icon-wrap i {
  color: #ffffff;
}

/* Content */
.step-content {
  flex: 1;
}

.step-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #197087;
  margin-bottom: 6px;
}

.step-content h4 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.step-content p {
  font-size: 0.95rem;
  color: #6c757d;
  line-height: 1.65;
  margin-bottom: 0;
}

/* Floating emoji visual */
.step-visual {
  font-size: 2.6rem;
  flex-shrink: 0;
  opacity: 0.18;
  align-self: center;
  transition: opacity 0.35s ease, transform 0.35s ease;
  user-select: none;
}

.guide-step:hover .step-visual {
  opacity: 0.55;
  transform: scale(1.15) rotate(8deg);
}

/* Last step - no line */
.last-step .step-body {
  margin-bottom: 0;
}

/* ---- CTA Strip ---- */
.guide-cta-strip {
  background: linear-gradient(135deg, #197087 0%, #0e4f60 100%);
  border-radius: 20px;
  padding: 28px 36px;
  box-shadow: 0 12px 35px rgba(25,112,135,0.25);
}

.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-strip-text {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cta-strip-emoji {
  font-size: 2rem;
  flex-shrink: 0;
}

.cta-strip-text p {
  margin: 0;
  color: rgba(255,255,255,0.88);
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 500;
}

.guide-cta-btn {
  display: inline-flex;
  align-items: center;
  padding: 13px 30px;
  background: #ffffff;
  color: #197087;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 50px;
  text-decoration: none;
  flex-shrink: 0;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.12);
}

.guide-cta-btn:hover {
  background: #f0fafb;
  color: #197087;
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.18);
}

.guide-cta-btn i {
  transition: transform 0.3s ease;
}

.guide-cta-btn:hover i {
  transform: translateX(5px);
}

/* ---- Responsive ---- */
@media (max-width: 767.98px) {
  .guide-title {
    font-size: 1.9rem;
  }

  .step-body {
    padding: 22px 18px;
    gap: 14px;
  }

  .step-visual {
    display: none;
  }

  .step-left {
    width: 54px;
  }

  .cta-strip-inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-strip-text {
    flex-direction: column;
    gap: 8px;
  }

  .guide-cta-btn {
    width: 100%;
    justify-content: center;
  }

  .guide-cta-strip {
    padding: 24px 22px;
  }
}

@media (max-width: 575.98px) {
  .step-number {
    width: 40px;
    height: 40px;
    font-size: 0.85rem;
  }

  .step-icon-wrap {
    width: 44px;
    height: 44px;
  }

  .step-body {
    margin-left: 14px;
  }
}


/* ===========================
   Important Disclaimer
=========================== */
#disclaimer {
  background: #ffffff;
  position: relative;
}

/* ---- Outer wrap ---- */
.disclaimer-wrap {
  position: relative;
  display: flex;
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 4px 6px rgba(0,0,0,0.04),
    0 20px 50px rgba(25,112,135,0.10);
  border: 1px solid rgba(25,112,135,0.12);
  background: #ffffff;
}

/* ---- Left accent bar ---- */
.disclaimer-accent {
  width: 7px;
  flex-shrink: 0;
  background: linear-gradient(180deg, #197087 0%, #c0392b 100%);
  border-radius: 24px 0 0 24px;
}

/* ---- Inner ---- */
.disclaimer-inner {
  flex: 1;
  padding: 44px 40px 36px;
}

/* ---- Header row ---- */
.disclaimer-header {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

/* ===== 18+ Badge — головний елемент ===== */
.badge-18 {
  position: relative;
  flex-shrink: 0;
  width: 78px;
  height: 78px;
  background: #c0392b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 0 5px rgba(192, 57, 43, 0.18),
    0 0 0 10px rgba(192, 57, 43, 0.08),
    0 8px 25px rgba(192, 57, 43, 0.4);
  animation: pulse-18 2.4s ease-in-out infinite;
  z-index: 1;
}

.badge-18 span {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -1px;
}

.badge-18 sup {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: #ffffff;
  margin-top: -18px;
  margin-left: 1px;
}

/* Pulse ring animation */
@keyframes pulse-18 {
  0%   { box-shadow: 0 0 0 5px rgba(192,57,43,0.18), 0 0 0 10px rgba(192,57,43,0.08), 0 8px 25px rgba(192,57,43,0.4); }
  50%  { box-shadow: 0 0 0 8px rgba(192,57,43,0.22), 0 0 0 16px rgba(192,57,43,0.06), 0 8px 30px rgba(192,57,43,0.45); }
  100% { box-shadow: 0 0 0 5px rgba(192,57,43,0.18), 0 0 0 10px rgba(192,57,43,0.08), 0 8px 25px rgba(192,57,43,0.4); }
}

/* ---- Title block ---- */
.disclaimer-title-block {
  flex: 1;
}

.disclaimer-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #c0392b;
  margin-bottom: 5px;
}

.disclaimer-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.85rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.2;
}

/* Shield icon */
.disclaimer-icon-wrap {
  width: 58px;
  height: 58px;
  background: rgba(25,112,135,0.07);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.disclaimer-icon-wrap i {
  font-size: 1.6rem;
  color: #197087;
}

/* ---- Divider ---- */
.disclaimer-divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(192,57,43,0.2), rgba(25,112,135,0.15), transparent);
  margin: 28px 0;
  border-radius: 2px;
}

/* ---- Content grid ---- */
.disclaimer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 32px;
}

/* ---- Single item ---- */
.disclaimer-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.di-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(25,112,135,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.disclaimer-item:hover .di-icon {
  background: #197087;
}

.di-icon i {
  font-size: 1rem;
  color: #197087;
  transition: color 0.3s ease;
}

.disclaimer-item:hover .di-icon i {
  color: #ffffff;
}

.di-text strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 0.97rem;
  color: #1a1a1a;
  margin-bottom: 5px;
}

.di-text p {
  font-size: 0.88rem;
  color: #6c757d;
  line-height: 1.6;
  margin: 0;
}

/* ---- Footer strip ---- */
.disclaimer-footer {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(25,112,135,0.04);
  border: 1px solid rgba(25,112,135,0.1);
  border-radius: 12px;
  padding: 14px 20px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.disclaimer-flag {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.disclaimer-footer p {
  margin: 0;
  font-size: 0.82rem;
  color: #888;
  flex: 1;
  line-height: 1.5;
}

.disclaimer-link {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.83rem;
  font-weight: 700;
  color: #197087;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.25s ease;
  border-bottom: 1px dashed rgba(25,112,135,0.35);
  padding-bottom: 1px;
}

.disclaimer-link:hover {
  color: #0e4f60;
  border-bottom-style: solid;
}

.disclaimer-link i {
  transition: transform 0.25s ease;
}

.disclaimer-link:hover i {
  transform: translateX(4px);
}

/* ---- Responsive ---- */
@media (max-width: 767.98px) {
  .disclaimer-inner {
    padding: 32px 24px 28px;
  }

  .disclaimer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .disclaimer-title {
    font-size: 1.5rem;
  }

  .badge-18 {
    width: 66px;
    height: 66px;
  }

  .badge-18 span {
    font-size: 1.7rem;
  }

  .disclaimer-icon-wrap {
    display: none;
  }

  .disclaimer-footer {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .disclaimer-footer p {
    flex: none;
  }
}

@media (max-width: 575.98px) {
  .disclaimer-header {
    gap: 16px;
  }

  .badge-18 {
    width: 60px;
    height: 60px;
  }

  .badge-18 span {
    font-size: 1.5rem;
  }

  .disclaimer-inner {
    padding: 26px 18px 24px;
  }
}


/* ===========================
   Games Section
=========================== */
#games {
  background: linear-gradient(160deg, #f4f8fa 0%, #eaf2f5 100%);
  position: relative;
  overflow: hidden;
}

#games::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(25,112,135,0.07) 0%, transparent 70%);
  pointer-events: none;
}

/* ---- Header ---- */
.games-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.games-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #197087;
  margin-bottom: 8px;
}

.games-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 8px;
  line-height: 1.15;
}

.games-subtitle {
  font-size: 1rem;
  color: #6c757d;
  margin: 0;
}

/* ---- Filter tabs ---- */
.games-filter {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.gf-btn {
  padding: 9px 20px;
  border: 1.5px solid rgba(25,112,135,0.2);
  border-radius: 50px;
  background: #ffffff;
  color: #555;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.28s ease;
}

.gf-btn:hover {
  border-color: #197087;
  color: #197087;
  background: rgba(25,112,135,0.05);
}

.gf-btn.active {
  background: #197087;
  border-color: #197087;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(25,112,135,0.3);
}

/* ===== Games Grid ===== */
.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Featured card spans 2 cols */
.gc-featured {
  grid-column: span 2;
}

/* ---- Card base ---- */
.gc-inner {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  border: 1.5px solid rgba(25,112,135,0.08);
  box-shadow: 0 6px 20px rgba(0,0,0,0.07);
  transition: all 0.35s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.gc-inner:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(25,112,135,0.18);
  border-color: rgba(25,112,135,0.25);
}

/* Featured inner — row layout */
.gc-inner-featured {
  flex-direction: row;
}

/* ---- Image wrap ---- */
.gc-img-wrap {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.gc-img-wrap img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gc-inner:hover .gc-img-wrap img {
  transform: scale(1.07);
}

/* Featured image */
.gc-inner-featured .gc-img-wrap {
  width: 42%;
}

.gc-inner-featured .gc-img-wrap img {
  height: 100%;
  min-height: 260px;
}

/* ---- Overlay ---- */
.gc-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 45, 55, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
  backdrop-filter: blur(3px);
}

.gc-inner:hover .gc-overlay {
  opacity: 1;
}

/* ---- Play button ---- */
.gc-play-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 26px;
  background: #ffffff;
  color: #197087;
  border-radius: 50px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transform: translateY(12px);
  transition: all 0.35s ease;
  box-shadow: 0 6px 22px rgba(0,0,0,0.2);
}

.gc-inner:hover .gc-play-btn {
  transform: translateY(0);
}

.gc-play-btn:hover {
  background: #197087;
  color: #ffffff;
}

.gc-play-btn i {
  font-size: 0.85rem;
}

.gc-play-btn-lg {
  padding: 14px 32px;
  font-size: 1.05rem;
}

/* ---- Badges ---- */
.gc-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  z-index: 2;
}

.badge-hot {
  background: #fff3f3;
  color: #c0392b;
  border: 1px solid rgba(192,57,43,0.2);
}

.badge-new {
  background: #f0fdf4;
  color: #1a7a3f;
  border: 1px solid rgba(26,122,63,0.2);
}

.badge-top {
  background: #fffbeb;
  color: #b45309;
  border: 1px solid rgba(180,83,9,0.2);
}

/* Category tag */
.gc-category-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 4px 11px;
  background: rgba(25,112,135,0.85);
  color: #ffffff;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  z-index: 2;
}

/* Featured label */
.gc-featured-label {
  position: absolute;
  bottom: 14px;
  left: 14px;
  padding: 5px 13px;
  background: linear-gradient(135deg, #197087, #0e4f60);
  color: #fff;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  z-index: 2;
}

/* ---- Card body ---- */
.gc-body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.gc-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.gc-name {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.3;
}

/* Rating */
.gc-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(25,112,135,0.07);
  padding: 4px 10px;
  border-radius: 20px;
  flex-shrink: 0;
}

.gc-rating i {
  color: #f59e0b;
  font-size: 0.75rem;
}

.gc-rating span {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: #1a1a1a;
}

/* Description (featured only) */
.gc-desc {
  font-size: 0.88rem;
  color: #6c757d;
  line-height: 1.6;
  margin: 0;
}

/* Stats row */
.gc-stats {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.gc-stat {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: #888;
}

.gc-stat i {
  color: #197087;
  font-size: 0.78rem;
}

/* Progress bar */
.gc-progress-wrap {
  margin-top: auto;
}

.gc-progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: #aaa;
  margin-bottom: 6px;
  font-weight: 600;
}

.gc-progress {
  height: 5px;
  background: rgba(25,112,135,0.1);
  border-radius: 10px;
  overflow: hidden;
}

.gc-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #197087, #2ab5d9);
  border-radius: 10px;
  animation: progressGrow 1.2s ease-out forwards;
  transform-origin: left;
}

@keyframes progressGrow {
  from { width: 0 !important; }
  to   { }
}

/* ===== Bottom CTA ===== */
.games-bottom-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 44px;
}

.games-all-btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 38px;
  background: linear-gradient(135deg, #197087, #0e4f60);
  color: #ffffff;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 22px rgba(25,112,135,0.3);
}

.games-all-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(25,112,135,0.4);
  color: #ffffff;
}

.games-all-btn i {
  transition: transform 0.3s ease;
}

.games-all-btn:hover i {
  transform: translateX(5px);
}

.games-note {
  font-size: 0.83rem;
  color: #aaa;
  margin: 0;
}

/* ===== Hidden cards (filter) ===== */
.gc.hidden {
  display: none;
}

/* ===== Responsive ===== */
@media (max-width: 991.98px) {
  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gc-featured {
    grid-column: span 2;
  }

  .gc-inner-featured {
    flex-direction: column;
  }

  .gc-inner-featured .gc-img-wrap {
    width: 100%;
  }

  .gc-inner-featured .gc-img-wrap img {
    height: 230px;
    min-height: unset;
  }

  .games-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 575.98px) {
  .games-grid {
    grid-template-columns: 1fr;
  }

  .gc-featured {
    grid-column: span 1;
  }

  .games-title {
    font-size: 1.8rem;
  }

  .gf-btn {
    padding: 7px 14px;
    font-size: 0.82rem;
  }
}


/* ==============================
   Find Your Mood — redesigned
============================== */
#find-your-mood {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9f0f7 100%);
  position: relative;
  overflow: hidden;
}

#find-your-mood::before {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(25,112,135,0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* Eyebrow */
.mood-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #197087;
}

.mood-main-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.mood-main-sub {
  font-size: 1rem;
  color: #6c757d;
  max-width: 580px;
  line-height: 1.65;
  margin-bottom: 0;
}

/* ---- Cards ---- */
.mood-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 42px 26px 36px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.06);
  border: 1.5px solid rgba(25,112,135,0.07);
  transition: all 0.38s ease;
  position: relative;
  overflow: hidden;
}

.mood-card::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  border-radius: 0 0 22px 22px;
  opacity: 0;
  transition: opacity 0.38s ease;
}

.mood-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 50px rgba(25,112,135,0.16);
  border-color: rgba(25,112,135,0.2);
}

.mood-card:hover::after {
  opacity: 1;
}

/* colour accents per card */
.mc-energy::after { background: linear-gradient(90deg, #197087, #2ab5d9); }
.mc-social::after { background: linear-gradient(90deg, #1a7a3f, #34d399); }
.mc-chill::after  { background: linear-gradient(90deg, #7c3aed, #a78bfa); }
.mc-fire::after   { background: linear-gradient(90deg, #c0392b, #f97316); }

/* Card number */
.mood-card-num {
  position: absolute;
  top: 18px;
  right: 20px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(25,112,135,0.2);
  letter-spacing: 1px;
}

/* Icon wrap */
.mood-icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 1.9rem;
  transition: transform 0.35s ease;
}

.mc-energy .mood-icon-wrap { background: rgba(25,112,135,0.08); color: #197087; }
.mc-social .mood-icon-wrap { background: rgba(26,122,63,0.08);  color: #1a7a3f; }
.mc-chill  .mood-icon-wrap { background: rgba(124,58,237,0.08); color: #7c3aed; }
.mc-fire   .mood-icon-wrap { background: rgba(192,57,43,0.08);  color: #c0392b; }

.mood-card:hover .mood-icon-wrap {
  transform: scale(1.12) rotate(-4deg);
}

.mood-card h4 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.mood-card p {
  font-size: 0.93rem;
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 18px;
}

/* Tag pill */
.mood-tag {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.mc-energy .mood-tag { background: rgba(25,112,135,0.08);  color: #197087; }
.mc-social .mood-tag { background: rgba(26,122,63,0.08);   color: #1a7a3f; }
.mc-chill  .mood-tag { background: rgba(124,58,237,0.08);  color: #7c3aed; }
.mc-fire   .mood-tag { background: rgba(192,57,43,0.08);   color: #c0392b; }

/* ==============================
   Big CTA Strip
============================== */
.mood-cta-wrap {
  margin-top: 48px;
}

.mood-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: linear-gradient(135deg, #0e4f60 0%, #197087 60%, #1a9cb0 100%);
  border-radius: 24px;
  padding: 36px 44px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 50px rgba(25,112,135,0.35);
  flex-wrap: wrap;
}

/* decorative circles */
.mood-cta-inner::before,
.mood-cta-inner::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.12;
}

.mood-cta-inner::before {
  width: 260px;
  height: 260px;
  background: #ffffff;
  top: -80px;
  right: 200px;
}

.mood-cta-inner::after {
  width: 160px;
  height: 160px;
  background: #ffffff;
  bottom: -60px;
  right: 80px;
}

.mood-cta-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
  min-width: 0;
}

.mood-cta-emoji {
  font-size: 2.8rem;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

.mood-cta-heading {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 5px;
  line-height: 1.2;
}

.mood-cta-note {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.72);
  margin: 0;
}

/* Button */
.mood-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 38px;
  background: #ffffff;
  color: #197087;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: 50px;
  text-decoration: none;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: all 0.32s ease;
  box-shadow: 0 8px 28px rgba(0,0,0,0.18);
}

.mood-cta-btn:hover {
  background: #f0fafb;
  color: #0e4f60;
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 16px 40px rgba(0,0,0,0.22);
}

.mood-cta-arrow {
  width: 34px;
  height: 34px;
  background: rgba(25,112,135,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.32s ease;
}

.mood-cta-btn:hover .mood-cta-arrow {
  background: #197087;
  color: #ffffff;
  transform: translateX(4px);
}

.mood-cta-btn:hover .mood-cta-arrow i {
  color: #ffffff;
}

/* ---- Responsive ---- */
@media (max-width: 991.98px) {
  .mood-card {
    padding: 34px 20px 30px;
  }

  .mood-cta-inner {
    padding: 28px 30px;
  }

  .mood-cta-heading {
    font-size: 1.3rem;
  }
}

@media (max-width: 767.98px) {
  .mood-main-title {
    font-size: 1.9rem;
  }

  .mood-cta-inner {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
  }

  .mood-cta-left {
    flex-direction: column;
    gap: 12px;
  }

  .mood-cta-btn {
    width: 100%;
    justify-content: center;
  }
}
