:root {
    --primary-bg: #0d0118;
    --secondary-bg: #1a0b2e;
    --surface-color: #240e3f;
    --accent-primary: #9d4edd;
    --accent-secondary: #c77dff;
    --glow-effect: rgba(157, 78, 221, 0.5);
    --text-primary: #ffffff;
    --text-secondary: #b0a4c0;
    --success: #2ecc71;
    --warning: #f1c40f;
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Montserrat', sans-serif;
}

body {
    background-color: var(--primary-bg);
    color: var(--text-primary);
    font-family: var(--font-main);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

* {
    box-sizing: border-box;
    transition: background-color 0.3s ease-out, border-color 0.3s ease-out, box-shadow 0.3s ease-out, transform 0.3s ease-out;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 800;
}

.dark-theme {
    background-color: var(--primary-bg);
}

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

a {
    text-decoration: none;
    color: inherit;
}

/* ===== header ===== */
.header-navigation {
    background-color: #0d0118;
    border-bottom: 1px solid #240e3f;
    z-index: 1050;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.header-navigation.is-scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    background-color: #1a0b2e;
}

.header-navigation .navbar {
    padding: 0.75rem 0;
}

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

.header-navigation .header-brand-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    color: #ffffff;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.header-navigation .nav-link {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    color: #b0a4c0 !important;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

.header-navigation .nav-link:hover,
.header-navigation .nav-link.active {
    color: #9d4edd !important;
}

.header-navigation .header-contact-link {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #ffffff;
    background-color: #240e3f;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.header-navigation .header-contact-link:hover {
    background-color: #9d4edd;
    color: #ffffff;
    box-shadow: 0 0 15px rgba(157, 78, 221, 0.4);
}

.header-navigation .navbar-toggler {
    font-size: 1.5rem;
    padding: 0;
}

.header-navigation .navbar-toggler:focus {
    box-shadow: none;
}

@media (max-width: 991.98px) {
    .header-navigation .navbar-collapse {
        background-color: #1a0b2e;
        margin-top: 1rem;
        padding: 1.5rem;
        border-radius: 12px;
        border: 1px solid #240e3f;
    }

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

    .header-navigation .nav-item:last-child .nav-link {
        border-bottom: none;
    }

    .header-navigation .header-contact-link {
        margin-top: 1rem;
        justify-content: center;
        width: 100%;
    }
}

/* ===== hero ===== */
#hero-welcome.hero-section {
    background-image: url('../resources/img/pics/social-gaming-platform-hero.png');
    background-size: cover;
    background-position: center;
    min-height: 80vh;
    overflow: hidden;
}

#hero-welcome .hero-overlay {
    background: linear-gradient(90deg, rgba(13, 1, 24, 0.9) 0%, rgba(13, 1, 24, 0.6) 100%);
    top: 0;
    left: 0;
}

#hero-welcome .hero-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    line-height: 1.1;
    letter-spacing: -1px;
}

#hero-welcome .hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #c77dff;
    font-size: 1.5rem;
    line-height: 1.3;
}

#hero-welcome .hero-description {
    font-family: 'Inter', sans-serif;
    color: #b0a4c0;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
}

#hero-welcome .btn-hero-primary {
    background-color: #9d4edd;
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    font-weight: 700;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 15px rgba(157, 78, 221, 0.4);
}

#hero-welcome .btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(157, 78, 221, 0.6);
    color: #ffffff;
}

#hero-welcome .btn-hero-outline {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #9d4edd;
    padding: 12px 28px;
    font-weight: 700;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

#hero-welcome .btn-hero-outline:hover {
    background-color: rgba(157, 78, 221, 0.1);
    border-color: #c77dff;
    color: #ffffff;
}

#hero-welcome .hero-disclaimer-box {
    border-top: 1px solid rgba(176, 164, 192, 0.2);
}

#hero-welcome .hero-disclaimer-text {
    color: #b0a4c0;
    font-size: 0.85rem;
    line-height: 1.4;
    font-family: 'Inter', sans-serif;
}

@media (max-width: 767.98px) {
    #hero-welcome.hero-section {
        min-height: auto;
        padding: 60px 0;
    }

    #hero-welcome .hero-title {
        font-size: 18px !important;
    }

    #hero-welcome .hero-subtitle {
        font-size: 16px !important;
    }

    #hero-welcome .hero-description {
        font-size: 0.8rem !important;
    }

    #hero-welcome .hero-disclaimer-text {
        font-size: 0.7rem !important;
    }

    #hero-welcome .hero-actions {
        align-items: stretch;
    }
}

/* ===== games_grid ===== */
.popular-games-block {
    padding: 80px 0;
    background-color: #0d0118;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.popular-games-block__heading {
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.popular-games-block__subheading {
    color: #b0a4c0;
}

.popular-games-block__card {
    background-color: #240e3f;
    border: 1px solid rgba(157, 78, 221, 0.2);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.popular-games-block__card:hover {
    transform: translateY(-8px);
    border-color: #9d4edd;
    box-shadow: 0 15px 40px rgba(157, 78, 221, 0.25);
}

.popular-games-block__card-img-link {
    display: block;
    position: relative;
    aspect-ratio: 1.6;
    overflow: hidden;
}

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

.popular-games-block__card:hover .popular-games-block__card-img {
    transform: scale(1.1);
}

.popular-games-block__card-title-link {
    text-decoration: none;
    color: #ffffff;
    display: block;
}

.popular-games-block__card-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.popular-games-block__card-title-link:hover .popular-games-block__card-title {
    color: #c77dff;
}

.popular-games-block__card-btn {
    background: linear-gradient(135deg, #9d4edd, #7b2cbf);
    color: #ffffff;
    border: none;
    padding: 12px;
    font-weight: 600;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.popular-games-block__card-btn:hover {
    background: linear-gradient(135deg, #c77dff, #9d4edd);
    color: #ffffff;
    box-shadow: 0 0 20px rgba(157, 78, 221, 0.4);
    transform: scale(1.02);
}

.popular-games-block__disclaimer {
    color: #b0a4c0;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.8;
    line-height: 1.6;
}

@media (max-width: 767.98px) {
    .popular-games-block {
        padding: 60px 0;
    }

    .popular-games-block__heading {
        font-size: 1.75rem;
    }
}

/* ===== features ===== */
.features-section {
    background-color: #0d0118;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.features-section .features-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.features-section .features-subtitle {
    font-family: 'Inter', sans-serif;
    color: #b0a4c0;
    font-size: 1.1rem;
    line-height: 1.6;
}

.features-section .feature-card {
    background: #1a0b2e;
    border: 1px solid rgba(157, 78, 221, 0.2);
    border-radius: 12px;
    padding: 2rem;
    transition: transform 0.3s ease-out, box-shadow 0.3s ease-out, border-color 0.3s ease-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.features-section .feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #9d4edd;
    box-shadow: 0 10px 30px rgba(157, 78, 221, 0.25);
}

.features-section .feature-icon-wrapper {
    width: 70px;
    height: 70px;
    background: rgba(157, 78, 221, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #9d4edd;
    font-size: 2rem;
    transition: color 0.3s ease;
}

.features-section .feature-card:hover .feature-icon-wrapper {
    color: #c77dff;
    box-shadow: 0 0 15px rgba(157, 78, 221, 0.4);
}

.features-section .feature-card-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.features-section .feature-card-text {
    font-family: 'Inter', sans-serif;
    color: #b0a4c0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.features-section .disclaimer-box {
    background: rgba(36, 14, 63, 0.5);
    border: 1px dashed #9d4edd;
    border-radius: 8px;
    max-width: 900px;
    margin: 0 auto;
}

.features-section .disclaimer-box p {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #b0a4c0;
    font-style: italic;
}

@media (max-width: 767px) {
    .features-section .features-title {
        font-size: 1.5rem;
    }

    .features-section .feature-card {
        padding: 1.5rem;
    }
}

/* ===== news_preview ===== */
.news-preview-section {
    padding: 80px 0;
    background-color: #0d0118;
    overflow: hidden;
}

.news-preview-section .section-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-preview-section .section-subtitle {
    font-family: 'Inter', sans-serif;
    color: #b0a4c0;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.6;
}

.news-preview-section .update-card {
    background-color: #1a0b2e;
    border: 1px solid rgba(157, 78, 221, 0.2);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.news-preview-section .update-card:hover {
    transform: translateY(-10px);
    border-color: #9d4edd;
    box-shadow: 0 10px 30px rgba(157, 78, 221, 0.3);
}

.news-preview-section .update-card-img-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.news-preview-section .update-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-preview-section .update-card:hover .update-card-img {
    transform: scale(1.1);
}

.news-preview-section .update-card-body {
    padding: 1.75rem;
}

.news-preview-section .update-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #9d4edd;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.news-preview-section .update-card-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.35rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.news-preview-section .update-card-text {
    color: #b0a4c0;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.news-preview-section .btn-all-news {
    display: inline-block;
    background: linear-gradient(135deg, #9d4edd, #c77dff);
    color: #ffffff;
    padding: 1rem 3rem;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(157, 78, 221, 0.3);
}

.news-preview-section .btn-all-news:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(157, 78, 221, 0.6);
    color: #ffffff;
}

.news-preview-section .disclaimer-text {
    color: rgba(176, 164, 192, 0.5);
    font-size: 0.75rem;
    max-width: 500px;
    margin: 0 auto;
}

/* ===== footer ===== */
.spinhavens-footer {
    background-color: #0d0118;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    position: relative;
}

.spinhavens-footer .disclaimer-block {
    background-color: #1a0b2e;
    border: 1px solid #9d4edd;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(157, 78, 221, 0.2);
}

.spinhavens-footer .disclaimer-icon {
    color: #9d4edd;
    font-size: 1.5rem;
}

.spinhavens-footer .disclaimer-text {
    color: #b0a4c0;
    font-size: 0.9rem;
    line-height: 1.6;
}

.spinhavens-footer .org-logo-img {
    width: 120px;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.spinhavens-footer .org-logo-link:hover .org-logo-img {
    transform: scale(1.05);
}

.spinhavens-footer .footer-logo {
    max-width: 150px;
}

.spinhavens-footer .footer-desc {
    color: #b0a4c0;
    font-size: 0.9rem;
    line-height: 1.6;
}

.spinhavens-footer .footer-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.spinhavens-footer .footer-link {
    color: #b0a4c0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.spinhavens-footer .footer-link:hover {
    color: #c77dff;
    padding-left: 5px;
}

.spinhavens-footer .contact-link {
    color: #b0a4c0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.spinhavens-footer .contact-link:hover {
    color: #c77dff;
}

.spinhavens-footer .footer-bottom {
    border-top-color: rgba(157, 78, 221, 0.2) !important;
}

.spinhavens-footer .copyright-text {
    color: #b0a4c0;
    font-size: 0.85rem;
}

.spinhavens-footer .age-verification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(13, 1, 24, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    backdrop-filter: blur(8px);
}

.spinhavens-footer .age-verification-modal {
    background-color: #1a0b2e;
    border: 2px solid #9d4edd;
    border-radius: 16px;
    padding: 2.5rem;
    max-width: 450px;
    width: 90%;
    text-align: center;
    box-shadow: 0 0 30px rgba(157, 78, 221, 0.4);
}

.spinhavens-footer .age-verification-title {
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.spinhavens-footer .age-verification-text {
    color: #b0a4c0;
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.spinhavens-footer .btn-verify {
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    border: none;
    transition: all 0.3s ease;
    min-width: 120px;
}

.spinhavens-footer .btn-verify-yes {
    background-color: #9d4edd;
    color: #ffffff;
}

.spinhavens-footer .btn-verify-yes:hover {
    background-color: #c77dff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(157, 78, 221, 0.4);
}

.spinhavens-footer .btn-verify-no {
    background-color: transparent;
    border: 1px solid #b0a4c0;
    color: #b0a4c0;
}

.spinhavens-footer .btn-verify-no:hover {
    background-color: rgba(176, 164, 192, 0.1);
    color: #ffffff;
}

@media (max-width: 767px) {
    .spinhavens-footer .footer-heading {
        font-size: 1rem;
        margin-top: 1rem;
    }

    .spinhavens-footer .org-logo-img {
        width: 100px;
    }

    .spinhavens-footer .age-verification-modal {
        padding: 1.5rem;
    }
}

/* ===== PAGE: about ===== */
.about-content-section {
  background-color: #0d0118;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  overflow: hidden;
}

.about-content-section .about-badge {
  background: rgba(157, 78, 221, 0.2);
  color: #c77dff;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid rgba(157, 78, 221, 0.3);
}

.about-content-section .about-heading {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
}

.about-content-section .about-paragraph {
  color: #b0a4c0;
  line-height: 1.7;
  font-size: 1.1rem;
}

.about-content-section .about-paragraph-large {
  color: #ffffff;
  font-size: 1.25rem;
  line-height: 1.6;
}

.about-content-section .about-image-container {
  position: relative;
}

.about-content-section .about-main-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border: 1px solid rgba(157, 78, 221, 0.3);
  position: relative;
  z-index: 2;
}

.about-content-section .about-glow-overlay {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(157, 78, 221, 0.3) 0%, transparent 70%);
  z-index: 1;
}

.about-content-section .about-card {
  background: #240e3f;
  border: 1px solid rgba(157, 78, 221, 0.2);
  padding: 2.5rem 2rem;
  border-radius: 12px;
  transition: all 0.3s ease-out;
}

.about-content-section .about-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(157, 78, 221, 0.2);
  border-color: #9d4edd;
}

.about-content-section .about-card-icon {
  font-size: 2.5rem;
  color: #9d4edd;
}

.about-content-section .about-card-title {
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

.about-content-section .about-card-text {
  color: #b0a4c0;
  margin-bottom: 0;
}

.about-content-section .about-mission-box {
  background: linear-gradient(135deg, #1a0b2e 0%, #240e3f 100%);
  border: 1px solid rgba(157, 78, 221, 0.4);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
}

.about-content-section .about-stat-item {
  padding: 1rem 2rem;
  text-align: center;
}

.about-content-section .about-stat-number {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: #9d4edd;
  line-height: 1;
}

.about-content-section .about-stat-label {
  font-size: 0.9rem;
  color: #b0a4c0;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .about-content-section .about-heading {
    font-size: 1.5rem !important;
  }
  .about-content-section .about-main-img {
    height: 300px;
  }
  .about-content-section .about-stat-number {
    font-size: 1.75rem;
  }
}

/* ===== PAGE: catalog ===== */
.catalog-grid {
  background-color: #0d0118;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.catalog-grid__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.catalog-grid__search-wrapper {
  position: relative;
}

.catalog-grid__search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #b0a4c0;
  z-index: 10;
}

.catalog-grid__search-input {
  background-color: #1a0b2e !important;
  border: 1px solid #240e3f !important;
  color: #ffffff !important;
  padding-left: 40px !important;
  height: 45px;
  border-radius: 8px;
}

.catalog-grid__search-input::placeholder {
  color: #b0a4c0 !important;
  opacity: 0.7;
}

.catalog-grid__sort-select {
  background-color: #1a0b2e !important;
  border: 1px solid #240e3f !important;
  color: #ffffff !important;
  height: 45px;
  border-radius: 8px;
}

.catalog-grid__filter-btn {
  background-color: #1a0b2e;
  border: 1px solid #240e3f;
  color: #b0a4c0;
  padding: 8px 20px;
  border-radius: 20px;
  transition: all 0.3s ease-out;
  font-weight: 500;
}

.catalog-grid__filter-btn:hover,
.catalog-grid__filter-btn.active {
  background-color: #9d4edd;
  border-color: #9d4edd;
  color: #ffffff;
  box-shadow: 0 0 15px rgba(157, 78, 221, 0.4);
}

.catalog-grid__card {
  background-color: #1a0b2e;
  border: 1px solid #240e3f;
  border-radius: 12px;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.3s ease-out, box-shadow 0.3s ease-out, border-color 0.3s ease-out;
  position: relative;
}

.catalog-grid__card:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: #9d4edd;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5), 0 0 15px rgba(157, 78, 221, 0.2);
}

.catalog-grid__image-container {
  position: relative;
  width: 100%;
  padding-top: 60%;
  overflow: hidden;
}

.catalog-grid__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.catalog-grid__card:hover .catalog-grid__image {
  transform: scale(1.1);
}

.catalog-grid__content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.catalog-grid__card-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #ffffff;
}

.catalog-grid__card-text {
  color: #b0a4c0;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 0;
}

.catalog-grid__card-link {
  text-decoration: none !important;
}

.catalog-grid__tag {
  font-size: 0.75rem;
  background: rgba(157, 78, 221, 0.1);
  color: #c77dff;
  padding: 4px 10px;
  border-radius: 4px;
  border: 1px solid rgba(157, 78, 221, 0.3);
}

.catalog-grid__play-btn {
  background-color: #9d4edd;
  color: #ffffff !important;
  border: none;
  padding: 6px 16px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: background-color 0.3s ease;
}

.catalog-grid__play-btn:hover {
  background-color: #c77dff;
  box-shadow: 0 0 10px rgba(157, 78, 221, 0.5);
}

.catalog-grid__no-results {
  color: #b0a4c0;
}

@media (max-width: 768px) {
  .catalog-grid__title {
    font-size: 1.25rem;
    text-align: center;
  }
  .catalog-grid__filters {
    justify-content: center !important;
  }
}

/* ===== PAGE: leaderboard ===== */
.leaderboard-section {
  padding: 80px 0;
  background-color: #0d0118;
  color: #ffffff;
}

.leaderboard-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.leaderboard-desc {
  color: #b0a4c0;
  max-width: 700px;
  font-family: 'Inter', sans-serif;
}

.leaderboard-filters {
  background-color: #1a0b2e;
  border-radius: 50px;
  display: inline-flex;
  border: 1px solid rgba(157, 78, 221, 0.3);
}

.filter-btn {
  border: none;
  background: transparent;
  color: #b0a4c0;
  padding: 10px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease-out;
}

.filter-btn:hover {
  color: #ffffff;
}

.filter-btn.active {
  background-color: #9d4edd;
  color: #ffffff;
  box-shadow: 0 0 15px rgba(157, 78, 221, 0.4);
}

.podium-card {
  background-color: #1a0b2e;
  border: 1px solid rgba(157, 78, 221, 0.2);
  border-radius: 16px;
  padding: 30px 20px;
  position: relative;
  transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
}

.podium-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(157, 78, 221, 0.2);
  border-color: #9d4edd;
}

.podium-rank {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.first-place .podium-rank { color: #ffffff; }
.second-place .podium-rank { color: #ffffff; }
.third-place .podium-rank { color: #ffffff; }

.podium-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #9d4edd;
  background: #240e3f;
}

.podium-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.player-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #ffffff;
}

.player-stats {
  background: rgba(157, 78, 221, 0.1);
  padding: 8px 15px;
  border-radius: 8px;
  display: inline-block;
}

.stat-label {
  display: block;
  font-size: 0.75rem;
  color: #ffffff;
  text-transform: uppercase;
}

.stat-value {
  font-weight: 700;
  color: #ffffff;
}

.table-container {
  background-color: #1a0b2e;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(157, 78, 221, 0.1);
}

.custom-table {
  margin-bottom: 0;
  color: #ffffff;
}

.custom-table thead th {
  background-color: #240e3f;
  color: #ffffff;
  border: none;
  padding: 20px;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
}

.custom-table tbody td {
  padding: 20px;
  border-bottom: 1px solid rgba(157, 78, 221, 0.1);
  vertical-align: middle;
  background-color: transparent;
  color: #ffffff;
}

.rank-cell {
  font-weight: 700;
  color: #ffffff;
}

.text-accent {
  color: #ffffff !important;
}

.table-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(157, 78, 221, 0.5);
}

.table-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.value-cell {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #ffffff;
}

@media (max-width: 768px) {
  .leaderboard-title { font-size: 1.5rem; }
  .leaderboard-desc { font-size: 0.9rem; }
  .podium-card { padding: 20px 10px; }
  .podium-avatar { width: 80px; height: 80px; }
}

/* ===== PAGE: guide ===== */
.guide-section { background-color: #0d0118; color: #ffffff; font-family: 'Inter', sans-serif; }.guide-section .text-secondary-custom { color: #b0a4c0; }.guide-section .accent-text { color: #9d4edd; }.guide-section .guide-title { font-family: 'Montserrat', sans-serif; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; }.guide-section .guide-card { background: #1a0b2e; border: 1px solid rgba(157, 78, 221, 0.2); border-radius: 12px; transition: transform 0.3s ease, box-shadow 0.3s ease; }.guide-section .guide-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(157, 78, 221, 0.15); border-color: #9d4edd; }.guide-section .guide-icon-box { width: 50px; height: 50px; background: #240e3f; border-radius: 8px; display: flex; align-items: center; justify-content: center; color: #9d4edd; font-size: 24px; }.guide-section .guide-image-container { position: relative; border: 2px solid #240e3f; }.guide-section .progress-bar-bg { width: 100%; height: 12px; background: #240e3f; border-radius: 6px; overflow: hidden; }.guide-section .progress-bar-fill { height: 100%; background: linear-gradient(90deg, #9d4edd, #c77dff); transition: width 1s ease-in-out; }.guide-section .accordion-button { background: #1a0b2e; color: #ffffff; border: 1px solid rgba(157, 78, 221, 0.2); border-radius: 8px !important; padding: 1.25rem; font-weight: 600; transition: all 0.3s ease; }.guide-section .accordion-button:not(.collapsed) { background: #240e3f; color: #9d4edd; box-shadow: none; border-color: #9d4edd; }.guide-section .accordion-button::after { filter: invert(1); }.guide-section .accordion-body { background: #0d0118; border: 1px solid rgba(157, 78, 221, 0.1); border-top: none; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; padding: 1.5rem; }.guide-section .accordion-item { margin-bottom: 1rem; }

/* ===== PAGE: news ===== */
.news-section {
  padding: 80px 0;
  background-color: #0d0118;
  color: #ffffff;
}

.news-section__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.news-section__lead {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  color: #b0a4c0;
  max-width: 800px;
  line-height: 1.6;
}

.news-section__filter-btn {
  border: 1px solid #9d4edd;
  background: transparent;
  color: #ffffff;
  padding: 10px 24px;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

.news-section__filter-btn:hover,
.news-section__filter-btn.active {
  background: #9d4edd;
  color: #ffffff;
  box-shadow: 0 0 15px rgba(157, 78, 221, 0.4);
}

.news-card {
  background-color: #1a0b2e;
  border: 1px solid rgba(157, 78, 221, 0.2);
  border-radius: 12px;
  height: 100%;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(157, 78, 221, 0.15);
  border-color: #9d4edd;
}

.news-card__img-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
}

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

.news-card:hover .news-card__img {
  transform: scale(1.1);
}

.news-card__badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #9d4edd;
  color: #ffffff;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 2;
}

.news-card__content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.news-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #c77dff;
}

.news-card__heading {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #ffffff;
  margin-bottom: 12px;
}

.news-card__text {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: #b0a4c0;
  line-height: 1.5;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .news-section__title {
    font-size: 1.8rem;
  }
  .news-card__img-wrapper {
    height: 180px;
  }
}

/* ===== PAGE: privacy ===== */
.privacy-section { background-color: #0d0118; color: #ffffff; font-family: 'Inter', sans-serif; overflow-x: hidden; }
.privacy-section .privacy-card { background-color: #1a0b2e; border: 1px solid rgba(157, 78, 221, 0.2); border-radius: 16px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); }
.privacy-section .privacy-title { font-family: 'Montserrat', sans-serif; font-weight: 800; color: #9d4edd; text-transform: uppercase; letter-spacing: 1px; }
.privacy-section .privacy-intro { color: #b0a4c0; font-size: 1.1rem; line-height: 1.6; border-left: 4px solid #9d4edd; padding-left: 20px; }
.privacy-section .privacy-content-item h2 { font-family: 'Montserrat', sans-serif; font-weight: 700; color: #c77dff; }
.privacy-section .privacy-content-item i { color: #9d4edd; font-size: 1.5rem; }
.privacy-section .privacy-content-item p { color: #b0a4c0; line-height: 1.7; }
.privacy-section .privacy-content-item ul { color: #b0a4c0; padding-left: 1.25rem; }
.privacy-section .privacy-content-item ul li { margin-bottom: 10px; position: relative; list-style-type: none; }
.privacy-section .privacy-content-item ul li::before { content: '•'; color: #9d4edd; font-weight: bold; display: inline-block; width: 1em; margin-left: -1em; }
.privacy-section .privacy-contact-cta { background: linear-gradient(135deg, #240e3f 0%, #1a0b2e 100%); border: 1px solid #9d4edd; border-radius: 16px; }
.privacy-section .btn-privacy-contact { background: #9d4edd; color: #ffffff; padding: 12px 30px; border-radius: 8px; font-weight: 600; text-decoration: none; transition: all 0.3s ease-out; border: none; }
.privacy-section .btn-privacy-contact:hover { background: #c77dff; transform: translateY(-2px); box-shadow: 0 5px 15px rgba(157, 78, 221, 0.4); color: #ffffff; }
@media (max-width: 767px) {
  .privacy-section .privacy-title { font-size: 1.5rem; }
  .privacy-section .privacy-intro { font-size: 0.95rem; }
  .privacy-section .privacy-content-item h2 { font-size: 1.2rem; }
}

/* ===== PAGE: terms ===== */
.terms-page {
  background-color: #0d0118;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
}

.terms-page .section-title {
  font-family: 'Montserrat', sans-serif;
  color: #9d4edd;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 2px solid rgba(157, 78, 221, 0.3);
  padding-bottom: 10px;
}

.terms-page .terms-card {
  background-color: #1a0b2e;
  border: 1px solid rgba(157, 78, 221, 0.15);
  border-radius: 12px;
  padding: 40px;
  margin-bottom: 30px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.terms-page .terms-card:hover {
  border-color: #9d4edd;
  box-shadow: 0 10px 30px rgba(157, 78, 221, 0.1);
}

.terms-page .sticky-sidebar {
  position: sticky;
  top: 100px;
  padding-right: 20px;
}

.terms-page .terms-nav {
  background: #1a0b2e;
  border-radius: 12px;
  padding: 24px;
  border: 1px solid rgba(157, 78, 221, 0.2);
}

.terms-page .nav-link {
  color: #b0a4c0;
  font-size: 0.95rem;
  padding: 10px 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.terms-page .nav-link i {
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.terms-page .nav-link:hover {
  color: #ffffff;
  background: rgba(157, 78, 221, 0.1);
}

.terms-page .nav-link.active {
  color: #ffffff;
  background: #9d4edd;
  font-weight: 600;
}

.terms-page .nav-link.active i {
  color: #ffffff;
}

.terms-page .custom-list {
  list-style: none;
  padding-left: 0;
  margin-top: 15px;
}

.terms-page .custom-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
}

.terms-page .custom-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #9d4edd;
  font-weight: bold;
}

.terms-page .accent-link {
  color: #c77dff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.terms-page .accent-link:hover {
  color: #9d4edd;
  text-decoration: underline;
}

@media (max-width: 991px) {
  .terms-page .terms-card {
    padding: 25px;
  }
  .terms-page h2 {
    font-size: 1.25rem;
  }
}

/* ===== PAGE: disclaimer ===== */
.disclaimer-section {
  background-color: #0d0118;
  font-family: 'Inter', sans-serif;
  color: #b0a4c0;
  line-height: 1.6;
}
.disclaimer-section .disclaimer-card {
  background-color: #1a0b2e;
  border: 1px solid rgba(157, 78, 221, 0.3);
  border-radius: 16px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.disclaimer-section .disclaimer-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.disclaimer-section .text-accent {
  color: #9d4edd !important;
}
.disclaimer-section .disclaimer-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #9d4edd, #c77dff);
  border-radius: 2px;
}
.disclaimer-section .disclaimer-item h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  border-bottom: 1px solid rgba(157, 78, 221, 0.1);
  padding-bottom: 0.5rem;
}
.disclaimer-section .disclaimer-item p {
  font-size: 1rem;
  color: #b0a4c0;
}
.disclaimer-section .border-accent {
  border: 1px dashed rgba(157, 78, 221, 0.4);
  border-radius: 8px;
  background: rgba(157, 78, 221, 0.05);
}
.disclaimer-section .italic {
  font-style: italic;
}
@media (max-width: 767px) {
  .disclaimer-section .disclaimer-card {
    padding: 1.5rem;
  }
  .disclaimer-section .disclaimer-title {
    font-size: 1.25rem !important;
  }
  .disclaimer-section .disclaimer-item h2 {
    font-size: 1rem !important;
  }
  .disclaimer-section .disclaimer-item p {
    font-size: 0.9rem;
  }
}

/* ===== PAGE: rgp ===== */
.rgp-policy-wrapper { background-color: #0d0118; color: #ffffff; font-family: 'Inter', sans-serif; } .rgp-policy-wrapper h1, .rgp-policy-wrapper h2, .rgp-policy-wrapper h3 { font-family: 'Montserrat', sans-serif; color: #ffffff; } .rgp-policy-wrapper .text-secondary-custom { color: #b0a4c0; } .rgp-header-card { background: #1a0b2e; border: 1px solid rgba(157, 78, 221, 0.3); border-radius: 16px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); position: relative; overflow: hidden; } .rgp-header-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: linear-gradient(90deg, #9d4edd, #c77dff); } .rgp-icon-box { display: inline-flex; align-items: center; justify-content: center; width: 80px; height: 80px; background: rgba(157, 78, 221, 0.1); border-radius: 50%; border: 2px solid #9d4edd; color: #9d4edd; font-size: 2.5rem; } .rgp-info-card { background: #240e3f; border: 1px solid rgba(157, 78, 221, 0.2); border-radius: 12px; transition: transform 0.3s ease, box-shadow 0.3s ease; } .rgp-info-card:hover { transform: translateY(-5px); box-shadow: 0 8px 20px rgba(157, 78, 221, 0.2); } .rgp-info-card i { font-size: 2rem; color: #c77dff; } .rgp-accordion-section .accordion-item { background-color: #1a0b2e; border: 1px solid rgba(157, 78, 221, 0.2); margin-bottom: 10px; border-radius: 8px; overflow: hidden; } .rgp-accordion-section .accordion-button { background-color: #1a0b2e; color: #ffffff; font-weight: 600; padding: 20px; border: none; box-shadow: none; } .rgp-accordion-section .accordion-button:not(.collapsed) { background-color: #240e3f; color: #c77dff; } .rgp-accordion-section .accordion-button::after { filter: invert(1); } .rgp-accordion-section .accordion-body { background-color: #240e3f; color: #b0a4c0; border-top: 1px solid rgba(157, 78, 221, 0.1); line-height: 1.6; } .rgp-help-banner { background: linear-gradient(135deg, #240e3f 0%, #1a0b2e 100%); border-radius: 12px; border: 1px solid #9d4edd; } .btn-primary-custom { background: linear-gradient(90deg, #9d4edd, #c77dff); border: none; color: #ffffff; font-weight: 700; border-radius: 8px; transition: all 0.3s ease; } .btn-primary-custom:hover { background: linear-gradient(90deg, #c77dff, #9d4edd); transform: scale(1.05); color: #ffffff; box-shadow: 0 0 15px rgba(157, 78, 221, 0.5); } @media (max-width: 768px) { .rgp-policy-wrapper h1 { font-size: 1.5rem; } .rgp-policy-wrapper h2 { font-size: 1.25rem; } .rgp-header-card { padding: 1.5rem !important; } }

.comment-card.main-comment-item {
    background: rgba(36, 14, 63, 0.6);
    border: 1px solid rgba(157, 78, 221, 0.2);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease-out;
    position: relative;
    overflow: hidden;
}

.comment-card.main-comment-item:hover {
    border-color: #9d4edd;
    box-shadow: 0 0 20px rgba(157, 78, 221, 0.15);
    transform: translateY(-2px);
}

.comment-avatar-wrapper {
    flex-shrink: 0;
}

.avatar-initials {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #9d4edd 0%, #c77dff 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    box-shadow: 0 4px 12px rgba(157, 78, 221, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.comment-author-name {
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
}

.comment-timestamp {
    font-family: 'Inter', sans-serif;
    color: #b0a4c0;
    font-size: 0.85rem;
}

.comment-rating {
    color: #f1c40f;
    font-size: 0.9rem;
    display: flex;
    gap: 2px;
}

.comment-content-text {
    font-family: 'Inter', sans-serif;
    color: #ffffff;
    line-height: 1.6;
    font-size: 1rem;
}

.btn-comment-action {
    background: transparent;
    border: none;
    color: #b0a4c0;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0;
    transition: color 0.2s ease;
}

.btn-comment-action:hover {
    color: #c77dff;
}

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

.reply-comment-item {
    background: rgba(26, 11, 46, 0.8);
    border: 1px solid rgba(199, 125, 255, 0.1);
    border-radius: 10px;
    position: relative;
}

.reply-visual-connector {
    position: absolute;
    left: -24px;
    top: -20px;
    width: 20px;
    height: 50px;
    border-left: 2px solid rgba(157, 78, 221, 0.3);
    border-bottom: 2px solid rgba(157, 78, 221, 0.3);
    border-bottom-left-radius: 12px;
    z-index: -1;
}

.avatar-sm {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
}

.reply-comment-item .comment-author-name {
    font-size: 1rem;
}

.reply-comment-item .comment-content-text {
    font-size: 0.95rem;
    color: #b0a4c0;
}

@media (max-width: 576px) {
    .reply-comment-item {
        margin-left: 1.5rem !important;
    }

    .reply-visual-connector {
        left: -15px;
        width: 12px;
    }
}


/* ===== PAGE TEMPLATE: games ===== */
.game-title-header {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
}

.game-subtitle-header {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #c77dff;
    font-size: 1.1rem;
}

.game-frame-container {
    background: #1a0b2e;
    border: 2px solid #240e3f;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.game-iframe {
    width: 100%;
    height: 550px;
    border: none;
    background: #000;
}

.game-controls-bar {
    background: #240e3f;
    border-top: 1px solid rgba(157, 78, 221, 0.3);
}

.game-info-badge {
    color: #b0a4c0;
    font-size: 0.9rem;
}

.btn-game-control {
    background: #9d4edd;
    color: #ffffff;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-game-control:hover {
    background: #c77dff;
    transform: scale(1.02);
}

.details-card,
.specs-sidebar,
.comments-wrapper {
    background: #1a0b2e;
    border-radius: 16px;
    border: 1px solid #240e3f;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    font-weight: 800;
    font-size: 1.25rem;
    text-transform: uppercase;
    border-left: 4px solid #9d4edd;
    padding-left: 15px;
}

.game-main-content p {
    font-family: 'Inter', sans-serif;
    color: #b0a4c0;
    line-height: 1.8;
}

.specs-list span:first-child {
    color: #b0a4c0;
    font-size: 0.9rem;
}

.btn-share {
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.3s;
}

.fb-share {
    background: #1877f2;
}

.tw-share {
    background: #1da1f2;
}

.btn-share:hover {
    opacity: 0.85;
    color: #fff;
}

.comment-card {
    background: #240e3f;
    border-radius: 12px;
    border: 1px solid rgba(157, 78, 221, 0.1);
    position: relative;
}

.comment-avatar-wrapper {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.avatar-initials {
    width: 100%;
    height: 100%;
    background: #9d4edd;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.avatar-sm {
    width: 40px;
    height: 40px;
    font-size: 1rem;
}

.comment-author-name {
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    font-weight: 700;
}

.comment-timestamp {
    font-size: 0.8rem;
    color: #b0a4c0;
}

.comment-rating i {
    color: #f1c40f;
    font-size: 0.85rem;
}

.comment-content-text {
    font-size: 0.95rem;
    color: #b0a4c0;
    line-height: 1.5;
}

.btn-comment-action {
    background: transparent;
    border: none;
    color: #9d4edd;
    font-size: 0.85rem;
    padding: 0;
    transition: color 0.3s;
}

.btn-comment-action:hover {
    color: #c77dff;
}

.reply-visual-connector {
    position: absolute;
    left: -25px;
    top: 0;
    bottom: 50%;
    width: 20px;
    border-left: 2px solid #240e3f;
    border-bottom: 2px solid #240e3f;
    border-bottom-left-radius: 12px;
}

.form-control {
    background: #0d0118;
    border: 1px solid #240e3f;
    color: #ffffff;
    padding: 12px;
    border-radius: 8px;
}

.form-control:focus {
    background: #0d0118;
    border-color: #9d4edd;
    box-shadow: none;
    color: #ffffff;
}

.btn-hero-primary {
    background: #9d4edd;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-hero-primary:hover {
    background: #c77dff;
    transform: translateY(-2px);
}

.comment-form-block h3 {
    color: #ffffff;
}
.comment-form-block .form-control::placeholder {
    color: #ffffff;
}
.comment-form-block .form-control {
    color: #ffffff;
}

/* Fullscreen game styles */
.game-frame-container:fullscreen {
    width: 100vw;
    height: 100vh;
    border-radius: 0;
    border: none;
    display: flex;
    flex-direction: column;
}
.game-frame-container:fullscreen .game-iframe {
    width: 100%;
    height: 100%;
    flex: 1;
}
.game-frame-container:fullscreen .game-controls-bar {
    flex-shrink: 0;
}
.game-frame-container:-webkit-full-screen {
    width: 100vw;
    height: 100vh;
    border-radius: 0;
    border: none;
    display: flex;
    flex-direction: column;
}
.game-frame-container:-webkit-full-screen .game-iframe {
    width: 100%;
    height: 100%;
    flex: 1;
}
.game-frame-container:-webkit-full-screen .game-controls-bar {
    flex-shrink: 0;
}
.game-frame-container:-moz-full-screen {
    width: 100vw;
    height: 100vh;
    border-radius: 0;
    border: none;
    display: flex;
    flex-direction: column;
}
.game-frame-container:-moz-full-screen .game-iframe {
    width: 100%;
    height: 100%;
    flex: 1;
}
.game-frame-container:-moz-full-screen .game-controls-bar {
    flex-shrink: 0;
}
.game-frame-container:-ms-fullscreen {
    width: 100vw;
    height: 100vh;
    border-radius: 0;
    border: none;
    display: flex;
    flex-direction: column;
}
.game-frame-container:-ms-fullscreen .game-iframe {
    width: 100%;
    height: 100%;
    flex: 1;
}
.game-frame-container:-ms-fullscreen .game-controls-bar {
    flex-shrink: 0;
}

@media (max-width: 767px) {
    .game-iframe {
        height: 350px;
    }

    .reply-comment-item {
        margin-left: 20px !important;
    }

    .game-title-header {
        font-size: 1.5rem;
    }
}