:root {
    --primary: #FF6B9D;
    --secondary: #4ECDC4;
    --accent: #FFE66D;
    --bg-main: #FDFDFF;
    --bg-surface: #FFFFFF;
    --bg-soft: #F0F4F8;
    --text-primary: #2D3436;
    --text-secondary: #636E72;
    --candy-pink: linear-gradient(135deg, #FF9A9E 0%, #FAD0C4 99%, #FAD0C4 100%);
    --bubble-blue: linear-gradient(135deg, #A1C4FD 0%, #C2E9FB 100%);
    --glossy-overlay: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%);
    --shadow-floating: 0 10px 30px -10px rgba(255, 107, 157, 0.3);
    --shadow-card: 0 20px 40px -15px rgba(0, 0, 0, 0.08);
    --radius-xl: 32px;
}

body {
    font-family: 'Quicksand', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.6;
    font-weight: 500;
    overflow-x: hidden;
}

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

* {
    box-sizing: border-box;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.joy-stick-bay-theme {
    scroll-behavior: smooth;
}

.btn-candy {
    border-radius: 50px;
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: var(--candy-pink);
    color: white;
    box-shadow: var(--shadow-floating);
    position: relative;
    overflow: hidden;
}

.btn-candy:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
    box-shadow: 0 12px 35px -8px rgba(255, 107, 157, 0.5);
}

.glass-panel {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-xl);
}

.card-custom {
    border-radius: var(--radius-xl);
    border: none;
    background: var(--bg-surface);
    box-shadow: var(--shadow-card);
    padding: 2rem;
}

/* ===== header ===== */
.joy-stick-bay-header {
    background-color: #FFFFFF;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    z-index: 1050;
    font-family: 'Quicksand', sans-serif;
}

.joy-stick-bay-header .navbar {
    padding: 0.75rem 0;
    background-color: #FFFFFF !important;
}

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

.joy-stick-bay-header .brand-text {
    font-weight: 700;
    font-size: 1.25rem;
    color: #FF6B9D;
    letter-spacing: -0.5px;
}

.joy-stick-bay-header .nav-link {
    color: #2D3436 !important;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 12px;
}

.joy-stick-bay-header .nav-link i {
    font-size: 1.2rem;
    color: #4ECDC4;
}

.joy-stick-bay-header .nav-link:hover {
    color: #FF6B9D !important;
    background-color: #F0F4F8;
}

.joy-stick-bay-header .navbar-toggler {
    padding: 0.5rem;
    color: #FF6B9D;
    font-size: 1.5rem;
    background-color: #FDFDFF;
    border-radius: 10px;
}

.joy-stick-bay-header .contact-item {
    text-decoration: none;
    color: #636E72;
    font-weight: 500;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: color 0.3s ease;
}

.joy-stick-bay-header .contact-item i {
    color: #FF6B9D;
    font-size: 1.1rem;
}

.joy-stick-bay-header .contact-item:hover {
    color: #FF6B9D;
}

.joy-stick-bay-header .dropdown-toggle::after {
    display: none;
}

.joy-stick-bay-header .dropdown-menu {
    border: none;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 0.5rem;
    background-color: #FFFFFF;
}

.joy-stick-bay-header .dropdown-item {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: #2D3436;
    padding: 0.6rem 1rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.joy-stick-bay-header .dropdown-item i {
    font-size: 1.2rem;
    color: #4ECDC4;
}

.joy-stick-bay-header .dropdown-item:hover,
.joy-stick-bay-header .dropdown-item:focus {
    background-color: #F0F4F8;
    color: #FF6B9D;
}

@media (max-width: 991.98px) {
    .joy-stick-bay-header .navbar-collapse {
        background-color: #FFFFFF;
        padding: 1.5rem;
        border-radius: 20px;
        margin-top: 1rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .joy-stick-bay-header .nav-link {
        padding: 0.75rem 1rem !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .joy-stick-bay-header .nav-item:last-child .nav-link {
        border-bottom: none;
    }

    .joy-stick-bay-header .header-meta {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 2px dashed #F0F4F8;
    }

    .joy-stick-bay-header .brand-text {
        font-size: 1.1rem;
    }
}

/* ===== hero ===== */
.hero-gaming-bay {
    min-height: 100vh;
    background-color: #0c0e14;
    font-family: 'Quicksand', sans-serif;
}

.hero-video-wrapper {
    z-index: 0;
}

.hero-overlay {
    background: linear-gradient(90deg, rgba(12, 14, 20, 0.9) 0%, rgba(12, 14, 20, 0.4) 50%, rgba(12, 14, 20, 0.1) 100%);
    z-index: 1;
}

.hero-gaming-bay .content-panel {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 32px !important;
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.hero-gaming-bay h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.2;
    color: #FFFFFF !important;
}

.hero-gaming-bay .btn-primary-custom {
    background: linear-gradient(135deg, #FF6B9D 0%, #FAD0C4 100%);
    border: none;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px -5px rgba(255, 107, 157, 0.4);
}

.hero-gaming-bay .btn-primary-custom:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 25px -5px rgba(255, 107, 157, 0.6);
    color: #FFFFFF;
}

.hero-gaming-bay .btn-secondary-custom {
    background: rgba(78, 205, 196, 0.2);
    border: 2px solid #4ECDC4;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.hero-gaming-bay .btn-secondary-custom:hover {
    background: #4ECDC4;
    transform: scale(1.05);
    color: #FFFFFF !important;
}

.hero-gaming-bay .floating-glow {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 107, 157, 0.3) 0%, rgba(78, 205, 196, 0) 70%);
    filter: blur(40px);
    animation: pulseGlow 4s infinite alternate;
}

@keyframes pulseGlow {
    from {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }

    to {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

@media (max-width: 767px) {
    .hero-gaming-bay h1 {
        font-size: 24px;
    }

    .hero-gaming-bay p {
        font-size: 16px;
    }

    .hero-gaming-bay .content-panel {
        padding: 2rem !important;
    }

    .hero-overlay {
        background: rgba(12, 14, 20, 0.85);
    }
}

/* ===== about-us ===== */
.about-us-block {
    padding: 80px 0;
    background-color: #FDFDFF;
    font-family: 'Quicksand', sans-serif;
    overflow: hidden;
}

.about-us-block .about-main-title {
    color: #FF6B9D;
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-us-block .about-description {
    color: #2D3436;
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.about-us-block .about-goals {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.about-us-block .goal-card {
    display: flex;
    gap: 1.25rem;
    background: #FFFFFF;
    padding: 1.5rem;
    border-radius: 24px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease;
}

.about-us-block .goal-card:hover {
    transform: translateY(-5px);
}

.about-us-block .goal-icon-box {
    background: #4ECDC4;
    color: #FFFFFF;
    width: 50px;
    height: 50px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.about-us-block .goal-title {
    color: #2D3436;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.about-us-block .goal-info {
    color: #636E72;
    font-size: 0.95rem;
    margin-bottom: 0;
    line-height: 1.5;
}

.about-us-block .btn-joy-primary {
    display: inline-block;
    background: linear-gradient(135deg, #FF6B9D 0%, #FF9A9E 100%);
    color: #FFFFFF;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 30px -10px rgba(255, 107, 157, 0.4);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.about-us-block .btn-joy-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px -10px rgba(255, 107, 157, 0.6);
    color: #FFFFFF;
}

.about-us-block .about-image-container {
    position: relative;
    border-radius: 32px;
    padding: 10px;
    background: #FFFFFF;
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.1);
}

.about-us-block .about-main-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 28px;
    display: block;
}

.about-us-block .about-image-gloss {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: 32px 32px 0 0;
    pointer-events: none;
    z-index: 1;
}

@media (max-width: 991px) {
    .about-us-block {
        padding: 60px 0;
    }

    .about-us-block .about-main-title {
        font-size: 2rem;
    }

    .about-us-block .about-main-img {
        height: 350px;
    }
}

@media (max-width: 767px) {
    .about-us-block .about-main-title {
        font-size: 16px;
        text-align: center;
    }

    .about-us-block .goal-title {
        font-size: 14px;
    }

    .about-us-block .about-description {
        text-align: center;
        font-size: 0.95rem;
    }

    .about-us-block .about-cta-wrapper {
        text-align: center;
    }

    .about-us-block .about-main-img {
        height: 300px;
    }
}

/* ===== popular-games ===== */
.popular-games-section {
    background-color: #FDFDFF;
    font-family: 'Quicksand', sans-serif;
}

.popular-games-section .search-container {
    max-width: 500px;
    margin: 0 auto;
}

.popular-games-section .input-group {
    background: #FFFFFF;
    border: 2px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.popular-games-section .input-group:focus-within {
    border-color: #FF6B9D;
    box-shadow: 0 10px 20px rgba(255, 107, 157, 0.1) !important;
}

.popular-games-section .form-control:focus {
    box-shadow: none;
}

.popular-games-section .btn-filter {
    background: #F0F4F8;
    color: #636E72;
    border: none;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.popular-games-section .btn-filter:hover {
    background: #DFE6E9;
    transform: translateY(-2px);
}

.popular-games-section .btn-filter.active {
    background: #4ECDC4;
    color: #FFFFFF;
    box-shadow: 0 5px 15px rgba(78, 205, 196, 0.3);
}

.popular-games-section .game-card {
    background: #FFFFFF;
    border: none;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.popular-games-section .game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 107, 157, 0.15);
}

.popular-games-section .game-card-img-wrapper {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.popular-games-section .game-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.popular-games-section .game-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
}

.popular-games-section .btn-play {
    background: linear-gradient(135deg, #FF9A9E 0%, #FAD0C4 100%);
    color: #FFFFFF;
    border: none;
    border-radius: 16px;
    padding: 12px 20px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 107, 157, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.popular-games-section .btn-play:hover {
    background: linear-gradient(135deg, #FF6B9D 0%, #FF9A9E 100%);
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 107, 157, 0.3);
    color: #FFFFFF;
}

.popular-games-section .js-game-card.d-none {
    display: none !important;
}

@media (max-width: 768px) {
    .popular-games-section h2 {
        font-size: 1.5rem;
    }

    .popular-games-section .game-card-body {
        padding: 1.5rem !important;
    }
}

/* ===== how-to-play ===== */
.how-to-play-block {
    background-color: #FDFDFF;
    font-family: 'Quicksand', sans-serif;
    overflow: hidden;
}

.how-to-play-block .how-to-play-title {
    color: #FF6B9D;
    font-weight: 700;
    font-size: 2.5rem;
}

.how-to-play-block .how-to-play-subtitle {
    color: #636E72;
    font-size: 1.1rem;
    line-height: 1.6;
}

.how-to-play-block .how-to-play-card {
    padding: 40px 30px;
    background: #FFFFFF;
    border-radius: 32px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
    position: relative;
    box-sizing: border-box;
}

.how-to-play-block .how-to-play-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 50px -20px rgba(255, 107, 157, 0.3);
}

.how-to-play-block .icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background: linear-gradient(135deg, #A1C4FD 0%, #C2E9FB 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.8);
}

.how-to-play-block .icon-box i {
    font-size: 2.5rem;
    color: #FFFFFF;
}

.how-to-play-block .step-title {
    color: #2D3436;
    font-weight: 700;
    font-size: 1.5rem;
}

.how-to-play-block .step-desc {
    color: #636E72;
    font-size: 1rem;
    margin-bottom: 0;
}

.how-to-play-block .main-image-wrapper {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.15);
}

.how-to-play-block .main-image-wrapper img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

.how-to-play-block .btn-candy-primary {
    background: linear-gradient(135deg, #FF9A9E 0%, #FAD0C4 100%);
    color: #FFFFFF;
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.2rem;
    box-shadow: 0 10px 30px -10px rgba(255, 107, 157, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.how-to-play-block .btn-candy-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px -10px rgba(255, 107, 157, 0.7);
    color: #FFFFFF;
}

@media (max-width: 768px) {
    .how-to-play-block .how-to-play-title {
        font-size: 1.5rem;
    }

    .how-to-play-block .how-to-play-subtitle {
        font-size: 0.95rem;
    }

    .how-to-play-block .main-image-wrapper img {
        height: 300px;
    }

    .how-to-play-block .btn-candy-primary {
        width: 100%;
        text-align: center;
        padding: 15px 25px;
        font-size: 1.1rem;
    }
}

/* ===== footer ===== */
.js-site-footer {
    background-color: #FDFDFF;
    border-top: 2px solid rgba(255, 107, 157, 0.1);
    font-family: 'Quicksand', sans-serif;
    color: #2D3436;
}

.js-site-footer .footer-logo {
    max-width: 50px;
    height: auto;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.js-site-footer .footer-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #636E72;
}

.js-site-footer .footer-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #FF6B9D;
    position: relative;
}

.js-site-footer .footer-links li {
    margin-bottom: 0.75rem;
}

.js-site-footer .footer-links a,
.js-site-footer .footer-contact a,
.js-site-footer .footer-legal a {
    color: #636E72;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.js-site-footer .footer-links a:hover,
.js-site-footer .footer-contact a:hover,
.js-site-footer .footer-legal a:hover {
    color: #FF6B9D;
    transform: translateX(5px);
}

.js-site-footer i {
    color: #4ECDC4;
    font-size: 1.2rem;
}

.js-site-footer .footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(78, 205, 196, 0.2), transparent);
}

.js-site-footer .footer-legal .list-inline-item:not(:last-child) {
    margin-right: 1.5rem;
    position: relative;
}

.js-site-footer .footer-legal .list-inline-item:not(:last-child)::after {
    content: '|';
    position: absolute;
    right: -0.75rem;
    color: rgba(0, 0, 0, 0.1);
}

.js-site-footer .footer-copyright p {
    font-size: 0.85rem;
    color: #B2BEC3;
}

@media (max-width: 767.98px) {
    .js-site-footer .footer-title {
        font-size: 1.1rem;
    }

    .js-site-footer .footer-legal .list-inline-item {
        display: block;
        margin: 0.5rem 0;
    }

    .js-site-footer .footer-legal .list-inline-item:not(:last-child)::after {
        display: none;
    }

    .js-site-footer .footer-links a:hover {
        transform: none;
    }
}

/* ===== PAGE: about ===== */
.about-details-section {
  padding: 100px 0;
  background-color: #FDFDFF;
}

.about-details-section .rounded-custom {
  border-radius: 32px;
}

.about-details-section .about-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #FF6B9D;
}

.about-details-section .about-lead {
  font-size: 1.1rem;
  color: #636E72;
  line-height: 1.8;
}

.about-details-section .feature-icon-box {
  background-color: #4ECDC4;
  color: #FFFFFF;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(78, 205, 196, 0.3);
}

.about-details-section .feature-subtitle {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2D3436;
  margin-bottom: 5px;
}

.about-details-section .feature-text {
  font-size: 1rem;
  color: #636E72;
}

.about-details-section .floating-badge {
  position: absolute;
  bottom: 30px;
  right: -20px;
  background: #FFE66D;
  padding: 15px 25px;
  border-radius: 50px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: #2D3436;
}

.about-details-section .mission-vision-card {
  background: #FFFFFF;
  border-radius: 32px;
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.team-section {
  padding: 100px 0;
  background-color: #F0F4F8;
}

.team-section .section-heading {
  color: #FF6B9D;
  font-weight: 700;
  margin-bottom: 20px;
}

.team-section .section-subtitle {
  color: #636E72;
  font-size: 1.1rem;
}

.team-section .team-card {
  background: #FFFFFF;
  border-radius: 32px;
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid transparent;
}

.team-section .team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px -12px rgba(255, 107, 157, 0.15);
  border-color: #FF6B9D;
}

.team-section .team-img-wrapper {
  width: 150px;
  height: 150px;
  overflow: hidden;
  border: 4px solid #F0F4F8;
  border-radius: 50%;
}

.team-section .team-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-section .team-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: #2D3436;
}

.team-section .team-role {
  color: #4ECDC4;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.team-section .team-bio {
  color: #636E72;
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (max-width: 991.98px) {
  .about-details-section .about-title {
    font-size: 1.8rem;
  }
  .about-details-section .floating-badge {
    position: relative;
    right: 0;
    bottom: 0;
    margin-top: 20px;
    display: inline-flex;
  }
  .about-details-section, .team-section {
    padding: 60px 0;
  }
}

/* ===== PAGE: games ===== */
.all-games-section {
  background-color: #FDFDFF;
  font-family: 'Quicksand', sans-serif;
}

.all-games-section .search-filter-wrapper {
  background: #FFFFFF;
  border-radius: 32px;
  box-shadow: 0 10px 30px -10px rgba(255, 107, 157, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.all-games-section .search-box .search-icon {
  position: absolute;
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  color: #FF6B9D;
  font-size: 1.25rem;
}

.all-games-section .js-search-input {
  padding: 1rem 1rem 1rem 3.5rem;
  border-radius: 20px;
  border: 2px solid #F0F4F8;
  font-weight: 500;
  transition: all 0.3s ease;
}

.all-games-section .js-search-input:focus {
  border-color: #4ECDC4;
  box-shadow: 0 0 10px rgba(78, 205, 196, 0.2);
  outline: none;
}

.all-games-section .game-card-inner {
  background: #FFFFFF;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.all-games-section .game-card-inner:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 50px -12px rgba(255, 107, 157, 0.3);
}

.all-games-section .game-img-container {
  width: 100%;
  height: 180px;
  overflow: hidden;
  position: relative;
}

.all-games-section .game-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.all-games-section .game-card-inner:hover .game-thumbnail {
  transform: scale(1.1);
}

.all-games-section .game-card-content {
  padding: 1.5rem;
  flex-grow: 1;
}

.all-games-section .game-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #2D3436;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.all-games-section .game-desc {
  font-size: 0.9rem;
  color: #636E72;
  line-height: 1.5;
}

.all-games-section .btn-primary {
  background: linear-gradient(135deg, #FF6B9D 0%, #FAD0C4 100%);
  border: none;
  border-radius: 15px;
  padding: 0.75rem 1rem;
  font-weight: 700;
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.all-games-section .btn-primary:hover {
  background: linear-gradient(135deg, #FF6B9D 20%, #FAD0C4 120%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 157, 0.4);
}

.all-games-section .btn-secondary {
  background: linear-gradient(135deg, #4ECDC4 0%, #A1C4FD 100%);
  border: none;
  border-radius: 20px;
  font-weight: 700;
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(78, 205, 196, 0.3);
  transition: all 0.3s ease;
}

.all-games-section .btn-secondary:hover {
  background: linear-gradient(135deg, #4ECDC4 20%, #A1C4FD 120%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(78, 205, 196, 0.4);
}

@media (max-width: 768px) {
  .all-games-section .game-title { font-size: 1rem; }
  .all-games-section .game-desc { font-size: 0.85rem; }
  .all-games-section .game-img-container { height: 160px; }
}

/* ===== PAGE: leaderboard ===== */
.leaderboard-section {
  background-color: #FDFDFF;
  min-height: 80vh;
}
.leaderboard-section .leaderboard-card {
  background: #FFFFFF;
  border-radius: 32px;
  padding: 40px;
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.leaderboard-section .leaderboard-title {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  color: #2D3436;
  font-size: 2.5rem;
}
.leaderboard-section .leaderboard-desc {
  color: #636E72;
  font-size: 1.1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.leaderboard-section .tab-btn {
  background: #F0F4F8;
  border: 2px solid transparent;
  border-radius: 50px;
  padding: 10px 24px;
  font-weight: 600;
  color: #636E72;
  transition: all 0.3s ease;
}
.leaderboard-section .tab-btn:hover {
  background: #FFE66D;
  color: #2D3436;
  transform: translateY(-2px);
}
.leaderboard-section .tab-btn.active {
  background: #FF6B9D;
  color: #FFFFFF;
  box-shadow: 0 10px 20px -5px rgba(255, 107, 157, 0.4);
}
.leaderboard-section .leaderboard-tab-content {
  display: none;
}
.leaderboard-section .leaderboard-tab-content.active {
  display: block;
  animation: fadeIn 0.4s ease-in-out;
}
.leaderboard-section .custom-table {
  margin-top: 20px;
  border-collapse: separate;
  border-spacing: 0 12px;
}
.leaderboard-section .custom-table thead th {
  border: none;
  color: #636E72;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
  padding-bottom: 20px;
}
.leaderboard-section .custom-table tbody tr {
  background-color: #FDFDFF;
  box-shadow: 0 4px 10px rgba(0,0,0,0.02);
  transition: transform 0.2s ease;
}
.leaderboard-section .custom-table tbody tr:hover {
  transform: scale(1.01);
  background-color: #F8F9FB;
}
.leaderboard-section .custom-table tbody td {
  padding: 20px;
  border: none;
  vertical-align: middle;
  color: #2D3436;
  font-weight: 600;
}
.leaderboard-section .custom-table tbody td:first-child {
  border-top-left-radius: 16px;
  border-bottom-left-radius: 16px;
}
.leaderboard-section .custom-table tbody td:last-child {
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
}
.leaderboard-section .player-img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
  border: 2px solid #4ECDC4;
}
.leaderboard-section .rank-cell {
  font-size: 1.25rem;
  font-weight: 700;
}
.leaderboard-section .rank-1 {
  color: #FFD700;
}
.leaderboard-section .rank-2 {
  color: #C0C0C0;
}
.leaderboard-section .rank-3 {
  color: #CD7F32;
}
.leaderboard-section .score-cell {
  color: #FF6B9D;
  font-weight: 700;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 768px) {
  .leaderboard-section .leaderboard-title {
    font-size: 1.5rem;
  }
  .leaderboard-section .leaderboard-card {
    padding: 20px;
  }
  .leaderboard-section .custom-table tbody td {
    padding: 12px;
    font-size: 0.9rem;
  }
  .leaderboard-section .player-img {
    width: 35px;
    height: 35px;
    margin-right: 8px;
  }
}

/* ===== PAGE: rooms ===== */
.available-rooms-section {
  background-color: #FDFDFF;
  font-family: 'Quicksand', sans-serif;
}

.available-rooms-section h1 {
  color: #FF6B9D;
}

.available-rooms-section .search-box-container {
  position: relative;
}

.available-rooms-section .search-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #636E72;
  z-index: 10;
}

.available-rooms-section .js-room-search {
  padding-left: 45px;
  border-radius: 50px;
  border: 2px solid #F0F4F8;
  height: 50px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: border-color 0.3s ease;
}

.available-rooms-section .js-room-search:focus {
  border-color: #FF6B9D;
  box-shadow: 0 4px 15px rgba(255, 107, 157, 0.15);
  outline: none;
}

.available-rooms-section .filter-tabs .js-filter-btn {
  background-color: #FFFFFF;
  border: 2px solid #F0F4F8;
  border-radius: 50px;
  padding: 8px 24px;
  color: #636E72;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.available-rooms-section .filter-tabs .js-filter-btn:hover {
  background-color: #F0F4F8;
  transform: translateY(-2px);
}

.available-rooms-section .filter-tabs .js-filter-btn.active {
  background-color: #FF6B9D;
  border-color: #FF6B9D;
  color: #FFFFFF;
  box-shadow: 0 10px 20px -5px rgba(255, 107, 157, 0.4);
}

.available-rooms-section .room-card-inner {
  background: #FFFFFF;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.available-rooms-section .room-card-inner:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px -15px rgba(255, 107, 157, 0.2);
}

.available-rooms-section .room-image-holder {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.available-rooms-section .room-image-holder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.available-rooms-section .status-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.available-rooms-section .category-tag {
  font-size: 0.7rem;
  color: #4ECDC4;
  letter-spacing: 1px;
}

.available-rooms-section .player-count {
  font-size: 0.85rem;
  color: #636E72;
  display: flex;
  align-items: center;
  gap: 5px;
}

.available-rooms-section .player-count i {
  color: #FF6B9D;
}

.available-rooms-section h3 {
  margin-top: 10px;
  margin-bottom: 8px;
  font-size: 1.25rem;
}

/* ===== PAGE: how-to-play ===== */
.how-to-play-section {
  padding: 80px 0;
  background-color: #FDFDFF;
  font-family: 'Quicksand', sans-serif;
}

.how-to-play-section .how-to-play-title {
  color: #FF6B9D;
  font-weight: 700;
  font-size: 2.5rem;
}

.how-to-play-section .how-to-play-intro {
  color: #636E72;
}

.how-to-play-section .step-card {
  background: #FFFFFF;
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.how-to-play-section .step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 50px -20px rgba(255, 107, 157, 0.2);
}

.how-to-play-section .step-image-wrapper {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.how-to-play-section .step-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.how-to-play-section .step-number {
  position: absolute;
  bottom: -15px;
  right: 20px;
  background: #FFE66D;
  color: #2D3436;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.5rem;
  box-shadow: 0 5px 15px rgba(255, 230, 109, 0.4);
  border: 4px solid #FFFFFF;
}

.how-to-play-section .step-content {
  padding: 35px 24px 24px;
}

.how-to-play-section .step-title {
  color: #2D3436;
  font-weight: 700;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.how-to-play-section .step-title i {
  color: #4ECDC4;
}

.how-to-play-section .step-desc {
  color: #636E72;
  font-size: 0.95rem;
  line-height: 1.6;
}

.how-to-play-section .promo-card {
  background: linear-gradient(135deg, #FF9A9E 0%, #FAD0C4 100%);
  border: none;
}

.how-to-play-section .promo-icon-circle {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #FFFFFF;
}

.how-to-play-section .btn-start-now {
  background: #FFFFFF;
  color: #FF6B9D;
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.how-to-play-section .btn-start-now:hover {
  background: #FFE66D;
  color: #2D3436;
  transform: scale(1.05);
}

.how-to-play-section .faq-container {
  background: #F0F4F8;
  border-radius: 32px;
}

.how-to-play-section .faq-main-title {
  color: #2D3436;
  font-weight: 700;
}

.how-to-play-section .accordion-item {
  background: transparent;
  border: none;
  margin-bottom: 15px;
}

.how-to-play-section .accordion-button {
  background: #FFFFFF;
  border-radius: 20px !important;
  color: #2D3436;
  font-weight: 600;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.how-to-play-section .accordion-button:not(.collapsed) {
  background: #4ECDC4;
  color: #FFFFFF;
  box-shadow: 0 10px 20px rgba(78, 205, 196, 0.2);
}

.how-to-play-section .accordion-button::after {
  filter: grayscale(1) invert(0);
}

.how-to-play-section .accordion-body {
  color: #636E72;
  padding: 20px;
}

@media (max-width: 768px) {
  .how-to-play-section .how-to-play-title {
    font-size: 1.8rem;
  }
  .how-to-play-section {
    padding: 50px 0;
  }
}

/* ===== PAGE: contact ===== */
.contact-section {
  background-color: #FDFDFF;
  font-family: 'Quicksand', sans-serif;
}

.contact-section .contact-card {
  background: #FFFFFF;
  border-radius: 32px;
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-section .contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px -10px rgba(255, 107, 157, 0.3);
}

.contact-section .icon-box {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #FF9A9E 0%, #FAD0C4 100%);
  border-radius: 20px;
  color: #FFFFFF;
  font-size: 1.75rem;
  flex-shrink: 0;
  box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.8);
}

.contact-section .contact-label {
  font-size: 1rem;
  font-weight: 700;
  color: #636E72;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-section .contact-text,
.contact-section .contact-link {
  font-size: 1.15rem;
  font-weight: 600;
  color: #2D3436;
  text-decoration: none;
  word-break: break-word;
}

.contact-section .contact-link:hover {
  color: #FF6B9D;
}

.contact-section .contact-info-block {
  background: #F0F4F8;
  border-radius: 32px;
}

.contact-section .info-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #FF6B9D;
}

.contact-section .info-description {
  color: #636E72;
  line-height: 1.6;
}

.contact-section .map-container {
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.08);
  border: 4px solid #FFFFFF;
  min-height: 450px;
}

@media (max-width: 991px) {
  .contact-section .map-container {
    min-height: 400px;
    margin-top: 2rem;
  }
}

@media (max-width: 767px) {
  .contact-section .contact-card {
    padding: 1.5rem !important;
  }
  .contact-section .icon-box {
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
  }
  .contact-section .contact-text,
  .contact-section .contact-link {
    font-size: 1rem;
  }
  .contact-section .info-title {
    font-size: 1.25rem;
  }
}

/* ===== PAGE: privacy ===== */
.privacy-policy-section { background-color: #FDFDFF; font-family: 'Quicksand', sans-serif; overflow: hidden; } .privacy-policy-section .privacy-card { background: #FFFFFF; border-radius: 32px; box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.08); border: 1px solid rgba(0, 0, 0, 0.05); } .privacy-policy-section .text-primary-theme { color: #FF6B9D !important; } .privacy-policy-section .text-secondary-theme { color: #4ECDC4 !important; } .privacy-policy-section .text-accent-theme { color: #FFD93D !important; } .privacy-policy-section .text-dark-theme { color: #2D3436 !important; font-weight: 700; } .privacy-policy-section .text-body-theme { color: #636E72 !important; line-height: 1.8; font-weight: 500; } .privacy-policy-section .privacy-content-item h2 { font-size: 1.5rem; letter-spacing: -0.02em; } @media (max-width: 767px) { .privacy-policy-section .privacy-card { border-radius: 24px; padding: 20px !important; } .privacy-policy-section h2 { font-size: 1.15rem !important; } .privacy-policy-section .text-body-theme { font-size: 0.95rem; } }

/* ===== PAGE: terms ===== */
.terms-of-use-section {
  background-color: #FDFDFF;
  min-height: 50vh;
  font-family: 'Quicksand', sans-serif;
}

.terms-of-use-card {
  background: #FFFFFF;
  border-radius: 32px;
  padding: 2.5rem;
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.terms-of-use-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: linear-gradient(90deg, #FF6B9D, #4ECDC4, #FFE66D);
}

.terms-of-use-title {
  font-weight: 700;
  color: #2D3436;
  font-size: 2.5rem;
  letter-spacing: -0.5px;
}

.terms-of-use-subtitle {
  color: #636E72;
  font-size: 1.1rem;
  font-weight: 500;
}

.terms-of-use-divider {
  width: 60px;
  height: 4px;
  background-color: #FF6B9D;
  border-radius: 2px;
  margin-top: 1rem;
}

.terms-of-use-icon-box {
  width: 48px;
  height: 48px;
  background-color: #F0F4F8;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FF6B9D;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.terms-of-use-item:hover .terms-of-use-icon-box {
  background-color: #FF6B9D;
  color: #FFFFFF;
  transform: scale(1.1);
}

.terms-of-use-h2 {
  font-weight: 700;
  color: #2D3436;
  font-size: 1.4rem;
}

.terms-of-use-text {
  color: #2D3436;
  line-height: 1.7;
  font-weight: 500;
  margin-left: 64px;
}

.terms-of-use-list {
  margin-left: 64px;
  padding-left: 20px;
  color: #2D3436;
  font-weight: 500;
  line-height: 1.8;
}

.terms-of-use-list li {
  margin-bottom: 0.5rem;
  position: relative;
}

.terms-of-use-list li::marker {
  color: #4ECDC4;
}

@media (max-width: 768px) {
  .terms-of-use-title {
    font-size: 1.8rem;
  }
  .terms-of-use-card {
    padding: 1.5rem;
    border-radius: 24px;
  }
  .terms-of-use-h2 {
    font-size: 1.2rem;
  }
  .terms-of-use-text, .terms-of-use-list {
    margin-left: 0;
    margin-top: 1rem;
  }
  .terms-of-use-icon-box {
    width: 36px;
    height: 36px;
    font-size: 1.2rem;
  }
}

/* ===== PAGE: disclaimer ===== */
.disclaimer-section {
  padding: 80px 0;
  background-color: #FDFDFF;
  font-family: 'Quicksand', sans-serif;
}

.disclaimer-section .disclaimer-card {
  background: #FFFFFF;
  border-radius: 32px;
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.disclaimer-section .disclaimer-icon-wrapper {
  font-size: 3.5rem;
  color: #FF6B9D;
  background: rgba(255, 107, 157, 0.1);
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto;
}

.disclaimer-section .disclaimer-title {
  color: #2D3436;
  font-weight: 700;
  font-size: 2rem;
  margin-top: 1rem;
}

.disclaimer-section .disclaimer-divider {
  width: 60px;
  height: 4px;
  background: #4ECDC4;
  margin: 1.5rem auto;
  border-radius: 2px;
}

.disclaimer-section .disclaimer-subtitle {
  color: #FF6B9D;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.disclaimer-section .disclaimer-subtitle i {
  font-size: 1.5rem;
}

.disclaimer-section .disclaimer-text {
  color: #636E72;
  line-height: 1.8;
  font-size: 1rem;
  text-align: justify;
}

.disclaimer-section .disclaimer-block {
  padding: 1.5rem;
  background: #F0F4F8;
  border-radius: 24px;
  transition: transform 0.3s ease;
}

.disclaimer-section .disclaimer-block:hover {
  transform: translateY(-5px);
}

.disclaimer-section .btn-primary-custom {
  background-color: #FF6B9D;
  color: #FFFFFF;
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 10px 30px -10px rgba(255, 107, 157, 0.3);
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.disclaimer-section .btn-primary-custom:hover {
  background-color: #ff85ad;
  transform: scale(1.05);
  color: #FFFFFF;
}

.disclaimer-section .disclaimer-update-text {
  font-size: 0.9rem;
  color: #636E72;
  margin-bottom: 1.5rem;
}

.disclaimer-section .text-primary {
  color: #FF6B9D !important;
}

.disclaimer-section .text-secondary {
  color: #4ECDC4 !important;
}

@media (max-width: 768px) {
  .disclaimer-section {
    padding: 40px 0;
  }
  .disclaimer-section .disclaimer-title {
    font-size: 1.5rem;
  }
  .disclaimer-section .disclaimer-subtitle {
    font-size: 1.1rem;
  }
  .disclaimer-section .disclaimer-card {
    border-radius: 24px;
  }
}

.comment-card {
    background: #FFFFFF;
    border-radius: 32px;
    padding: 24px;
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    transition: transform 0.3s ease;
}

.comment-card:hover {
    transform: translateY(-2px);
}

.comment-avatar {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    object-fit: cover;
    border: 3px solid #FF6B9D;
    box-shadow: 0 4px 10px rgba(255, 107, 157, 0.2);
}

.comment-user {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    color: #2D3436;
    font-size: 1.1rem;
}

.comment-time {
    font-size: 0.85rem;
    color: #636E72;
    font-weight: 500;
}

.comment-body p {
    line-height: 1.6;
    font-weight: 500;
    color: #2D3436;
}

.btn-comment-action {
    background: #F0F4F8;
    border: none;
    border-radius: 12px;
    padding: 6px 14px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #636E72;
    transition: all 0.2s ease;
}

.btn-comment-action:hover {
    background: #FF6B9D;
    color: #FFFFFF;
    transform: scale(1.05);
}

.btn-comment-action i {
    font-size: 1.1rem;
}

.reply-card {
    background: #FDFDFF;
    border-left: 4px solid #4ECDC4;
    padding: 16px 20px;
    border-radius: 24px;
    box-shadow: 0 10px 25px -5px rgba(78, 205, 196, 0.1);
}

.comment-avatar-reply {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    object-fit: cover;
    border: 2px solid #4ECDC4;
}

.comment-user-reply {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    color: #2D3436;
    font-size: 0.95rem;
}

.badge-dev {
    background: #4ECDC4;
    color: white;
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 8px;
    vertical-align: middle;
}

.btn-comment-action-small {
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    padding: 4px 10px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #636E72;
    transition: all 0.2s ease;
}

.btn-comment-action-small:hover {
    background: #4ECDC4;
    color: white;
    border-color: #4ECDC4;
}


/* ===== PAGE TEMPLATE: games-list ===== */
.game-detail-wrapper {
    background-color: #FDFDFF;
    font-family: 'Quicksand', sans-serif;
}

.game-detail-wrapper .game-player-section {
    background-color: #000;
}

.game-detail-wrapper .iframe-container {
    width: 100%;
    height: 500px;
    overflow: hidden;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.game-detail-wrapper .game-iframe {
    max-width: 900px;
    width: 100%;
    height: 100%;
    border: none;
}

@media (min-width: 992px) {
    .game-detail-wrapper .iframe-container {
        height: 600px;
    }
}

.game-detail-wrapper .btn-fullscreen,
.game-detail-wrapper .btn-exit-fullscreen {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 10;
    background-color: rgba(255, 107, 157, 0.9);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 8px 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.game-detail-wrapper .btn-fullscreen:hover,
.game-detail-wrapper .btn-exit-fullscreen:hover {
    background-color: #FF6B9D;
    transform: scale(1.05);
    color: white;
}

.game-detail-wrapper .btn-exit-fullscreen {
    top: 20px;
    bottom: auto;
}

.game-detail-wrapper .content-card,
.game-detail-wrapper .sidebar-card {
    background: #FFFFFF;
    border-radius: 32px;
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.game-detail-wrapper .feature-list {
    list-style: none;
    padding: 0;
}

.game-detail-wrapper .feature-list li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    color: #2D3436;
}

.game-detail-wrapper .feature-list i {
    color: #4ECDC4;
}

.game-detail-wrapper .btn-share {
    border-radius: 12px;
    padding: 10px 20px;
    font-weight: 600;
    color: white;
    display: flex;
    align-items: center;
    gap: 8px;
}

.game-detail-wrapper .btn-share.fb {
    background-color: #1877F2;
}

.game-detail-wrapper .btn-share.tw {
    background-color: #1DA1F2;
}


.game-detail-wrapper .comment-card {
    background: #FFFFFF;
    padding: 1.5rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.game-detail-wrapper .comment-avatar,
.game-detail-wrapper .comment-avatar-reply {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.game-detail-wrapper .comment-avatar-reply {
    width: 36px;
    height: 36px;
}

.game-detail-wrapper .badge-dev {
    font-size: 0.7rem;
    padding: 2px 8px;
    background-color: #FF6B9D;
    border-radius: 4px;
    color: white;
}

.game-detail-wrapper .btn-comment-action {
    background: none;
    border: none;
    padding: 0;
    font-size: 0.85rem;
    color: #636E72;
    transition: color 0.3s ease;
}

.game-detail-wrapper .btn-comment-action:hover {
    color: #FF6B9D;
}

.game-detail-wrapper .btn-comment-action.active {
    color: #FF6B9D;
}

.game-detail-wrapper .related-card {
    text-decoration: none;
    background: #FFFFFF;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.game-detail-wrapper .related-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.game-detail-wrapper .related-img {
    width: 80px;
    height: 60px;
    object-fit: cover;
}

.game-detail-wrapper .related-title {
    color: #2D3436;
    font-weight: 600;
    font-size: 0.95rem;
}

.game-detail-wrapper .comment-form-mock textarea {
    border-radius: 16px;
    border: 2px solid #F0F4F8;
    padding: 15px;
}

.game-detail-wrapper .comment-form-mock textarea:focus {
    border-color: #FF6B9D;
    box-shadow: none;
}

.game-detail-wrapper .comment-form-mock .btn-primary {
    background-color: #4ECDC4;
    border: none;
    border-radius: 12px;
    padding: 10px 25px;
    font-weight: 700;
}