/* ===== GLOBAL FIXES ===== */

/* Blue content-area button (header has higher-specificity override keeping pink) */
.gta-btn-primary {
    background-color: #7B61FF;
    color: #FFFFFF !important;
    border: none;
    border-radius: 4px;
    padding: 0.6rem 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    transition: background-color 0.2s ease;
    text-decoration: none;
    display: inline-block;
}
.gta-btn-primary:hover,
.gta-btn-primary:active {
    background-color: #6650e8;
    color: #FFFFFF !important;
}

/* Global text utility */
.text-light-secondary {
    color: #B0B0B8 !important;
}
body.cyber-theme .text-muted {
    color: #8C8C9C !important;
}

/* Info-box inside articles — override Bootstrap bg-secondary-subtle */
.info-box {
    background-color: rgba(123, 97, 255, 0.12) !important;
    border-color: #FF4FA3 !important;
}
.info-box h3,
.info-box h4,
.info-box h5 {
    color: #FFFFFF !important;
}
.info-box p {
    color: #B0B0B8 !important;
}

/* Dark-themed form controls for comment form */
.comment-form .form-control {
    background-color: #0F0F12;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #FFFFFF;
    border-radius: 8px;
}
.comment-form .form-control::placeholder {
    color: #6C6C7E;
}
.comment-form .form-control:disabled {
    background-color: #16161D;
    border-color: rgba(255, 255, 255, 0.06);
    color: #6C6C7E;
}
.comment-form .alert-info {
    background-color: rgba(0, 240, 255, 0.08);
    border: 1px solid rgba(0, 240, 255, 0.25);
    color: #00F0FF;
    border-radius: 8px;
}

:root {
    --primary-bg: #0F0F12;
    --secondary-bg: #16161D;
    --surface-bg: #1E1E26;
    --brand-primary: #FF4FA3;
    --brand-secondary: #7B61FF;
    --brand-accent: #00F0FF;
    --text-light: #FFFFFF;
    --text-secondary: #B0B0B8;
    --muted-color: #6C6C7E;
    --border-color: rgba(255, 255, 255, 0.08);
}

body.cyber-theme {
    background-color: var(--primary-bg);
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

.glass-card {
    background: rgba(30, 30, 38, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
}

.btn-cyber-primary {
    background-color: var(--brand-primary);
    color: #FFFFFF;
    border: none;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 12px 24px;
}

.btn-cyber-primary:hover {
    background-color: #E64592;
}

.btn-cyber-secondary {
    border: 2px solid var(--brand-secondary);
    color: #FFFFFF;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 10px 22px;
}

.btn-cyber-secondary:hover {
    background-color: var(--brand-secondary);
}

* {
    box-sizing: border-box;
}

/* ===== header ===== */
.gta-header .navbar {
    background-color: #0F0F12;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1rem 0;
    z-index: 1050;
}

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

.gta-header .gta-site-name {
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gta-header .nav-link {
    color: #FFFFFF;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    padding: 0.5rem 1rem !important;
    transition: color 0.2s ease;
}

.gta-header .nav-link:hover,
.gta-header .nav-link:focus {
    color: #FF4FA3;
}

.gta-header .dropdown-menu {
    background-color: #1E1E26;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    padding: 0.5rem 0;
    margin-top: 0;
}

.gta-header .dropdown-item {
    color: #FFFFFF;
    font-size: 0.85rem;
    padding: 0.75rem 1.5rem;
    text-transform: uppercase;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.gta-header .dropdown-item:hover {
    background-color: #FF4FA3;
    color: #FFFFFF;
}

.gta-header .gta-btn-primary {
    background-color: #FF4FA3;
    color: #FFFFFF;
    border: none;
    border-radius: 4px;
    padding: 0.6rem 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: background-color 0.2s ease;
}

.gta-header .gta-btn-primary:hover {
    background-color: #E64692;
    color: #FFFFFF;
}

.gta-header .navbar-toggler {
    border: none;
    padding: 0.25rem;
}

.gta-header .navbar-toggler:focus {
    box-shadow: 0 0 0 3px #00F0FF;
}

.gta-header .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 991.98px) {
    .gta-header .navbar-collapse {
        background-color: #16161D;
        margin-top: 1rem;
        padding: 1rem;
        border-radius: 8px;
        border: 1px solid rgba(255, 255, 255, 0.08);
    }

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

    .gta-header .dropdown-menu {
        background-color: transparent;
        border: none;
        padding-left: 1rem;
    }

    .gta-header .gta-btn-primary {
        width: 100%;
        margin-top: 1rem;
        text-align: center;
    }
}

/* ===== hero ===== */
.hero-magazine__wrapper {
    min-height: 85vh;
    padding: 100px 0;
    background-color: #0F0F12;
}

.hero-magazine__bg {
    background-image: linear-gradient(90deg, rgba(15, 15, 18, 0.95) 0%, rgba(15, 15, 18, 0.4) 100%),
    url('../frontend/images/uploads/official-date-announcement.png');
    background-size: cover;
    background-position: center;
}

.hero-magazine__meta {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #FF4FA3;
}

.hero-magazine__separator {
    color: rgba(255, 255, 255, 0.2);
}

.hero-magazine__author,
.hero-magazine__comments {
    color: #FFFFFF;
}

.hero-magazine__title {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 1.1;
    color: #FFFFFF;
    text-transform: uppercase;
}

.hero-magazine__excerpt {
    font-size: 1.1rem;
    color: #B0B0B8;
    max-width: 600px;
    line-height: 1.6;
}

.hero-magazine__link {
    color: #FFFFFF;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 2px;
    transition: color 0.2s ease;
    border-bottom: 2px solid #FF4FA3;
    padding-bottom: 5px;
}

.hero-magazine__link:hover {
    color: #FF4FA3;
}

.hero-magazine__sidebar {
    background: rgba(30, 30, 38, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 20px;
}

.hero-magazine__sidebar-item {
    border-radius: 12px;
    transition: background 0.2s ease;
}

.hero-magazine__sidebar-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.hero-magazine__sidebar-thumb {
    width: 80px;
    height: 80px;
    overflow: hidden;
}

.hero-magazine__sidebar-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hero-magazine__sidebar-item:hover .hero-magazine__sidebar-thumb img {
    transform: scale(1.1);
}

.hero-magazine__sidebar-tag {
    font-size: 0.7rem;
    font-weight: 700;
    color: #7B61FF;
    letter-spacing: 1px;
}

.hero-magazine__sidebar-title {
    font-size: 1rem;
    color: #FFFFFF;
    font-weight: 700;
    line-height: 1.3;
}

@media (max-width: 991px) {
    .hero-magazine__wrapper {
        min-height: auto;
        padding: 60px 0;
    }

    .hero-magazine__bg {
        background-image: linear-gradient(180deg, rgba(15, 15, 18, 0.9) 0%, rgba(15, 15, 18, 0.7) 100%),
        url('../frontend/images/uploads/official-date-announcement.png');
    }

    .hero-magazine__sidebar {
        margin-top: 40px;
    }
}

/* ===== pre-order-info ===== */
.pre-order-info-block {
    background-color: #0F0F12;
    position: relative;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

.pre-order-info-block .info-content-wrapper {
    background: rgba(22, 22, 29, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.pre-order-info-block .badge-alert {
    background-color: #FF4FA3;
    color: #FFFFFF;
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

.pre-order-info-block .text-brand-primary {
    color: #FF4FA3;
}

.pre-order-info-block .text-brand-accent {
    color: #00F0FF;
}

.pre-order-info-block .alert-box {
    background: rgba(0, 240, 255, 0.05);
    border-left: 4px solid #00F0FF;
    padding: 16px;
    border-radius: 4px;
}

.pre-order-info-block .btn-cyber-primary {
    background-color: #FF4FA3;
    color: #FFFFFF;
    padding: 14px 32px;
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    transition: background-color 0.2s ease;
    display: inline-block;
}

.pre-order-info-block .btn-cyber-primary:hover {
    background-color: #E63E8D;
    color: #FFFFFF;
}

.pre-order-info-block .countdown-container {
    background: #1E1E26;
    border: 1px solid rgba(123, 97, 255, 0.3);
    border-radius: 16px;
    box-shadow: 0 0 30px rgba(123, 97, 255, 0.1);
}

.pre-order-info-block .timer-box {
    background: #0F0F12;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 12px 5px;
    text-align: center;
}

.pre-order-info-block .timer-value {
    font-size: 1.5rem;
    font-weight: 900;
    color: #00F0FF;
    line-height: 1;
}

.pre-order-info-block .timer-label {
    font-size: 0.65rem;
    color: #6C6C7E;
    text-transform: uppercase;
    margin-top: 4px;
    display: block;
}

.pre-order-info-block .text-light-secondary {
    color: #B0B0B8;
}

.pre-order-info-block .fw-black {
    font-weight: 900;
}

@media (max-width: 768px) {
    .pre-order-info-block .display-5 {
        font-size: 1.75rem;
    }

    .pre-order-info-block .timer-value {
        font-size: 1.25rem;
    }
}

/* ===== latest-news ===== */
.latest-news-block {
    background-color: #0F0F12;
    padding: clamp(60px, 10vh, 120px) 0;
    overflow: hidden;
}

.latest-news-block .text-light-secondary {
    color: #B0B0B8;
}

.latest-news-block .news-card {
    background: #1E1E26;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.2s, transform 0.2s;
}

.latest-news-block .news-card:hover {
    border-color: #FF4FA3;
    transform: translateY(-5px);
}

.latest-news-block .news-card-img-wrapper {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.latest-news-block .news-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.latest-news-block .news-badge {
    background-color: #FF4FA3;
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    z-index: 2;
}

.latest-news-block .meta-text {
    color: #7B61FF;
    font-size: 0.8rem;
    font-weight: 500;
}

.latest-news-block .news-title {
    font-weight: 700;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.latest-news-block .text-brand-primary {
    color: #FF4FA3 !important;
}

.latest-news-block .btn-all-news {
    background-color: #FF4FA3;
    color: #FFFFFF;
    padding: 12px 32px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    transition: background-color 0.2s;
}

.latest-news-block .btn-all-news:hover {
    background-color: #e0448f;
    color: #FFFFFF;
}

.latest-news-block h2 {
    color: #FFFFFF !important;
    font-weight: 900;
}

/* ===== world-preview ===== */
.world-preview {
    background-color: #0F0F12;
    background-image: url('../frontend/images/uploads/leonida-state-map-background.jpg');
    background-size: cover;
    background-position: center;
    min-height: 600px;
}

.world-preview__bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(15, 15, 18, 0.9) 0%, rgba(15, 15, 18, 0.7) 50%, rgba(15, 15, 18, 0.9) 100%);
    z-index: 1;
}

.world-preview .container {
    z-index: 2;
}

.world-preview__title {
    color: #FFFFFF;
    font-weight: 900;
    font-size: clamp(2rem, 5vw, 3.5rem);
    letter-spacing: -1px;
}

.world-preview__subtitle {
    color: #B0B0B8;
    font-size: 1.1rem;
    max-width: 700px;
    line-height: 1.6;
}

.world-preview__card {
    background: #1E1E26;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.world-preview__card:hover {
    border-color: #FF4FA3;
}

.world-preview__image-wrapper {
    height: 220px;
    overflow: hidden;
}

.world-preview__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.world-preview__card:hover .world-preview__image {
    transform: scale(1.05);
}

.world-preview__badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #7B61FF;
    color: #FFFFFF;
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    z-index: 3;
}

.world-preview__card-title {
    color: #FFFFFF;
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.3;
}

.world-preview__card-text {
    color: #B0B0B8;
    font-size: 0.95rem;
    line-height: 1.5;
}

.world-preview__btn {
    display: inline-block;
    background: #FF4FA3;
    color: #FFFFFF;
    text-decoration: none;
    padding: 12px 32px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    border-radius: 4px;
    transition: background 0.1s steps(1);
    border: none;
    width: 100%;
    text-align: center;
}

.world-preview__btn:hover {
    background: #E03E8A;
    color: #FFFFFF;
}

@media (max-width: 767px) {
    .world-preview__title {
        font-size: 1.5rem;
    }

    .world-preview__subtitle {
        font-size: 1rem;
    }

    .world-preview__card-title {
        font-size: 1.1rem;
    }
}

/* ===== footer ===== */
.gta6-footer {
    background-color: #0F0F12;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-family: 'Inter', sans-serif;
    color: #B0B0B8;
}

.gta6-footer__logo {
    max-width: 50px;
    height: auto;
    filter: drop-shadow(0 0 5px rgba(255, 79, 163, 0.3));
}

.gta6-footer__title {
    color: #FFFFFF;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gta6-footer__description {
    font-size: 0.9rem;
    line-height: 1.6;
}

.gta6-footer__link {
    color: #B0B0B8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease-in-out;
}

.gta6-footer__link:hover {
    color: #FF4FA3;
}

.gta6-footer__list li {
    margin-bottom: 0.75rem;
}

.gta6-footer__text {
    font-size: 0.9rem;
}

.gta6-footer__divider {
    border-color: rgba(255, 255, 255, 0.08);
    opacity: 1;
}

.gta6-footer__copyright,
.gta6-footer__keywords {
    font-size: 0.8rem;
    color: #6C6C7E;
}

.text-brand-primary {
    color: #FF4FA3 !important;
}

@media (max-width: 767.98px) {
    .gta6-footer {
        text-align: center;
    }

    .gta6-footer__list li {
        justify-content: center;
    }

    .gta6-footer__title {
        margin-top: 1.5rem;
    }
}

.gta-header .navbar {
    background-color: #0F0F12;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1rem 0;
    z-index: 1050;
}

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

.gta-header .gta-site-name {
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gta-header .nav-link {
    color: #FFFFFF;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    padding: 0.5rem 1rem !important;
    transition: color 0.2s ease;
}

.gta-header .nav-link:hover {
    color: #FF4FA3;
}

.gta-header .dropdown-menu {
    background-color: #1E1E26;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.gta-header .dropdown-item {
    color: #FFFFFF;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.gta-header .dropdown-item:hover {
    background-color: #FF4FA3;
    color: #FFFFFF;
}

.gta-header .gta-btn-primary {
    background-color: #FF4FA3;
    color: #FFFFFF;
    border: none;
    border-radius: 4px;
    padding: 0.6rem 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.hero-magazine__wrapper {
    min-height: 60vh;
    padding: 80px 0;
    background-color: #0F0F12;
}

.hero-magazine__bg {
    background-image: linear-gradient(90deg, rgba(15, 15, 18, 0.95) 0%, rgba(15, 15, 18, 0.4) 100%),
    url('{{main-image}}');
    background-size: cover;
    background-position: center;
}

.hero-magazine__title {
    font-weight: 900;
    font-size: clamp(1.8rem, 4vw, 3.5rem);
    color: #FFFFFF;
    text-transform: uppercase;
}

.hero-magazine__meta {
    color: #FF4FA3;
    font-weight: 700;
    font-size: 0.85rem;
}

.hero-magazine__excerpt {
    color: #B0B0B8;
    font-size: 1.1rem;
    max-width: 700px;
}

.repeat-theme-content {
    background-color: #0F0F12;
}

.repeat-theme-article {
    background: #1E1E26;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    color: #FFFFFF;
}

.repeat-theme-article__body {
    line-height: 1.8;
    color: #B0B0B8;
}

.repeat-theme-article__body h2,
.repeat-theme-article__body h3 {
    color: #FFFFFF;
    font-weight: 900;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.repeat-theme-card {
    background: #1E1E26;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
}

.repeat-theme-card h3 {
    color: #FFFFFF;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
}

.repeat-theme-card a {
    color: #B0B0B8;
    transition: color 0.2s;
}

.repeat-theme-card a:hover {
    color: #FF4FA3;
}

.gta6-footer {
    background-color: #0F0F12;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #B0B0B8;
}

.gta6-footer__title {
    color: #FFFFFF;
    text-transform: uppercase;
}

.gta6-footer__link {
    color: #B0B0B8;
    text-decoration: none;
}

.gta6-footer__link:hover {
    color: #FF4FA3;
}

.text-brand-primary {
    color: #FF4FA3 !important;
}


/* ===== PAGE: privacy ===== */
.privacy-content {
  background-color: #0F0F12;
  color: #B0B0B8;
  font-family: 'Inter', sans-serif;
}

.privacy-content .privacy-card {
  background-color: #16161D;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.privacy-content .privacy-heading {
  color: #FFFFFF;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-left: 4px solid #FF4FA3;
  padding-left: 15px;
  font-size: 1.5rem;
}

.privacy-content .privacy-text {
  line-height: 1.8;
  color: #B0B0B8;
}

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

.privacy-content .privacy-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  line-height: 1.6;
}

.privacy-content .privacy-list li::before {
  content: '\F26E';
  font-family: 'bootstrap-icons';
  position: absolute;
  left: 0;
  color: #7B61FF;
  font-size: 1rem;
}

.privacy-content .privacy-notice {
  background: rgba(123, 97, 255, 0.1);
  border: 1px solid rgba(123, 97, 255, 0.2);
  border-radius: 8px;
}

.privacy-content .privacy-link {
  color: #00F0FF;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.privacy-content .privacy-link:hover {
  color: #FF4FA3;
}

@media (max-width: 768px) {
  .privacy-content .privacy-heading {
    font-size: 1.25rem;
  }
  .privacy-content .privacy-card {
    padding: 20px !important;
  }
}

/* ===== PAGE: terms ===== */
.terms-content {
  padding: clamp(60px, 10vh, 120px) 0;
  background-color: #0F0F12;
  color: #B0B0B8;
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
}
.terms-content .terms-card {
  background: #16161D;
  padding: 40px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.terms-content .text-brand-primary {
  color: #FF4FA3;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: clamp(24px, 4vw, 36px);
}
.terms-content .text-brand-secondary {
  color: #7B61FF;
}
.terms-content .terms-subtitle {
  font-size: 1.1rem;
  color: #6C6C7E;
  margin-top: 10px;
}
.terms-content .terms-divider {
  border-color: rgba(255, 255, 255, 0.08);
  opacity: 1;
  margin: 30px 0;
}
.terms-content .terms-section {
  margin-bottom: 40px;
}
.terms-content h2 {
  font-weight: 700;
  color: #FFFFFF !important;
  display: flex;
  align-items: center;
  font-size: clamp(18px, 2.5vw, 22px);
}
.terms-content .terms-list {
  list-style: none;
  padding-left: 0;
  margin-top: 15px;
}
.terms-content .terms-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
}
.terms-content .terms-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #00F0FF;
  font-weight: bold;
}
.terms-content .border-brand {
  border: 1px solid rgba(123, 97, 255, 0.3);
  background: rgba(123, 97, 255, 0.05);
}
.terms-content .btn-custom-primary {
  background-color: #FF4FA3;
  color: #FFFFFF;
  padding: 12px 28px;
  border: none;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  transition: background-color 0s;
  flex: 1;
}
.terms-content .btn-custom-primary:hover {
  background-color: #E63E8D;
  color: #FFFFFF;
}
.terms-content .btn-custom-secondary {
  border: 2px solid #7B61FF;
  color: #FFFFFF;
  padding: 10px 28px;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  transition: border-color 0s;
  flex: 1;
}
.terms-content .btn-custom-secondary:hover {
  border-color: #9C8AFF;
  background: rgba(123, 97, 255, 0.1);
  color: #FFFFFF;
}
@media (max-width: 768px) {
  .terms-content .terms-card {
    padding: 24px;
  }
  .terms-content h2 {
    font-size: 18px;
  }
  .terms-content .terms-section {
    margin-bottom: 30px;
  }
}

/* ===== PAGE: disclaimer ===== */
.disclaimer-block {
  background-color: #0F0F12;
  color: #FFFFFF;
  font-family: 'Inter', sans-serif;
}

.disclaimer-block .disclaimer-card {
  background: #16161D;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.disclaimer-block .disclaimer-icon-box {
  background: rgba(255, 79, 163, 0.1);
  color: #FF4FA3;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 1.5rem;
}

.disclaimer-block .disclaimer-title {
  font-weight: 700;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 1.25rem;
}

.disclaimer-block .disclaimer-text {
  color: #B0B0B8;
  line-height: 1.8;
  margin-bottom: 0;
  font-size: 1rem;
}

.disclaimer-block .btn-primary {
  background-color: #FF4FA3;
  border: none;
  border-radius: 4px;
  font-weight: 700;
  text-transform: uppercase;
  transition: background-color 0.2s ease;
}

.disclaimer-block .btn-primary:hover {
  background-color: #E64591;
}

@media (max-width: 767.98px) {
  .disclaimer-block .disclaimer-title {
    font-size: 1.1rem;
  }
  .disclaimer-block .disclaimer-text {
    font-size: 0.95rem;
  }
  .disclaimer-block .disclaimer-icon-box {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
}

/* ===== PAGE: contact ===== */
.contact-section {
  background-color: #0F0F12;
  color: #FFFFFF;
  overflow: hidden;
}

.contact-section .text-primary-neon {
  color: #FF4FA3;
}

.contact-section .contact-title {
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: -1px;
  color: #FFFFFF;
}

.contact-section .contact-lead {
  color: #B0B0B8;
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 90%;
}

.contact-section .info-card {
  background: #1E1E26;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  transition: border-color 0.2s ease;
}

.contact-section .info-card:hover {
  border-color: #7B61FF;
}

.contact-section .info-icon-wrapper {
  width: 56px;
  height: 56px;
  background: rgba(123, 97, 255, 0.1);
  border-radius: 12px;
  flex-shrink: 0;
}

.contact-section .info-icon-wrapper i {
  font-size: 24px;
  color: #00F0FF;
}

.contact-section .info-label {
  font-size: 0.85rem;
  color: #6C6C7E;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}

.contact-section .info-value {
  font-size: 1.1rem;
  color: #FFFFFF;
  font-weight: 500;
  word-break: break-all;
}

.contact-section .map-container {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #16161D;
  min-height: 400px;
  position: relative;
}

.contact-section .map-wrapper {
  width: 100%;
  height: 100%;
}

.contact-section .map-wrapper iframe {
  width: 100% !important;
  height: 100% !important;
  border: 0 !important;
  filter: grayscale(1) invert(0.9) contrast(1.2);
}

@media (max-width: 991.98px) {
  .contact-section .map-container {
    min-height: 350px;
    margin-top: 2rem;
  }
  .contact-section .contact-lead {
    max-width: 100%;
  }
}

.comment-block {
    background-color: #1E1E26;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
}

.avatar-circle {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #FFFFFF;
    background-color: #FF4FA3;
    font-size: 1.1rem;
}

.comment-author {
    font-weight: 900;
    color: #FFFFFF;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.comment-date {
    color: #6C6C7E;
    font-size: 0.85rem;
}

.comment-text {
    color: #B0B0B8;
    line-height: 1.6;
    font-size: 1rem;
}

.btn-action {
    background: transparent;
    border: none;
    color: #7B61FF;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-action:hover {
    color: #FF4FA3;
}

.comment-reply {
    background-color: #16161D;
    border-left: 3px solid #7B61FF;
    border-radius: 0 16px 16px 0;
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
}

.avatar-circle-sm {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #FFFFFF;
    background-color: #7B61FF;
    font-size: 0.9rem;
}

.comment-reply .comment-author {
    font-size: 0.9rem;
    color: #FFFFFF;
}

.comment-reply .comment-text {
    font-size: 0.95rem;
    color: #B0B0B8;
}

.comment-reply .btn-action {
    color: #00F0FF;
}

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


/* ===== PAGE TEMPLATE: news ===== */
.gta-header .navbar {
    background-color: #0F0F12;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1rem 0;
    z-index: 1050;
}

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

.gta-header .gta-site-name {
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gta-header .nav-link {
    color: #FFFFFF;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    padding: 0.5rem 1rem !important;
    transition: color 0.2s ease;
}

.gta-header .nav-link:hover {
    color: #FF4FA3;
}

.gta-header .gta-btn-primary {
    background-color: #FF4FA3;
    color: #FFFFFF;
    border: none;
    border-radius: 4px;
    padding: 0.6rem 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: background-color 0.2s ease;
}

.gta-detail-page-wrapper {
    background-color: #0F0F12;
    color: #B0B0B8;
}

.detail-hero {
    padding: 100px 0 60px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.detail-hero__title {
    color: #FFFFFF;
    font-weight: 900;
    font-size: clamp(2rem, 5vw, 3.5rem);
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 20px;
}

.detail-hero__meta {
    color: #FFFFFF;
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0.9;
}

.breadcrumb-item a {
    color: #FF4FA3;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.5);
}

.bg-surface {
    background-color: #1E1E26;
}

.text-brand-primary {
    color: #FF4FA3 !important;
}

.text-accent-primary {
    color: #00F0FF !important;
}

.gta-content-body h2 {
    font-weight: 800;
    letter-spacing: -0.5px;
}

.gta-content-body p {
    line-height: 1.8;
    font-size: 1.05rem;
}

.hover-primary:hover span {
    color: #FF4FA3;
}

.avatar-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-weight: 900;
    flex-shrink: 0;
}

.avatar-circle-sm {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.btn-action {
    font-size: 0.85rem;
    font-weight: 600;
    transition: color 0.2s;
}

.btn-action:hover {
    color: #FF4FA3 !important;
}

.gta6-footer {
    background-color: #0F0F12;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #B0B0B8;
}

.gta6-footer__link {
    color: #B0B0B8;
    text-decoration: none;
    transition: color 0.2s;
}

.gta6-footer__link:hover {
    color: #FF4FA3;
}

@media (max-width: 767.98px) {
    .detail-hero__title {
        font-size: 18px !important;
    }

    .gta-content-body h2 {
        font-size: 16px !important;
    }

    .gta-content-body h3 {
        font-size: 14px !important;
    }

    .detail-hero {
        padding: 60px 0 40px;
    }

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

/* ===== PAGE TEMPLATE: gameplay ===== */
.gta-header .navbar {
    background-color: #0F0F12;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1rem 0;
    z-index: 1050;
}

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

.gta-header .gta-site-name {
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gta-header .nav-link {
    color: #FFFFFF;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    padding: 0.5rem 1rem !important;
    transition: color 0.2s ease;
}

.gta-header .nav-link:hover {
    color: #FF4FA3;
}

.gta-header .gta-btn-primary {
    background-color: #FF4FA3;
    color: #FFFFFF;
    border: none;
    border-radius: 4px;
    padding: 0.6rem 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: background-color 0.2s ease;
}

.gta-detail-page-wrapper {
    background-color: #0F0F12;
    color: #B0B0B8;
}

.detail-hero {
    padding: 100px 0 60px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.detail-hero__title {
    color: #FFFFFF;
    font-weight: 900;
    font-size: clamp(2rem, 5vw, 3.5rem);
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 20px;
}

.detail-hero__meta {
    color: #FFFFFF;
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0.9;
}

.breadcrumb-item a {
    color: #FF4FA3;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.5);
}

.bg-surface {
    background-color: #1E1E26;
}

.text-brand-primary {
    color: #FF4FA3 !important;
}

.text-accent-primary {
    color: #00F0FF !important;
}

.gta-content-body h2 {
    font-weight: 800;
    letter-spacing: -0.5px;
}

.gta-content-body p {
    line-height: 1.8;
    font-size: 1.05rem;
}

.hover-primary:hover span {
    color: #FF4FA3;
}

.avatar-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-weight: 900;
    flex-shrink: 0;
}

.avatar-circle-sm {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.btn-action {
    font-size: 0.85rem;
    font-weight: 600;
    transition: color 0.2s;
}

.btn-action:hover {
    color: #FF4FA3 !important;
}

.gta6-footer {
    background-color: #0F0F12;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #B0B0B8;
}

.gta6-footer__link {
    color: #B0B0B8;
    text-decoration: none;
    transition: color 0.2s;
}

.gta6-footer__link:hover {
    color: #FF4FA3;
}

@media (max-width: 767.98px) {
    .detail-hero__title {
        font-size: 18px !important;
    }

    .gta-content-body h2 {
        font-size: 16px !important;
    }

    .gta-content-body h3 {
        font-size: 14px !important;
    }

    .detail-hero {
        padding: 60px 0 40px;
    }

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

/* ===== PAGE TEMPLATE: pre-order ===== */
.gta-header .navbar {
    background-color: #0F0F12;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1rem 0;
    z-index: 1050;
}

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

.gta-header .gta-site-name {
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gta-header .nav-link {
    color: #FFFFFF;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    padding: 0.5rem 1rem !important;
    transition: color 0.2s ease;
}

.gta-header .nav-link:hover {
    color: #FF4FA3;
}

.gta-header .gta-btn-primary {
    background-color: #FF4FA3;
    color: #FFFFFF;
    border: none;
    border-radius: 4px;
    padding: 0.6rem 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: background-color 0.2s ease;
}

.gta-detail-page-wrapper {
    background-color: #0F0F12;
    color: #B0B0B8;
}

.detail-hero {
    padding: 100px 0 60px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.detail-hero__title {
    color: #FFFFFF;
    font-weight: 900;
    font-size: clamp(2rem, 5vw, 3.5rem);
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 20px;
}

.detail-hero__meta {
    color: #FFFFFF;
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0.9;
}

.breadcrumb-item a {
    color: #FF4FA3;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.5);
}

.bg-surface {
    background-color: #1E1E26;
}

.text-brand-primary {
    color: #FF4FA3 !important;
}

.text-accent-primary {
    color: #00F0FF !important;
}

.gta-content-body h2 {
    font-weight: 800;
    letter-spacing: -0.5px;
}

.gta-content-body p {
    line-height: 1.8;
    font-size: 1.05rem;
}

.hover-primary:hover span {
    color: #FF4FA3;
}

.avatar-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-weight: 900;
    flex-shrink: 0;
}

.avatar-circle-sm {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.btn-action {
    font-size: 0.85rem;
    font-weight: 600;
    transition: color 0.2s;
}

.btn-action:hover {
    color: #FF4FA3 !important;
}

.gta6-footer {
    background-color: #0F0F12;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #B0B0B8;
}

.gta6-footer__link {
    color: #B0B0B8;
    text-decoration: none;
    transition: color 0.2s;
}

.gta6-footer__link:hover {
    color: #FF4FA3;
}

@media (max-width: 767.98px) {
    .detail-hero__title {
        font-size: 18px !important;
    }

    .gta-content-body h2 {
        font-size: 16px !important;
    }

    .gta-content-body h3 {
        font-size: 14px !important;
    }

    .detail-hero {
        padding: 60px 0 40px;
    }

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

/* ===== PAGE TEMPLATE: world ===== */
.gta-header .navbar {
    background-color: #0F0F12;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1rem 0;
    z-index: 1050;
}

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

.gta-header .gta-site-name {
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gta-header .nav-link {
    color: #FFFFFF;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    padding: 0.5rem 1rem !important;
    transition: color 0.2s ease;
}

.gta-header .nav-link:hover {
    color: #FF4FA3;
}

.gta-header .gta-btn-primary {
    background-color: #FF4FA3;
    color: #FFFFFF;
    border: none;
    border-radius: 4px;
    padding: 0.6rem 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: background-color 0.2s ease;
}

.gta-detail-page-wrapper {
    background-color: #0F0F12;
    color: #B0B0B8;
}

.detail-hero {
    padding: 100px 0 60px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.detail-hero__title {
    color: #FFFFFF;
    font-weight: 900;
    font-size: clamp(2rem, 5vw, 3.5rem);
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 20px;
}

.detail-hero__meta {
    color: #FFFFFF;
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0.9;
}

.breadcrumb-item a {
    color: #FF4FA3;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.5);
}

.bg-surface {
    background-color: #1E1E26;
}

.text-brand-primary {
    color: #FF4FA3 !important;
}

.text-accent-primary {
    color: #00F0FF !important;
}

.gta-content-body h2 {
    font-weight: 800;
    letter-spacing: -0.5px;
}

.gta-content-body p {
    line-height: 1.8;
    font-size: 1.05rem;
}

.hover-primary:hover span {
    color: #FF4FA3;
}

.avatar-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-weight: 900;
    flex-shrink: 0;
}

.avatar-circle-sm {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.btn-action {
    font-size: 0.85rem;
    font-weight: 600;
    transition: color 0.2s;
}

.btn-action:hover {
    color: #FF4FA3 !important;
}

.gta6-footer {
    background-color: #0F0F12;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #B0B0B8;
}

.gta6-footer__link {
    color: #B0B0B8;
    text-decoration: none;
    transition: color 0.2s;
}

.gta6-footer__link:hover {
    color: #FF4FA3;
}

@media (max-width: 767.98px) {
    .detail-hero__title {
        font-size: 18px !important;
    }

    .gta-content-body h2 {
        font-size: 16px !important;
    }

    .gta-content-body h3 {
        font-size: 14px !important;
    }

    .detail-hero {
        padding: 60px 0 40px;
    }

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