/* ===== navbar ===== */
.glitch-blast-nav {
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 245, 255, 0.2);
    z-index: 1050
}

.glitch-blast-nav .navbar-brand img {
    height: 40px;
    width: auto
}

.glitch-blast-nav .nav-link {
    color: #CBD5E1;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    transition: color 0.2s
}

.glitch-blast-nav .nav-link:hover {
    color: #00F5FF;
    text-shadow: 0 0 8px rgba(0, 245, 255, 0.6)
}

.glitch-blast-nav .navbar-toggler {
    border-color: rgba(0, 245, 255, 0.3);
    padding: 4px 8px
}

.glitch-blast-nav .navbar-toggler-icon {
    filter: invert(1)
}

:root {
    --primary: #FF4D00;
    --secondary: #8B5CF6;
    --accent: #00F5FF;
    --bg-main: #050508;
    --bg-surface: #12121A;
    --bg-elevated: #1C1C28;
    --bg-overlay: rgba(10, 10, 15, 0.85);
    --text-primary: #FFFFFF;
    --text-secondary: #CBD5E1;
    --text-muted: #64748B !important;
    --dragon-fire: linear-gradient(135deg, #FF4D00 0%, #FF9000 100%);
    --neon-depth: radial-gradient(circle at top left, rgba(139, 92, 246, 0.15), transparent);
    --volumetric-surface: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    --neon-border: 1px solid rgba(0, 245, 255, 0.3);
    --volumetric-border: 1px solid rgba(255, 255, 255, 0.1);
    --shadow-neon: 0 0 20px rgba(255, 77, 0, 0.4);
    --shadow-volumetric: 0 20px 40px rgba(0, 0, 0, 0.6), inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

.glitch-blast-theme {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

.secondary-font {
    font-family: 'Inter', sans-serif;
}

.volumetric-panel {
    background: var(--bg-surface);
    border: var(--volumetric-border);
    box-shadow: var(--shadow-volumetric);
    border-radius: 16px;
}

.neon-glow-primary {
    box-shadow: var(--shadow-neon);
}

.dragon-gradient-text {
    background: var(--dragon-fire);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.container-custom {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-spacing {
    padding-top: 64px;
    padding-bottom: 64px;
}

* {
    box-sizing: border-box;
    transition: none !important;
    animation: none !important;
}

.btn-volumetric-primary {
    background: var(--primary);
    color: var(--text-primary);
    border: none;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 800;
    box-shadow: 0 4px 15px rgba(255, 77, 0, 0.3);
}

.btn-volumetric-secondary {
    background: transparent;
    color: var(--secondary);
    border: 2px solid var(--secondary);
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 800;
}

/* ===== hero ===== */
.glitch-blast-hero {
    background-color: #050508;
    overflow: hidden;
}

.glitch-blast-hero .hero-slide-wrapper {
    min-height: 100vh;
    width: 100%;
}

.glitch-blast-hero .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.glitch-blast-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 15, 0.75);
    z-index: 2;
}

.glitch-blast-hero .hero-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    line-height: 1.2;
    font-size: 2.5rem;
}

@media (min-width: 768px) {
    .glitch-blast-hero .hero-title {
        font-size: 3.5rem;
    }
}

.glitch-blast-hero .text-fire {
    color: #FF4D00;
    text-shadow: 0 0 15px rgba(255, 77, 0, 0.6);
}

.glitch-blast-hero .text-neon {
    color: #00F5FF;
    text-shadow: 0 0 15px rgba(0, 245, 255, 0.6);
}

.glitch-blast-hero .hero-text {
    font-family: 'Inter', sans-serif;
    color: #CBD5E1;
    font-size: 1.125rem;
    max-width: 540px;
    line-height: 1.6;
}

.glitch-blast-hero .contact-info-panel {
    background: rgba(28, 28, 40, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), inset 0 1px 1px rgba(255, 255, 255, 0.1);
    max-width: 400px;
}

.glitch-blast-hero .icon-box {
    width: 40px;
    height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(139, 92, 246, 0.2);
    border-radius: 8px;
    color: #8B5CF6;
}

.glitch-blast-hero .icon-box svg {
    width: 20px;
    height: 20px;
}

.glitch-blast-hero .text-muted-custom {
    color: #64748B;
}

.glitch-blast-hero .mascot-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.glitch-blast-hero .mascot-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(255, 77, 0, 0.2));
}

.glitch-blast-hero .carousel-item {
    transition: none !important;
}

.glitch-blast-hero .carousel-control-prev,
.glitch-blast-hero .carousel-control-next {
    width: 5%;
    z-index: 10;
}

.glitch-blast-hero .carousel-control-prev-icon,
.glitch-blast-hero .carousel-control-next-icon {
    background-color: rgba(28, 28, 40, 0.8);
    border-radius: 50%;
    padding: 20px;
    background-size: 50%;
}

/* ===== games-list ===== */
.games-list-section {
    background-color: #050508;
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    overflow: hidden;
}

.games-list-section .games-list-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #FFFFFF !important;
}

.games-list-section .games-list-subtitle {
    color: #CBD5E1;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.games-list-section .game-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.games-list-section .game-card {
    background: rgba(28, 28, 40, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: border-color 0.1s ease, box-shadow 0.1s ease;
    position: relative;
}

.games-list-section .game-card:hover {
    border-color: #00F5FF;
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.3);
}

.games-list-section .game-card-image-wrapper {
    width: 100%;
    padding-top: 100%;
    position: relative;
    overflow: hidden;
}

.games-list-section .game-card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.games-list-section .game-card-content {
    padding: 1.25rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.games-list-section .game-card-title {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.3;
    color: #FFFFFF !important;
}

.games-list-section .game-progress-container {
    margin-top: auto;
}

.games-list-section .game-progress-label {
    font-size: 0.75rem;
    color: #64748B;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.games-list-section .game-progress-bar-bg {
    height: 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 0.25rem;
}

.games-list-section .game-progress-bar-fill {
    height: 100%;
    background: #FF4D00;
    border-radius: 3px;
}

.games-list-section .game-progress-value {
    font-size: 0.75rem;
    color: #FF4D00;
    font-weight: 500;
    text-align: right;
}

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

    .games-list-section .games-list-subtitle {
        font-size: 0.9rem;
    }

    .games-list-section .game-card-title {
        font-size: 1rem;
    }
}

/* ===== about-short ===== */
.about-short-block {
    background-color: #050508;
    position: relative;
    overflow: hidden;
}

.about-short-block .about-short-content {
    background: #12121A;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), inset 0 1px 1px rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.about-short-block .about-short-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.25rem;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.2;
}

.about-short-block .about-short-accent-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #FF4D00 0%, #FF9000 100%);
    border-radius: 2px;
}

.about-short-block .about-short-description {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #CBD5E1;
}

.about-short-block .about-short-btn {
    background: #FF4D00;
    color: #FFFFFF;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: none;
    box-shadow: 0 4px 15px rgba(255, 77, 0, 0.3);
}

.about-short-block .about-short-btn:hover {
    background: #FF6A00;
    color: #FFFFFF;
    box-shadow: 0 0 20px rgba(255, 77, 0, 0.5);
}

.about-short-block .about-short-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.2);
    border: 1px solid rgba(0, 245, 255, 0.2);
}

.about-short-block .about-short-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    display: block;
}

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

    .about-short-block .about-short-description {
        font-size: 1rem;
    }

    .about-short-block .about-short-image {
        min-height: 300px;
    }
}

/* ===== rooms-lobbies ===== */
.rooms-lobbies {
    background-color: #050508;
    color: #FFFFFF;
}

.rooms-lobbies .rooms-lobbies-title {
    color: #FF4D00;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.rooms-lobbies .rooms-lobbies-subtitle {
    color: #CBD5E1;
    font-size: 1.1rem;
}

.rooms-lobbies .rooms-lobbies-filter {
    background: transparent;
    border: 2px solid #8B5CF6;
    color: #8B5CF6;
    border-radius: 50px;
    padding: 8px 24px;
    font-weight: 600;
    transition: none;
}

.rooms-lobbies .rooms-lobbies-filter.active,
.rooms-lobbies .rooms-lobbies-filter:hover {
    background: #8B5CF6;
    color: #FFFFFF;
}

.rooms-lobbies .lobby-card {
    background: rgba(28, 28, 40, 0.8);
    border: 1px solid rgba(0, 245, 255, 0.3);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: none;
}

.rooms-lobbies .lobby-card:hover {
    border-color: #00F5FF;
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.4);
}

.rooms-lobbies .lobby-image-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.rooms-lobbies .lobby-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rooms-lobbies .lobby-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #FF4D00;
    color: #FFFFFF;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
}

.rooms-lobbies .lobby-text {
    color: #64748B;
    font-size: 0.95rem;
    line-height: 1.5;
}

.rooms-lobbies .btn-primary {
    background-color: #FF4D00;
    border: none;
    font-weight: 800;
    padding: 12px;
    box-shadow: 0 4px 15px rgba(255, 77, 0, 0.3);
    transition: none;
}

.rooms-lobbies .btn-primary:hover {
    background-color: #FF6A00;
    filter: brightness(1.1);
}

/* ===== support-short ===== */
.support-short {
    background-color: #050508;
    position: relative;
    overflow: hidden;
}

.support-short .support-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    color: #FFFFFF !important;
}

.support-short .support-subtitle {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #CBD5E1 !important;
}

.support-short .support-card {
    background: rgba(28, 28, 40, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), inset 0 1px 1px rgba(255, 255, 255, 0.1);
    transition: border-color 0s, box-shadow 0s;
    cursor: default;
}

.support-short .support-card:hover {
    border-color: rgba(0, 245, 255, 0.6);
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.2);
}

.support-short .support-icon-wrapper {
    width: 64px;
    height: 64px;
    background: rgba(255, 77, 0, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(255, 77, 0, 0.3);
}

.support-short .support-icon {
    width: 32px;
    height: 32px;
    color: #FF4D00;
}

.support-short .support-link {
    color: #00F5FF !important;
    font-size: 1.1rem;
    transition: color 0s;
}

.support-short .support-link:hover {
    color: #FFFFFF !important;
    text-shadow: 0 0 8px rgba(0, 245, 255, 0.8);
}

@media (max-width: 767.98px) {
    .support-short .support-title {
        font-size: 1.5rem;
    }

    .support-short .support-subtitle {
        font-size: 0.875rem;
    }
}

/* ===== footer ===== */
.glitch-blast-footer {
    background-color: #12121A;
    color: #CBD5E1;
    font-family: 'Montserrat', sans-serif;
    border-top: 3px solid #FF4D00;
    position: relative;
    overflow: hidden;
}

.glitch-blast-footer .footer-logo {
    max-width: 50px;
    height: auto;
    display: block;
}

.glitch-blast-footer .footer-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #64748B;
}

.glitch-blast-footer .footer-title {
    color: #FFFFFF;
    font-size: 1.25rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

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

.glitch-blast-footer .footer-links a {
    color: #CBD5E1;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.glitch-blast-footer .footer-links a:hover {
    color: #00F5FF;
    text-shadow: 0 0 8px rgba(0, 245, 255, 0.6);
}

.glitch-blast-footer .footer-contact a {
    color: #CBD5E1;
    text-decoration: none;
    transition: color 0.2s ease;
}

.glitch-blast-footer .footer-contact a:hover {
    color: #FF4D00;
}

.glitch-blast-footer .contact-icon {
    width: 20px;
    height: 20px;
    color: #FF4D00;
    flex-shrink: 0;
}

.glitch-blast-footer .footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
}

.glitch-blast-footer .footer-copyright {
    font-size: 0.85rem;
    color: #64748B;
}

@media (max-width: 767.98px) {
    .glitch-blast-footer .footer-title {
        font-size: 1.1rem;
        margin-bottom: 1rem !important;
    }

    .glitch-blast-footer .footer-brand {
        text-align: center;
    }

    .glitch-blast-footer .footer-logo {
        margin: 0 auto 1rem auto;
    }

    .glitch-blast-footer .footer-links,
    .glitch-blast-footer .footer-contact {
        text-align: center;
    }

    .glitch-blast-footer .d-flex {
        justify-content: center;
    }
}

/* ===== PAGE: about ===== */
.about-content-section {
  background-color: #050508;
  color: #FFFFFF;
  font-family: 'Inter', sans-serif;
}
.about-content-section .text-primary {
  color: #FF4D00 !important;
  font-family: 'Montserrat', sans-serif;
}
.about-content-section .text-secondary {
  color: #CBD5E1 !important;
}
.about-content-section .text-accent {
  color: #00F5FF !important;
}
.about-content-section .volumetric-card {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), inset 0 1px 1px rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.about-content-section__card {
  background: rgba(28, 28, 40, 0.8);
  border-radius: 16px;
  border: 1px solid rgba(0, 245, 255, 0.3);
  transition: border-color 0s;
}
.about-content-section__card:hover {
  border-color: #00F5FF;
  box-shadow: 0 0 20px rgba(255, 77, 0, 0.2);
}
.about-content-section__banner {
  background: linear-gradient(135deg, rgba(28, 28, 40, 0.9) 0%, rgba(5, 5, 8, 0.95) 100%);
  border: 1px solid rgba(139, 92, 246, 0.3);
}
.about-content-section__banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at top left, rgba(139, 92, 246, 0.15), transparent);
  pointer-events: none;
}
.about-content-section h1, .about-content-section h2, .about-content-section h3 {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.2;
}
.about-content-section p {
  line-height: 1.6;
}

/* ===== PAGE: games ===== */
.games-catalog {
  background-color: #050508;
  min-height: 80vh;
}
.games-catalog .catalog-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  color: #FFFFFF !important;
}
.games-catalog .catalog-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  opacity: 0.8;
}
.games-catalog .game-card {
  background: rgba(28, 28, 40, 0.8);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease-out;
}
.games-catalog .game-card:hover {
  border-color: #00F5FF;
  box-shadow: 0 0 20px rgba(0, 245, 255, 0.3);
  transform: translateY(-5px);
}
.games-catalog .game-image-container {
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
}
.games-catalog .game-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.games-catalog .game-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #FFFFFF !important;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.games-catalog .category-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(139, 92, 246, 0.2);
  color: #8B5CF6;
  font-size: 0.75rem;
  border-radius: 100px;
  font-weight: 600;
}
.games-catalog .js-search-input:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(255, 77, 0, 0.5);
  background: rgba(28, 28, 40, 1) !important;
}
.games-catalog .js-search-input::placeholder {
  color: #64748B;
}
.games-catalog .js-load-more {
  background: #FF4D00;
  border: none;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(255, 77, 0, 0.3);
  transition: all 0.2s;
}
.games-catalog .js-load-more:hover {
  background: #e64500;
  transform: scale(1.05);
}
@media (max-width: 767px) {
  .games-catalog .catalog-title {
    font-size: 1.5rem !important;
  }
  .games-catalog .catalog-subtitle {
    font-size: 0.875rem;
  }
}

/* ===== PAGE: chat ===== */
.chat-info-section {
  background-color: #050508;
  color: #FFFFFF;
  font-family: 'Inter', sans-serif;
  overflow: hidden;
}

.chat-info-section__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 0 15px rgba(255, 77, 0, 0.4);
}

.chat-info-section__subtitle {
  color: #CBD5E1;
  max-width: 700px;
}

.chat-info-section__card {
  background: rgba(28, 28, 40, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  height: 100%;
  transition: border-color 0.2s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.chat-info-section__card:hover {
  border-color: #00F5FF;
}

.chat-info-section__icon-box {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #FF4D00 0%, #FF9000 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(255, 77, 0, 0.3);
}

.chat-info-section__icon {
  width: 28px;
  height: 28px;
  color: #FFFFFF;
}

.chat-info-section__card-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.chat-info-section__card-text {
  color: #CBD5E1;
  font-size: 0.95rem;
  line-height: 1.6;
}

.chat-info-section__section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: #FFFFFF;
  position: relative;
  display: inline-block;
}

.chat-info-section__description {
  color: #CBD5E1;
  font-size: 1.1rem;
  line-height: 1.7;
}

.chat-info-section__list {
  list-style: none;
  padding: 0;
}

.chat-info-section__list-item {
  display: flex;
  align-items: center;
  color: #FFFFFF;
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.chat-info-section__bullet {
  width: 8px;
  height: 8px;
  background-color: #00F5FF;
  border-radius: 50%;
  margin-right: 12px;
  box-shadow: 0 0 10px #00F5FF;
}

.chat-info-section__content-img-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(0, 245, 255, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.chat-info-section__content-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.chat-info-section__guidelines {
  background: #12121A;
  border-radius: 24px;
  border: 1px solid rgba(139, 92, 246, 0.2);
  position: relative;
}

.chat-info-section__guidelines::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at top left, rgba(139, 92, 246, 0.05), transparent);
  pointer-events: none;
}

.chat-info-section__guideline-item {
  padding: 1rem;
}

.chat-info-section__guideline-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: #8B5CF6;
  margin-bottom: 0.5rem;
}

.chat-info-section__guideline-text {
  color: #64748B;
  font-size: 0.9rem;
  margin-bottom: 0;
}

.chat-info-section__accordion-item {
  background: rgba(28, 28, 40, 0.8) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 12px !important;
  margin-bottom: 1rem;
  overflow: hidden;
}

.chat-info-section__accordion-btn {
  background: transparent !important;
  color: #FFFFFF !important;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  padding: 1.25rem;
  box-shadow: none !important;
}

.chat-info-section__accordion-btn:not(.collapsed) {
  color: #FF4D00 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.chat-info-section__accordion-btn::after {
  filter: invert(1);
}

.chat-info-section__accordion-body {
  color: #CBD5E1;
  background: transparent;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .chat-info-section__title {
    font-size: 1.75rem;
  }
  .chat-info-section__subtitle {
    font-size: 1rem;
  }
  .chat-info-section__content-img {
    height: 250px;
  }
}

/* ===== PAGE: rooms ===== */
.lobby-list-section {
  background-color: #050508;
  min-height: 100vh;
  font-family: 'Inter', sans-serif;
  color: #FFFFFF;
}

.lobby-list-section .lobby-list-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  color: #FF4D00;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.lobby-list-section .lobby-list-subtitle {
  font-size: 1.125rem;
  color: #CBD5E1;
  max-width: 700px;
  line-height: 1.6;
}

.lobby-list-section .lobby-filter-btn {
  background: rgba(28, 28, 40, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #CBD5E1;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.lobby-list-section .lobby-filter-btn.active {
  background: #FF4D00;
  color: #FFFFFF;
  border-color: #FF4D00;
  box-shadow: 0 0 15px rgba(255, 77, 0, 0.4);
}

.lobby-list-section .lobby-filter-btn:hover:not(.active) {
  border-color: #00F5FF;
  color: #00F5FF;
}

.lobby-list-section .room-card {
  background: rgba(28, 28, 40, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  height: 100%;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}

.lobby-list-section .room-card:hover {
  border-color: #00F5FF;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

.lobby-list-section .room-image-container {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.lobby-list-section .room-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lobby-list-section .room-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(18, 18, 26, 0.85);
  backdrop-filter: blur(4px);
  color: #00F5FF;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 8px;
  border: 1px solid rgba(0, 245, 255, 0.3);
  text-transform: uppercase;
}

.lobby-list-section .room-content {
  padding: 24px;
}

.lobby-list-section .room-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.lobby-list-section .room-desc {
  font-size: 0.95rem;
  color: #CBD5E1;
  line-height: 1.5;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.lobby-list-section .room-info {
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.lobby-list-section .room-icon {
  width: 18px;
  height: 18px;
  color: #8B5CF6;
}

.lobby-list-section .room-meta {
  font-size: 0.8rem;
  color: #64748B;
}

@media (max-width: 768px) {
  .lobby-list-section .lobby-list-title {
    font-size: 1.75rem;
  }
  .lobby-list-section .lobby-list-subtitle {
    font-size: 0.95rem;
  }
  .lobby-list-section .room-image-container {
    height: 180px;
  }
}

/* ===== PAGE: faq ===== */
.faq-list-block {
  background-color: #050508;
  color: #FFFFFF;
  font-family: 'Inter', sans-serif;
  position: relative;
  overflow: hidden;
}

.faq-list-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top left, rgba(139, 92, 246, 0.05), transparent);
  pointer-events: none;
}

.faq-list-block h2 {
  font-family: 'Montserrat', sans-serif;
  letter-spacing: -1px;
}

.faq-list-block .search-container input {
  background-color: #12121A;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  border-radius: 12px;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.3);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.faq-list-block .search-container input:focus {
  background-color: #1C1C28;
  border-color: #00F5FF;
  box-shadow: 0 0 15px rgba(0, 245, 255, 0.2);
  outline: none;
}

.faq-list-block .search-container input::placeholder {
  color: #64748B;
}

.faq-list-block .js-filter-btn {
  border-radius: 50px;
  font-weight: 500;
  border: 1px solid rgba(139, 92, 246, 0.3);
  color: #CBD5E1;
  transition: none;
}

.faq-list-block .js-filter-btn:hover,
.faq-list-block .js-filter-btn.active {
  background-color: #8B5CF6;
  border-color: #8B5CF6;
  color: #FFFFFF;
  box-shadow: 0 0 10px rgba(139, 92, 246, 0.4);
}

.faq-list-block .accordion-item {
  background-color: rgba(28, 28, 40, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px !important;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.faq-list-block .accordion-button {
  background-color: transparent;
  color: #FFFFFF;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  box-shadow: none;
  padding-right: 3rem;
}

.faq-list-block .accordion-button:not(.collapsed) {
  background-color: rgba(255, 77, 0, 0.05);
  color: #FF4D00;
}

.faq-list-block .accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2300F5FF' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19.5 8.25l-7.5 7.5-7.5-7.5' /%3E%3C/svg%3E");
  background-size: 1.5rem;
  transition: none;
}

.faq-list-block .accordion-button:not(.collapsed)::after {
  transform: rotate(-180deg);
}

.faq-list-block .accordion-body {
  color: #CBD5E1;
  line-height: 1.8;
  background-color: rgba(0, 0, 0, 0.2);
}

.faq-list-block .accordion-item:hover {
  border-color: rgba(0, 245, 255, 0.3);
}

.faq-list-block .accordion-header span {
  color: #FF4D00;
}

@media (max-width: 768px) {
  .faq-list-block h2.display-5 {
    font-size: 1.75rem;
  }
  .faq-list-block .accordion-button {
    font-size: 0.95rem;
    padding: 1.25rem 1rem;
  }
}

/* ===== PAGE: support ===== */
.help-center-block { background-color: #050508; font-family: 'Inter', sans-serif; color: #FFFFFF; }
.help-center-block__title { font-family: 'Montserrat', sans-serif; font-weight: 800; color: #FF4D00; font-size: 2.5rem; margin-bottom: 1rem; text-transform: uppercase; }
.help-center-block__subtitle { color: #CBD5E1; font-size: 1.1rem; max-width: 800px; margin: 0 auto; }
.help-center-block__search-wrapper { background: #12121A; border: 1px solid rgba(0, 245, 255, 0.3); border-radius: 50px; padding: 0.5rem 1.5rem; box-shadow: 0 0 20px rgba(0, 245, 255, 0.1); }
.help-center-block__search-input { background: transparent !important; border: none !important; color: #FFFFFF !important; box-shadow: none !important; font-size: 1rem; }
.help-center-block__search-input::placeholder { color: #64748B; }
.help-center-block__icon-search { width: 24px; height: 24px; color: #00F5FF; }
.help-center-block__contact-card { background: #12121A; border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 16px; padding: 2rem; position: relative; overflow: hidden; }
.help-center-block__contact-card::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: #FF4D00; }
.help-center-block__icon-box { background: rgba(255, 77, 0, 0.1); width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; border-radius: 12px; border: 1px solid rgba(255, 77, 0, 0.3); }
.help-center-block__icon-box svg { width: 24px; height: 24px; color: #FF4D00; }
.help-center-block__contact-title { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.25rem; color: #FFFFFF; }
.help-center-block__contact-text { color: #64748B; font-size: 0.95rem; margin-top: 1rem; }
.help-center-block__contact-value { color: #00F5FF; font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.2rem; margin-top: 0.5rem; word-break: break-all; }
.help-center-block__section-title { font-family: 'Montserrat', sans-serif; font-weight: 800; color: #8B5CF6; font-size: 1.75rem; border-left: 4px solid #8B5CF6; padding-left: 1rem; }
.help-center-block__faq-list { background: #12121A; border-radius: 16px; border: 1px solid rgba(255, 255, 255, 0.05); }
.help-center-block__faq-item { padding: 1.5rem; border-bottom: 1px solid rgba(255, 255, 255, 0.05); }
.help-center-block__faq-item:last-child { border-bottom: none; }
.help-center-block__faq-question { font-family: 'Montserrat', sans-serif; font-weight: 500; font-size: 1.1rem; color: #FFFFFF; margin-bottom: 0.75rem; }
.help-center-block__faq-answer { color: #CBD5E1; line-height: 1.6; font-size: 0.95rem; }
.help-center-block__no-results { color: #64748B; font-size: 1.1rem; }
.help-center-block__whatsapp-btn { display: inline-flex; align-items: center; gap: 10px; background: #25D366; color: #FFFFFF; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1rem; padding: 12px 24px; border-radius: 50px; text-decoration: none; border: none; box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35); }
.help-center-block__whatsapp-btn:hover { background: #1ebe5d; color: #FFFFFF; box-shadow: 0 0 20px rgba(37, 211, 102, 0.6); text-decoration: none; }
@media (max-width: 767.98px) {
  .help-center-block__title { font-size: 1.75rem; }
  .help-center-block__subtitle { font-size: 0.95rem; }
  .help-center-block__section-title { font-size: 1.4rem; }
  .help-center-block__contact-card { padding: 1.5rem; }
}

/* ===== PAGE: achievements ===== */
.achievements-section {
  padding: 80px 0;
  background-color: #050508;
  color: #FFFFFF;
  font-family: 'Montserrat', sans-serif;
}

.achievements-section .achievements-title {
  font-weight: 800;
  font-size: 2.5rem;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 0 15px rgba(255, 77, 0, 0.4);
}

.achievements-section .achievements-subtitle {
  color: #CBD5E1;
  max-width: 600px;
  font-size: 1.1rem;
  line-height: 1.6;
}

.achievements-section .search-input {
  background: #12121A;
  border: 1px solid rgba(0, 245, 255, 0.3);
  color: #FFFFFF;
  padding: 12px 20px;
  padding-right: 45px;
  border-radius: 30px;
  width: 300px;
  transition: all 0.3s ease;
}

.achievements-section .search-input:focus {
  background: #1C1C28;
  box-shadow: 0 0 15px rgba(0, 245, 255, 0.3);
  outline: none;
  border-color: #00F5FF;
}

.achievements-section .search-input::placeholder {
  color: #64748B;
}

.achievements-section .search-icon {
  color: #00F5FF;
}

.achievements-section .filter-btn {
  background: #12121A;
  border: 1px solid rgba(139, 92, 246, 0.3);
  color: #CBD5E1;
  padding: 8px 24px;
  border-radius: 30px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.achievements-section .filter-btn:hover,
.achievements-section .filter-btn.active {
  background: #8B5CF6;
  color: #FFFFFF;
  border-color: #8B5CF6;
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.4);
}

.achievements-section .achievement-card {
  background: rgba(28, 28, 40, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.achievements-section .achievement-card:hover {
  border-color: #00F5FF;
  transform: translateY(-5px);
}

.achievements-section .card-header-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #FF4D00, #FF9000);
}

.achievements-section .card-header-glow.blue {
  background: linear-gradient(90deg, #00F5FF, #00A3FF);
}

.achievements-section .card-header-glow.purple {
  background: linear-gradient(90deg, #8B5CF6, #D946EF);
}

.achievements-section .achievement-icon-box {
  width: 60px;
  height: 60px;
  background: rgba(18, 18, 26, 0.8);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.achievements-section .achievement-icon {
  width: 32px;
  height: 32px;
}

.achievements-section .achievement-name {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: #FFFFFF;
}

.achievements-section .achievement-desc {
  color: #CBD5E1;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 25px;
  flex-grow: 1;
}

.achievements-section .progress-label {
  font-size: 0.8rem;
  color: #64748B;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.achievements-section .progress-percent {
  font-size: 0.85rem;
  font-weight: 800;
  color: #00F5FF;
}

.achievements-section .progress-bar-bg {
  height: 8px;
  background: #12121A;
  border-radius: 10px;
  overflow: hidden;
}

.achievements-section .progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #00F5FF, #00A3FF);
  box-shadow: 0 0 10px rgba(0, 245, 255, 0.5);
  border-radius: 10px;
}

@media (max-width: 767.98px) {
  .achievements-section .achievements-title {
    font-size: 1.75rem;
  }
  .achievements-section .search-input {
    width: 100%;
  }
  .achievements-section .achievement-card {
    padding: 20px;
  }
}

/* ===== PAGE: privacy ===== */
.privacy-content { background-color: #050508; position: relative; overflow: hidden; }
.privacy-content::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(circle at top left, rgba(139, 92, 246, 0.05), transparent); pointer-events: none; }
.privacy-card { background: rgba(28, 28, 40, 0.8); border: 1px solid rgba(0, 245, 255, 0.3); border-radius: 16px; box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), inset 0 1px 1px rgba(255, 255, 255, 0.1); position: relative; z-index: 2; }
.privacy-icon-wrapper { width: 48px; height: 48px; background: linear-gradient(135deg, #FF4D00 0%, #FF9000 100%); border-radius: 12px; display: flex; align-items: center; justify-content: center; box-shadow: 0 0 15px rgba(255, 77, 0, 0.4); flex-shrink: 0; }
.privacy-icon { width: 28px; height: 28px; color: #FFFFFF; }
.privacy-main-heading { font-family: 'Montserrat', sans-serif; font-size: 2.5rem; font-weight: 800; color: #FFFFFF; text-transform: uppercase; letter-spacing: 1px; }
.privacy-intro { font-family: 'Inter', sans-serif; color: #CBD5E1; font-size: 1.1rem; line-height: 1.6; border-left: 4px solid #00F5FF; padding-left: 20px; }
.privacy-text-block { margin-bottom: 2.5rem; }
.privacy-subheading { font-family: 'Montserrat', sans-serif; color: #8B5CF6; font-size: 1.5rem; font-weight: 800; margin-bottom: 1.25rem; position: relative; display: inline-block; }
.privacy-subheading::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 40px; height: 2px; background: #00F5FF; }
.privacy-text-block p { font-family: 'Inter', sans-serif; color: #CBD5E1; line-height: 1.8; margin-bottom: 1rem; }
.privacy-list { list-style: none; padding-left: 0; }
.privacy-list li { position: relative; padding-left: 28px; color: #CBD5E1; margin-bottom: 0.75rem; line-height: 1.6; }
.privacy-list li::before { content: '→'; position: absolute; left: 0; color: #FF4D00; font-weight: bold; }
@media (max-width: 767.98px) {
    .privacy-main-heading { font-size: 1.5rem; }
    .privacy-subheading { font-size: 1.2rem; }
    .privacy-intro { font-size: 1rem; }
    .privacy-card { padding: 1.5rem !important; }
}

/* ===== PAGE: terms ===== */
.terms-content-section {
  background-color: #050508;
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}

.terms-content-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top left, rgba(139, 92, 246, 0.05), transparent);
  pointer-events: none;
}

.terms-card-wrapper {
  background: rgba(18, 18, 26, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), inset 0 1px 1px rgba(255, 255, 255, 0.05);
  position: relative;
  z-index: 1;
}

.terms-card-header {
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 32px;
}

.header-icon .neon-svg {
  width: 64px;
  height: 64px;
  color: #FF4D00;
  filter: drop-shadow(0 0 10px rgba(255, 77, 0, 0.4));
}

.terms-main-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  color: #FFFFFF;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.terms-main-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  color: #64748B;
  max-width: 700px;
  margin: 0 auto;
}

.terms-item {
  position: relative;
}

.icon-box {
  width: 48px;
  height: 48px;
  background: rgba(0, 245, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 245, 255, 0.3);
  flex-shrink: 0;
}

.section-icon {
  width: 24px;
  height: 24px;
  color: #00F5FF;
}

.terms-section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: 0.5px;
}

.terms-text-block p {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: #CBD5E1;
  margin-bottom: 16px;
}

.custom-list {
  list-style: none;
  padding-left: 0;
}

.custom-list li {
  position: relative;
  padding-left: 28px;
  color: #CBD5E1;
  margin-bottom: 12px;
  font-family: 'Inter', sans-serif;
}

.custom-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 12px;
  height: 2px;
  background: #FF4D00;
  box-shadow: 0 0 8px rgba(255, 77, 0, 0.6);
}

@media (max-width: 768px) {
  .terms-card-wrapper {
    padding: 24px;
    border-radius: 16px;
  }
  
  .terms-main-title {
    font-size: 1.75rem;
  }
  
  .terms-main-subtitle {
    font-size: 1rem;
  }
  
  .terms-section-title {
    font-size: 1.25rem;
  }

  .header-icon .neon-svg {
    width: 48px;
    height: 48px;
  }
}

/* ===== PAGE: disclaimer ===== */
.disclaimer-section {
  background-color: #050508;
  min-height: 100vh;
  font-family: 'Inter', sans-serif;
  color: #CBD5E1;
}

.disclaimer-section h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 0 15px rgba(255, 77, 0, 0.4);
}

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

.disclaimer-section .disclaimer-card {
  background: rgba(18, 18, 26, 0.95);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), inset 0 1px 1px rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.disclaimer-section .disclaimer-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #FF4D00, #8B5CF6, #00F5FF);
}

.disclaimer-section .icon-box {
  background: rgba(255, 77, 0, 0.1);
  color: #FF4D00;
  padding: 10px;
  border-radius: 12px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(255, 77, 0, 0.2);
}

.disclaimer-section .icon-box svg {
  width: 24px;
  height: 24px;
}

.disclaimer-section .disclaimer-content h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
}

.disclaimer-section .disclaimer-content p {
  line-height: 1.8;
  margin-bottom: 0;
  font-size: 1rem;
}

.disclaimer-section .lead {
  color: #64748B;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .disclaimer-section h1 {
    font-size: 1.75rem;
  }
  .disclaimer-section .disclaimer-card {
    padding: 1.5rem !important;
  }
  .disclaimer-section h2.h3 {
    font-size: 1.25rem;
  }
}

.main-comment-card {
    background: #1C1C28;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 4px solid #FF4D00;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), inset 0 1px 1px rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.main-comment-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, rgba(139, 92, 246, 0.05), transparent);
    pointer-events: none;
}

.user-avatar {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid #00F5FF;
    box-shadow: 0 0 15px rgba(0, 245, 255, 0.2);
}

.author-name {
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.badge-dragon {
    background: linear-gradient(135deg, #FF4D00 0%, #FF9000 100%);
    color: #FFFFFF;
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: 800;
}

.timestamp {
    color: #64748B;
    font-size: 0.85rem;
}

.comment-text {
    color: #CBD5E1;
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    margin: 12px 0;
    font-size: 1rem;
}

.action-btn {
    background: transparent;
    border: none;
    color: #8B5CF6;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 4px 8px;
    cursor: pointer;
}

.action-btn:hover {
    color: #00F5FF;
    text-decoration: underline;
}

.icon-sm {
    width: 18px;
    height: 18px;
}

.border-start-neon {
    border-left: 2px solid rgba(139, 92, 246, 0.4);
}

.reply-comment-card {
    background: rgba(28, 28, 40, 0.5);
    border: 1px solid rgba(0, 245, 255, 0.1);
    border-radius: 12px;
    margin-top: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.reply-avatar {
    width: 42px;
    height: 42px;
    object-fit: cover;
    border-radius: 10px;
    border: 1.5px solid #8B5CF6;
}

.reply-author-name {
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
}

.timestamp-sm {
    color: #64748B;
    font-size: 0.75rem;
}

.reply-text {
    color: #CBD5E1;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 8px 0;
}

.mention-tag {
    color: #00F5FF;
    font-weight: 600;
    margin-right: 4px;
}

.action-btn-sm {
    background: none;
    border: none;
    color: #64748B;
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0;
    cursor: pointer;
}

.action-btn-sm:hover {
    color: #FF4D00;
}


/* ===== PAGE TEMPLATE: games ===== */
.glitch-blast-hero {
    background-color: #050508;
    overflow: hidden;
    min-height: 40vh;
}

.glitch-blast-hero .hero-slide-wrapper {
    min-height: 40vh;
    width: 100%;
}

.glitch-blast-hero .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.glitch-blast-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 10, 15, 0.6), #050508);
    z-index: 2;
}

.glitch-blast-hero .hero-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    line-height: 1.2;
    font-size: 2.25rem;
    z-index: 3;
}

.glitch-blast-detail-container {
    background-color: #050508;
    min-height: 100vh;
}

.game-frame-wrapper {
    background: #12121A;
    border-radius: 20px;
    border: 1px solid rgba(255, 77, 0, 0.3);
    overflow: hidden;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.8);
}

.game-aspect-ratio {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}

.game-aspect-ratio iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.btn-neon-action {
    background: rgba(0, 245, 255, 0.1);
    border: 1px solid #00F5FF;
    color: #00F5FF;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 500;
    display: flex;
    align-items: center;
    transition: all 0.2s ease;
}

.btn-neon-action:hover {
    background: #00F5FF;
    color: #050508;
    box-shadow: 0 0 15px rgba(0, 245, 255, 0.4);
}

.content-card {
    background: #12121A;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.text-fire {
    color: #FF4D00;
}

.text-neon {
    color: #00F5FF;
}

.text-accent {
    color: #8B5CF6;
}

.content-body {
    line-height: 1.8;
    font-family: 'Inter', sans-serif;
}

.badge-dragon {
    background: linear-gradient(135deg, #FF4D00 0%, #FF9000 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 800;
}

.info-panel,
.related-items-panel {
    background: #1C1C28;
    border-radius: 16px;
    border-left: 4px solid #FF4D00;
    padding: 1.5rem;
}

.info-panel-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: white;
    text-transform: uppercase;
}

.text-muted-custom {
    color: #64748B;
}

.related-thumb {
    width: 80px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.related-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-name {
    font-size: 1rem;
    color: white;
    margin-bottom: 2px;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.related-cat {
    font-size: 0.8rem;
    color: #8B5CF6;
}


.main-comment-card,
.reply-comment-card {
    background: #1C1C28;
    border-radius: 12px;
    color: #CBD5E1;
}

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

.author-name,
.reply-author-name {
    font-weight: 800;
    color: white;
}

.timestamp,
.timestamp-sm {
    font-size: 0.8rem;
    color: #64748B;
}

.border-start-neon {
    border-left: 2px solid #00F5FF !important;
}

.action-btn,
.action-btn-sm {
    background: none;
    border: none;
    color: #64748B;
    font-size: 0.85rem;
    padding: 0;
    transition: color 0.2s;
}

.action-btn:hover,
.action-btn-sm:hover {
    color: #FF4D00;
}

.form-control-custom {
    background: #12121A;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 12px 16px;
    border-radius: 8px;
    width: 100%;
}

.form-control-custom:focus {
    border-color: #FF4D00;
    box-shadow: 0 0 10px rgba(255, 77, 0, 0.2);
    outline: none;
}

.btn-fire-submit {
    background: #FF4D00;
    border: none;
    color: white;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 800;
    transition: all 0.2s;
}

.btn-fire-submit:hover {
    background: #FF7033;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 77, 0, 0.3);
}

.icon-md {
    width: 24px;
    height: 24px;
}

.icon-sm {
    width: 18px;
    height: 18px;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .game-aspect-ratio {
        padding-top: 75%;
    }
}