:root {
    --primary-neon: #FF00CC;
    --secondary-neon: #00CCFF;
    --accent-neon: #BF00FF;
    --bg-deep: #050510;
    --surface-glass: rgba(255, 255, 255, 0.05);
    --text-primary: #FFFFFF;
    --text-secondary: #E0E0E0;
    --font-main: 'Orbitron', sans-serif;
    --font-sub: 'Rajdhani', sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    background-color: var(--bg-deep);
    color: var(--text-primary);
    font-family: var(--font-main);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.text-muted {
    color: #A0A0A0 !important;
}

.psychedelic-glitch-body {
    background-image: radial-gradient(circle at top left, rgba(255, 0, 204, 0.15), transparent), radial-gradient(circle at bottom right, rgba(0, 204, 255, 0.15), transparent);
    min-height: 100vh;
}

.glitch-text {
    text-shadow: 0 0 10px var(--primary-neon), 0 0 20px var(--secondary-neon);
    text-transform: uppercase;
    letter-spacing: 4px;
}

.neon-border {
    border: 1px solid rgba(0, 204, 255, 0.3);
    box-shadow: 0 0 15px rgba(255, 0, 204, 0.2);
}

a {
    transition: all 0.4s ease;
    text-decoration: none;
}

.btn-psychedelic {
    background: linear-gradient(135deg, var(--primary-neon) 0%, var(--accent-neon) 50%, var(--secondary-neon) 100%);
    color: white;
    border: none;
    font-family: var(--font-sub);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 1rem 2.5rem;
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 0 15px rgba(255, 0, 204, 0.6);
}

.btn-psychedelic:hover {
    transform: scale(1.05);
    filter: hue-rotate(15deg);
    color: white;
}

/* ===== header ===== */
.frostrellaikez-header .navbar {
    background-color: #050510;
    border-bottom: 2px solid rgba(0, 204, 255, 0.3);
    transition: all 0.3s ease;
}

.frostrellaikez-header .navbar-brand {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 8px #FF00CC;
}

.frostrellaikez-header .brand-text {
    font-size: 1.25rem;
}

.frostrellaikez-header .nav-link {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    color: #E0E0E0;
    text-transform: uppercase;
    margin: 0 10px;
    transition: color 0.3s ease, text-shadow 0.3s ease;
    letter-spacing: 1px;
}

.frostrellaikez-header .nav-link:hover,
.frostrellaikez-header .nav-link:focus {
    color: #00CCFF;
    text-shadow: 0 0 10px #00CCFF;
}

.frostrellaikez-header .nav-link.active {
    color: #00CCFF;
    text-shadow: 0 0 10px #00CCFF;
}

.frostrellaikez-header .btn-cta {
    background: linear-gradient(135deg, #FF00CC 0%, #BF00FF 100%);
    border: none;
    color: #FFFFFF;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 0 15px rgba(255, 0, 204, 0.4);
    border-radius: 0;
    clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.frostrellaikez-header .btn-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(255, 0, 204, 0.7);
    color: #FFFFFF;
}

.btn-cta {
    background: linear-gradient(135deg, #FF00CC 0%, #BF00FF 100%);
    border: none;
    color: #FFFFFF;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 15px rgba(255, 0, 204, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-cta:hover {
    transform: scale(1.03);
    box-shadow: 0 0 25px rgba(255, 0, 204, 0.7);
    color: #FFFFFF;
}

.frostrellaikez-header .custom-toggler {
    border: 1px solid #00CCFF;
    padding: 0.5rem;
}

.frostrellaikez-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(0, 204, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.frostrellaikez-header .navbar-collapse {
    background-color: #050510;
}

@media (max-width: 991.98px) {
    .frostrellaikez-header .navbar-collapse {
        padding: 2rem 1rem;
        border-top: 1px solid rgba(0, 204, 255, 0.2);
    }

    .frostrellaikez-header .nav-link {
        padding: 0.75rem 0;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .frostrellaikez-header .btn-cta {
        margin-top: 1.5rem;
        width: 100%;
        text-align: center;
    }

    .frostrellaikez-header .brand-text {
        font-size: 0.95rem;
        letter-spacing: 1px;
    }
}

@media (max-width: 480px) {
    .frostrellaikez-header .brand-text {
        font-size: 0.8rem;
        letter-spacing: 0.5px;
    }

    .frostrellaikez-header .navbar-brand img {
        width: 35px;
        height: 35px;
    }
}

/* ===== hero ===== */
.frostrellaikez-hero {
    position: relative;
    overflow: hidden;
    background: #050510;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.frostrellaikez-hero__bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.frostrellaikez-hero__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-position: center;
}

.frostrellaikez-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(5, 5, 16, 0.4), rgba(5, 5, 16, 0.9));
    z-index: 2;
}

.frostrellaikez-hero__container {
    position: relative;
    z-index: 3;
    padding-top: clamp(5rem, 10vw, 12rem);
    padding-bottom: clamp(5rem, 10vw, 12rem);
}

.frostrellaikez-hero__title {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    color: #FFFFFF;
    font-size: clamp(1.125rem, 8vw, 4rem);
    letter-spacing: 4px;
    text-transform: uppercase;
    text-shadow: 0 0 10px #FF00CC, 0 0 20px #00CCFF;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.frostrellaikez-hero__text {
    font-family: 'Rajdhani', sans-serif;
    color: #E0E0E0;
    font-size: clamp(0.9rem, 2.5vw, 1.25rem);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.frostrellaikez-hero__btn {
    display: inline-block;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #FFFFFF;
    padding: 1rem 3rem;
    background: linear-gradient(135deg, #FF00CC 0%, #BF00FF 50%, #00CCFF 100%);
    border: none;
    border-radius: 0;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 0 15px rgba(255, 0, 204, 0.6);
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.frostrellaikez-hero__btn:hover {
    transform: scale(1.05);
    color: #FFFFFF;
}

.frostrellaikez-hero__btn::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.8);
    transition: none;
}

.frostrellaikez-hero__btn:hover::after {
    animation: frostrellaikez-scanline 0.3s linear infinite;
}

@keyframes frostrellaikez-scanline {
    0% {
        top: -100%;
    }

    100% {
        top: 200%;
    }
}

@media (max-width: 768px) {
    .frostrellaikez-hero__title {
        font-size: 1.125rem;
        letter-spacing: 2px;
    }

    .frostrellaikez-hero__text {
        font-size: 0.85rem;
    }

    .frostrellaikez-hero__btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}

/* ===== about-game ===== */
#about-frosty-run {
    background-color: #050510;
    color: #FFFFFF;
    font-family: 'Rajdhani', sans-serif;
    position: relative;
    overflow: hidden;
}

#about-frosty-run .about-game-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #FFFFFF;
    text-shadow: 0 0 10px #FF00CC, 0 0 20px #00CCFF;
    line-height: 1.2;
}

#about-frosty-run .about-game-content {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 204, 255, 0.3);
    position: relative;
    backdrop-filter: blur(10px);
    z-index: 2;
}

#about-frosty-run .about-game-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #FF00CC, #BF00FF, #00CCFF);
}

#about-frosty-run .about-game-description p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #E0E0E0;
}

#about-frosty-run .about-game-image-container {
    position: relative;
    padding: 10px;
}

#about-frosty-run .image-glitch-frame {
    position: relative;
    border: 1px solid #BF00FF;
    box-shadow: 0 0 30px rgba(191, 0, 255, 0.3);
    overflow: hidden;
}

#about-frosty-run .about-game-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    object-fit: cover;
    min-height: 300px;
}

#about-frosty-run .about-game-image-container:hover .about-game-img {
    transform: scale(1.05);
}

@media (max-width: 991.98px) {
    #about-frosty-run .about-game-content {
        padding: 2rem !important;
    }

    #about-frosty-run .about-game-title {
        font-size: 1.5rem;
    }

    #about-frosty-run .about-game-description p {
        font-size: 1rem;
    }
}

/* ===== latest-guides ===== */
.latest-guides-block {
    position: relative;
    background-color: #050510;
    background-image: var(--bg-latest-guides);
    background-size: cover;
    background-position: center;
    color: #FFFFFF;
    overflow: hidden;
    font-family: 'Rajdhani', sans-serif;
}

.latest-guides-block__noise {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    z-index: 0;
}

.latest-guides-block__title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #00CCFF;
    text-shadow: 0 0 10px #00CCFF, 0 0 20px #FF00CC;
    margin-bottom: 0.5rem;
}

.latest-guides-block__subtitle {
    font-size: 1.1rem;
    color: #E0E0E0;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.latest-guides-block__card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 204, 255, 0.3);
    border-radius: 0;
    overflow: hidden;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
}

.latest-guides-block__card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 15px rgba(255, 0, 204, 0.4);
    border-color: #FF00CC;
}

.latest-guides-block__img-wrapper {
    display: block;
    overflow: hidden;
    position: relative;
    height: 200px;
}

.latest-guides-block__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.latest-guides-block__card:hover .latest-guides-block__img {
    transform: scale(1.1);
}

.latest-guides-block__content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.latest-guides-block__meta {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    color: #A0A0A0;
    margin-bottom: 1rem;
}

.latest-guides-block__meta-item i {
    color: #BF00FF;
    margin-right: 0.3rem;
}

.latest-guides-block__card-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.latest-guides-block__card-title a {
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.latest-guides-block__card-title a:hover {
    color: #00CCFF;
}

.latest-guides-block__excerpt {
    font-size: 0.95rem;
    color: #E0E0E0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.latest-guides-block__btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #FF00CC 0%, #BF00FF 100%);
    color: #FFFFFF;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    text-decoration: none;
    text-align: center;
    clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(255, 0, 204, 0.4);
}

.latest-guides-block__btn:hover {
    transform: scale(1.05);
    background: linear-gradient(135deg, #BF00FF 0%, #00CCFF 100%);
    box-shadow: 0 0 20px rgba(0, 204, 255, 0.6);
    color: #FFFFFF;
}

@media (max-width: 768px) {
    .latest-guides-block__title {
        font-size: 1.5rem;
    }

    .latest-guides-block__subtitle {
        font-size: 0.9rem;
    }

    .latest-guides-block__card-title {
        font-size: 1.1rem;
    }
}

/* ===== locations ===== */
.locations-section {
    background-color: #050510;
    color: #FFFFFF;
    font-family: 'Rajdhani', sans-serif;
    position: relative;
    overflow: hidden;
}

.locations-section .section-title {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #FFFFFF;
    text-shadow: 0 0 10px #FF00CC, 0 0 20px #00CCFF;
}

.locations-section .section-subtitle {
    max-width: 700px;
    color: #E0E0E0;
    font-size: 1.1rem;
    line-height: 1.6;
}

.locations-section .location-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 204, 255, 0.3);
    border-radius: 0;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.locations-section .card-link-wrapper {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.locations-section .card-img-container {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.locations-section .card-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.locations-section .card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(5, 5, 16, 0.8) 100%);
    opacity: 0.6;
    transition: opacity 0.4s ease;
}

.locations-section .card-content {
    position: relative;
    z-index: 2;
}

.locations-section .card-title {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    color: #00CCFF;
    transition: color 0.3s ease;
}

.locations-section .card-text {
    color: #A0A0A0;
    font-size: 0.95rem;
}

.locations-section .location-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(255, 0, 204, 0.2);
    border-color: #FF00CC;
}

.locations-section .location-card:hover .card-img-container img {
    transform: scale(1.1);
}

.locations-section .location-card:hover .card-overlay {
    opacity: 0.3;
}

.locations-section .location-card:hover .card-title {
    color: #FF00CC;
    text-shadow: 0 0 8px rgba(255, 0, 204, 0.8);
}

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

    .locations-section .card-img-container {
        height: 200px;
    }
}

/* ===== footer ===== */
.frostrellaikez-footer {
    background: #050510;
    color: #FFFFFF;
    font-family: 'Rajdhani', sans-serif;
    border-top: 2px solid transparent;
    border-image: linear-gradient(90deg, #FF00CC, #BF00FF, #00CCFF) 1;
    position: relative;
    overflow: hidden;
}

.frostrellaikez-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, rgba(255, 0, 204, 0.05), transparent);
    pointer-events: none;
}

.frostrellaikez-footer-logo {
    max-width: 45px;
    height: auto;
    filter: drop-shadow(0 0 5px #00CCFF);
}

.frostrellaikez-footer-site-name {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px #FF00CC;
}

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

.frostrellaikez-footer-desc {
    color: #E0E0E0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.frostrellaikez-footer-link {
    color: #A0A0A0;
    text-decoration: none;
    transition: 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    display: inline-block;
    position: relative;
}

.frostrellaikez-footer-link:hover {
    color: #FF00CC;
    transform: translateX(5px);
    text-shadow: 2px 0 #00CCFF, -2px 0 #BF00FF;
}

.frostrellaikez-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.frostrellaikez-footer-copy {
    color: #757575;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

    .frostrellaikez-footer-site-name {
        font-size: 1.2rem;
    }
}

/* ===== PAGE: privacy ===== */
.privacy-content-section {
  padding: clamp(2rem, 5vw, 4rem);
  background: rgba(5, 5, 16, 0.9);
  color: #FFFFFF;
  font-family: 'Rajdhani', sans-serif;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

.privacy-article {
  max-width: 1000px;
  margin: 0 auto;
}

.privacy-article h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 900;
  color: #FF00CC;
  text-transform: uppercase;
  letter-spacing: 4px;
  text-shadow: 0 0 10px #FF00CC, 0 0 20px #00CCFF;
  margin-bottom: 1.5rem;
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: anywhere;
  word-break: break-word;
  max-width: 100%;
}

.last-updated {
  text-align: center;
  font-size: 0.9rem;
  color: #00CCFF;
  margin-bottom: 4rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.privacy-article h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.4rem, 4vw, 1.8rem);
  color: #00CCFF;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  border-left: 4px solid #BF00FF;
  padding-left: 1rem;
  text-shadow: 0 0 5px rgba(0, 204, 255, 0.5);
}

.privacy-article p {
  margin-bottom: 1.5rem;
  font-size: clamp(1rem, 2vw, 1.1rem);
  color: #E0E0E0;
  hyphens: auto;
}

.privacy-article ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2rem;
}

.privacy-article li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  color: #E0E0E0;
}

.privacy-article li::before {
  content: '>';
  position: absolute;
  left: 0;
  color: #FF00CC;
  font-weight: bold;
  font-family: 'Orbitron', sans-serif;
  text-shadow: 0 0 8px #FF00CC;
}

.privacy-article strong {
  color: #BF00FF;
  font-weight: 700;
}

.privacy-intro {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border: 1px solid rgba(0, 204, 255, 0.3);
  border-radius: 0;
  margin-bottom: 3rem;
  box-shadow: 0 0 20px rgba(255, 0, 204, 0.1);
}

@media (max-width: 768px) {
  .privacy-article h1 {
    font-size: 1.3rem;
    letter-spacing: 1px;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .privacy-article h2 {
    font-size: 1.4rem;
  }
  .privacy-content-section {
    padding: 1.5rem;
  }
  .privacy-intro {
    padding: 1.2rem;
  }
}

@media (max-width: 480px) {
  .privacy-article h1 {
    font-size: 1.05rem;
    letter-spacing: 0.5px;
  }
}

/* ===== PAGE: terms ===== */
.policy-wrapper { background: #050510; color: #E0E0E0; font-family: 'Rajdhani', sans-serif; line-height: 1.6; padding: clamp(2rem, 5vw, 4rem) 0; position: relative; overflow: hidden; } .policy-content-body { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; } .terms-container { background: rgba(10, 10, 30, 0.8); backdrop-filter: blur(10px); border: 1px solid rgba(0, 204, 255, 0.2); padding: clamp(2rem, 4vw, 3.5rem); border-radius: 20px; box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5); } .terms-header { margin-bottom: 3rem; border-bottom: 2px solid rgba(255, 0, 204, 0.3); padding-bottom: 1.5rem; } .terms-header h2 { font-family: 'Orbitron', sans-serif; color: #FF00CC; font-weight: 900; text-transform: uppercase; letter-spacing: 2px; text-shadow: 0 0 10px rgba(255, 0, 204, 0.5); font-size: clamp(1.5rem, 4vw, 2.5rem); margin-bottom: 1rem; } .terms-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; } @media (min-width: 768px) { .terms-grid { grid-template-columns: repeat(2, 1fr); } } .terms-item { padding: 1.5rem; border: 1px solid rgba(0, 204, 255, 0.1); border-radius: 12px; background: rgba(255, 255, 255, 0.03); transition: transform 0.3s ease, border-color 0.3s ease; } .terms-item:hover { transform: translateY(-5px); border-color: #00CCFF; box-shadow: 0 0 15px rgba(0, 204, 255, 0.2); } .terms-item h3 { font-family: 'Orbitron', sans-serif; color: #00CCFF; font-size: 1.25rem; font-weight: 700; margin-bottom: 1rem; text-transform: uppercase; display: flex; align-items: center; gap: 0.5rem; } .terms-item h3::before { content: ''; width: 8px; height: 8px; background: #BF00FF; border-radius: 50%; box-shadow: 0 0 8px #BF00FF; } .terms-item p { font-size: 1rem; color: #A0A0A0; margin: 0; } .terms-footer-note { margin-top: 3rem; padding: 1.5rem; background: linear-gradient(90deg, rgba(255, 0, 204, 0.05), rgba(0, 204, 255, 0.05)); border-radius: 12px; text-align: center; border: 1px dashed rgba(191, 0, 255, 0.3); } .terms-footer-note p { font-size: 0.9rem; font-style: italic; color: #757575; }

/* ===== PAGE: disclaimer ===== */
.policy-wrapper {
  background-color: #050510;
  color: #FFFFFF;
  font-family: 'Rajdhani', sans-serif;
  padding: clamp(3rem, 5vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.policy-content-body {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 2;
}

.disclaimer-container {
  background: rgba(10, 10, 30, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 204, 255, 0.2);
  padding: 2.5rem;
  position: relative;
}

.disclaimer-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #FF00CC, #BF00FF, #00CCFF);
}

.disclaimer-main-title {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #00CCFF;
  text-shadow: 0 0 10px rgba(0, 204, 255, 0.5);
  margin-bottom: 0.5rem;
  word-wrap: break-word;
  overflow-wrap: anywhere;
  word-break: break-word;
  max-width: 100%;
}

.disclaimer-date {
  font-size: 0.9rem;
  color: #A0A0A0;
  letter-spacing: 1px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 1.5rem;
}

.disclaimer-section h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #FF00CC;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
}

.disclaimer-section h3::before {
  content: '//';
  margin-right: 10px;
  color: #00CCFF;
}

.disclaimer-section p {
  line-height: 1.8;
  color: #E0E0E0;
  margin-bottom: 1.5rem;
}

.disclaimer-section ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
}

.disclaimer-section li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: #E0E0E0;
}

.disclaimer-section li::before {
  content: '>';
  position: absolute;
  left: 0;
  color: #BF00FF;
  font-weight: bold;
}

@media (max-width: 768px) {
  .disclaimer-container {
    padding: 1.5rem;
  }

  .disclaimer-main-title {
    font-size: 1.2rem;
    letter-spacing: 1px;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .disclaimer-section h3 {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .disclaimer-main-title {
    font-size: 0.95rem;
    letter-spacing: 0.5px;
  }
}

/* ===== PAGE: cookies ===== */
.policy-wrapper {
  background: #050510;
  padding: clamp(3rem, 8vw, 6rem) 0;
  min-height: 100vh;
  font-family: 'Rajdhani', sans-serif;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}
.policy-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top left, rgba(255, 0, 204, 0.1), transparent 50%),
              radial-gradient(circle at bottom right, rgba(0, 204, 255, 0.1), transparent 50%);
  pointer-events: none;
}
.policy-content-body {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}
.policy-content-body h2 {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  color: #FF00CC;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 2rem;
  text-shadow: 0 0 10px rgba(255, 0, 204, 0.6);
  border-left: 4px solid #00CCFF;
  padding-left: 1.5rem;
}
.policy-content-body h3 {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: clamp(1.4rem, 4vw, 1.8rem);
  color: #00CCFF;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
}
.policy-content-body h4 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.2rem;
  color: #BF00FF;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}
.policy-content-body p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #E0E0E0;
  margin-bottom: 1.5rem;
}
.cookie-type-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 204, 255, 0.3);
  padding: 2rem;
  border-radius: 0px;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  backdrop-filter: blur(10px);
}
.cookie-type-card:hover {
  transform: translateY(-5px);
  border-color: #FF00CC;
  box-shadow: 0 10px 30px rgba(255, 0, 204, 0.2);
}
.custom-cookie-list {
  list-style: none;
  padding-left: 0;
}
.custom-cookie-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: #E0E0E0;
}
.custom-cookie-list li::before {
  content: '\ea52';
  font-family: 'boxicons';
  position: absolute;
  left: 0;
  color: #FF00CC;
  font-size: 1.2rem;
  top: 2px;
}
@media (max-width: 768px) {
  .policy-content-body h2 { font-size: 18px; }
  .policy-content-body h3 { font-size: 16px; }
  .policy-content-body h4 { font-size: 14px; }
  .cookie-type-card { padding: 1.5rem; }
}

/* ===== PAGE: permafrost-world ===== */
.permafrost-world-block {
  background-color: #050510;
  color: #FFFFFF;
  font-family: 'Rajdhani', sans-serif;
  overflow: hidden;
  position: relative;
}

.permafrost-world-block .permafrost-title {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 4px;
  position: relative;
  text-shadow: 0 0 10px #FF00CC, 0 0 20px #00CCFF;
}

.permafrost-world-block .glitch-separator {
  height: 4px;
  width: 100px;
  background: linear-gradient(90deg, #FF00CC, #00CCFF);
  margin: 0 auto;
  position: relative;
}

.permafrost-world-block .permafrost-intro {
  color: #E0E0E0;
  font-size: 1.25rem;
  line-height: 1.6;
  max-width: 800px;
}

.permafrost-world-block .location-card {
  background: rgba(10, 10, 30, 0.8);
  border: 1px solid rgba(0, 204, 255, 0.3);
  border-radius: 0;
  transition: transform 600ms cubic-bezier(0.23, 1, 0.32, 1), box-shadow 600ms cubic-bezier(0.23, 1, 0.32, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.permafrost-world-block .location-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 50px rgba(255, 0, 204, 0.3);
  border-color: #FF00CC;
}

.permafrost-world-block .location-link-wrapper {
  text-decoration: none;
  display: block;
}

.permafrost-world-block .location-img-box {
  height: 250px;
  overflow: hidden;
  position: relative;
}

.permafrost-world-block .location-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}

.permafrost-world-block .location-card:hover .location-img {
  transform: scale(1.1);
}

.permafrost-world-block .img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(255, 0, 204, 0.1), rgba(0, 204, 255, 0.1));
  mix-blend-mode: color-dodge;
}

.permafrost-world-block .location-content {
  padding: 1.5rem 1.5rem 0.5rem;
}

.permafrost-world-block .location-name {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.2rem;
  color: #00CCFF;
  margin: 0;
  text-transform: uppercase;
}

.permafrost-world-block .location-footer {
  padding: 0 1.5rem 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.permafrost-world-block .location-desc {
  color: #A0A0A0;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.permafrost-world-block .btn-permafrost {
  display: inline-block;
  background: linear-gradient(135deg, #FF00CC 0%, #BF00FF 50%, #00CCFF 100%);
  color: #FFFFFF;
  padding: 0.8rem 1.5rem;
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  box-shadow: 0 0 15px rgba(255, 0, 204, 0.4);
  border: none;
  transition: all 0.3s ease;
  font-size: 0.85rem;
}

.permafrost-world-block .btn-permafrost:hover {
  filter: brightness(1.2);
  box-shadow: 0 0 25px rgba(0, 204, 255, 0.6);
  color: #FFFFFF;
}

@media (max-width: 768px) {
  .permafrost-world-block .permafrost-title {
    font-size: 1.5rem;
  }
  .permafrost-world-block .permafrost-intro {
    font-size: 1rem;
  }
}

/* ===== PAGE: survival-school ===== */
.survival-header {
  background: var(--backgrounds-main);
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid var(--primary);
}
.survival-header::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--gradients-surface_glow);
  pointer-events: none;
}
.survival-header__title {
  font-family: 'Orbitron', sans-serif;
  color: var(--text-dark_bg_primary);
  text-shadow: 0 0 10px var(--color-primary), 0 0 20px var(--color-secondary);
  font-size: clamp(2rem, 5vw, 4rem);
  text-transform: uppercase;
  letter-spacing: 4px;
}
.survival-header__subtitle {
  font-family: 'Rajdhani', sans-serif;
  color: var(--text-dark_bg_secondary);
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto;
}
.survival-header__divider {
  width: 100px;
  height: 4px;
  background: var(--gradients-psychedelic_flow);
  margin-top: 2rem;
  clip-path: polygon(10% 0, 100% 0, 90% 100%, 0% 100%);
}

.survival-guides {
  background: var(--backgrounds-main);
}
.survival-guides__search-wrapper {
  position: relative;
  background: var(--backgrounds-glass);
  border: 1px solid var(--secondary);
  border-radius: 0px;
  padding: 5px;
  box-shadow: 0 0 15px rgba(0, 204, 255, 0.2);
}
.survival-guides__search-wrapper i {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--secondary);
  font-size: 1.5rem;
}
.survival-guides__search-wrapper input {
  background: transparent;
  border: none;
  color: #fff;
  padding-left: 50px;
  height: 50px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 500;
}
.survival-guides__search-wrapper input:focus {
  background: transparent;
  color: #fff;
  box-shadow: none;
}
.survival-guides__search-wrapper input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.survival-card {
  background: var(--backgrounds-glass);
  border: 1px solid rgba(0, 204, 255, 0.3);
  border-radius: 0px;
  transition: 600ms cubic-bezier(0.23, 1, 0.32, 1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.survival-card:hover {
  transform: scale(1.05);
  border-color: var(--primary);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 20px rgba(255, 0, 204, 0.3);
}
.survival-card__img-link {
  display: block;
  height: 220px;
  overflow: hidden;
  position: relative;
}
.survival-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.survival-card:hover .survival-card__img {
  transform: scale(1.1);
}
.survival-card__content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.survival-card__meta {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.85rem;
  color: var(--secondary);
  display: flex;
  gap: 15px;
}
.survival-card__title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
}
.survival-card__title a {
  color: var(--text-dark_bg_primary);
  text-decoration: none;
  transition: color 0.3s ease;
}
.survival-card__title a:hover {
  color: var(--secondary);
}
.survival-card__text {
  font-family: 'Rajdhani', sans-serif;
  color: var(--text-dark_bg_secondary);
  line-height: 1.5;
  margin-bottom: 0;
  flex-grow: 1;
}
.survival-card__btn {
  display: inline-block;
  background: var(--gradients-psychedelic_flow);
  color: #fff;
  text-decoration: none;
  text-align: center;
  padding: 12px 25px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  clip-path: polygon(10% 0, 100% 0, 90% 100%, 0% 100%);
  transition: all 0.3s ease;
  border: none;
}
.survival-card__btn:hover {
  filter: brightness(1.2);
  box-shadow: 0 0 15px rgba(255, 0, 204, 0.6);
  color: #fff;
}

/* ===== PAGE: heroes-factions ===== */
.heroes-factions-section {
  background-color: #050510;
  color: #FFFFFF;
  font-family: 'Rajdhani', sans-serif;
  overflow: hidden;
}

.heroes-factions-section .hf-main-title {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: clamp(2.5rem, 8vw, 4rem);
  text-transform: uppercase;
  letter-spacing: 4px;
  color: #FFFFFF;
  text-shadow: 0 0 10px #FF00CC, 0 0 20px #00CCFF;
  margin-bottom: 1.5rem;
}

.heroes-factions-section .hf-subtitle {
  font-size: 1.25rem;
  color: #E0E0E0;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.heroes-factions-section .hf-glitch-divider {
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #FF00CC, #00CCFF);
  box-shadow: 0 0 15px #FF00CC;
  border-radius: 2px;
}

.heroes-factions-section .hf-filter-wrapper {
  background: rgba(10, 10, 30, 0.8);
  padding: 8px;
  border: 1px solid rgba(0, 204, 255, 0.3);
  border-radius: 50px;
  display: flex;
  gap: 10px;
  margin-bottom: 3rem;
}

.heroes-factions-section .hf-filter-btn {
  background: transparent;
  border: none;
  color: #A0A0A0;
  padding: 10px 25px;
  border-radius: 40px;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  transition: all 0.4s ease;
  cursor: pointer;
}

.heroes-factions-section .hf-filter-btn:hover,
.heroes-factions-section .hf-filter-btn.active {
  color: #FFFFFF;
  background: linear-gradient(135deg, #FF00CC 0%, #BF00FF 50%, #00CCFF 100%);
  box-shadow: 0 0 15px rgba(255, 0, 204, 0.6);
}

.heroes-factions-section .hf-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 204, 255, 0.2);
  border-radius: 0px;
  position: relative;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.6s ease;
  display: flex;
  flex-direction: column;
}

.heroes-factions-section .hf-card:hover {
  transform: scale(1.03) translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.8), 0 0 20px rgba(0, 204, 255, 0.3);
  border-color: #00CCFF;
}

.heroes-factions-section .hf-card-link-wrapper {
  text-decoration: none;
  color: inherit;
  display: block;
}

.heroes-factions-section .hf-card-img-container {
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
}

.heroes-factions-section .hf-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.heroes-factions-section .hf-card:hover .hf-card-img {
  transform: scale(1.1);
}

.heroes-factions-section .hf-card-body {
  padding: 1.5rem 1.5rem 0.5rem;
}

.heroes-factions-section .hf-card-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #00CCFF;
  text-transform: uppercase;
  margin-bottom: 0;
}

.heroes-factions-section .hf-card-desc {
  color: #A0A0A0;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.heroes-factions-section .hf-card-btn {
  display: inline-block;
  padding: 10px 20px;
  background: transparent;
  border: 1px solid #FF00CC;
  color: #FFFFFF;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 2px;
  transition: all 0.3s ease;
  text-align: center;
  width: 100%;
}

.heroes-factions-section .hf-card-btn:hover {
  background: #FF00CC;
  box-shadow: 0 0 15px #FF00CC;
  color: #FFFFFF;
}

@media (max-width: 768px) {
  .heroes-factions-section .hf-main-title {
    font-size: 1.8rem;
  }
  .heroes-factions-section .hf-subtitle {
    font-size: 1rem;
  }
  .heroes-factions-section .hf-card-title {
    font-size: 1.2rem;
  }
}

/* ===== PAGE: update-news ===== */
.frostrella-news {
  background-color: #050510;
  font-family: 'Rajdhani', sans-serif;
  color: #FFFFFF;
  overflow: hidden;
  position: relative;
}

.frostrella-news::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top left, rgba(255, 0, 204, 0.1), transparent);
  pointer-events: none;
}

.frostrella-news__title {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: #FFFFFF;
  text-shadow: 0 0 10px #FF00CC, 0 0 20px #00CCFF;
  font-size: clamp(2rem, 5vw, 4rem);
  margin-bottom: 1rem;
}

.frostrella-news__lead {
  font-size: 1.25rem;
  color: #E0E0E0;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.frostrella-news__glitch-line {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #FF00CC, #00CCFF);
  margin: 0 auto;
  position: relative;
}

.frostrella-news__glitch-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: -10px;
  width: 10px;
  height: 100%;
  background: #BF00FF;
  animation: glitch-anim 2s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
  0% { transform: translateX(0); opacity: 1; }
  50% { transform: translateX(100px); opacity: 0.5; }
  100% { transform: translateX(0); opacity: 1; }
}

.frostrella-news__filter-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 204, 255, 0.3);
  color: #FFFFFF;
  padding: 0.75rem 2rem;
  text-transform: uppercase;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
}

.frostrella-news__filter-btn:hover,
.frostrella-news__filter-btn.active {
  background: linear-gradient(135deg, #FF00CC 0%, #BF00FF 100%);
  border-color: transparent;
  box-shadow: 0 0 15px rgba(255, 0, 204, 0.6);
  transform: translateY(-2px);
}

.frostrella-news__card {
  background: rgba(10, 10, 30, 0.8);
  border: 1px solid rgba(0, 204, 255, 0.2);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
}

.frostrella-news__card:hover {
  transform: scale(1.03) translateY(-10px);
  border-color: #FF00CC;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 204, 255, 0.2);
}

.frostrella-news__card-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.frostrella-news__card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.frostrella-news__card:hover .frostrella-news__card-img-wrap img {
  transform: scale(1.1);
}

.frostrella-news__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #00CCFF;
  color: #050510;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  font-family: 'Orbitron', sans-serif;
  z-index: 2;
}

.frostrella-news__card-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.frostrella-news__card-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #00CCFF;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.frostrella-news__card-text {
  font-size: 0.95rem;
  color: #A0A0A0;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.frostrella-news__date {
  font-size: 0.8rem;
  color: #757575;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
}

.js-news-item {
  transition: opacity 0.4s ease, transform 0.4s ease;
}

@media (max-width: 768px) {
  .frostrella-news__title {
    font-size: 1.5rem;
  }
  .frostrella-news__lead {
    font-size: 1rem;
  }
  .frostrella-news__filter-btn {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }
}

/* ===== PAGE: contact ===== */
.contact-glitch-section {
  padding: clamp(4rem, 8vw, 10rem) 0;
  background: #050510;
  position: relative;
  overflow: hidden;
}

.contact-glitch-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 30%, rgba(255, 0, 204, 0.1), transparent 50%),
              radial-gradient(circle at 80% 70%, rgba(0, 204, 255, 0.1), transparent 50%);
  pointer-events: none;
}

.contact-glass-card {
  position: relative;
  background: rgba(10, 10, 30, 0.8);
  border: 1px solid rgba(0, 204, 255, 0.3);
  border-radius: 0;
  overflow: hidden;
  backdrop-filter: blur(20px);
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
}

.contact-accent-overlay {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  mix-blend-mode: screen;
  pointer-events: none;
}

.contact-content-wrapper {
  position: relative;
  z-index: 2;
  padding: clamp(2rem, 5vw, 5rem);
}

.glitch-icon-box {
  font-size: 4rem;
  color: #00CCFF;
  text-shadow: 0 0 15px #00CCFF;
  display: inline-block;
  animation: float-icon 4s ease-in-out infinite;
}

@keyframes float-icon {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.contact-main-title {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  text-transform: uppercase;
  letter-spacing: 4px;
  color: #FFFFFF;
  text-shadow: 2px 2px 0px #FF00CC, -2px -2px 0px #00CCFF;
}

.contact-lead-text {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: #00CCFF;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.info-text-box {
  max-width: 700px;
  margin: 0 auto;
  font-family: 'Rajdhani', sans-serif;
  color: #E0E0E0;
  line-height: 1.8;
  font-size: 1.1rem;
}

.btn-cyber-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, #FF00CC 0%, #BF00FF 100%);
  color: #FFF !important;
  text-decoration: none;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: none;
  overflow: hidden;
  transition: 0.3s ease;
  box-shadow: 0 0 15px rgba(255, 0, 204, 0.4);
}

.btn-cyber-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(255, 0, 204, 0.6);
}

.btn-glitch-effect {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transform: skewX(-45deg);
  transition: 0.5s;
}

.btn-cyber-primary:hover .btn-glitch-effect {
  left: 200%;
}

.sub-feature-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 204, 255, 0.2);
  padding: 2.5rem 1.5rem;
  text-align: center;
  height: 100%;
  transition: all 0.4s ease;
  position: relative;
}

.sub-feature-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #FF00CC;
  transform: translateY(-5px);
}

.sub-feature-card i {
  font-size: 2.5rem;
  color: #FF00CC;
  margin-bottom: 1.5rem;
}

.sub-feature-card h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.2rem;
  color: #FFF;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.sub-feature-card p {
  font-family: 'Rajdhani', sans-serif;
  color: #A0A0A0;
  font-size: 0.95rem;
  margin-bottom: 0;
}

.ice-comment-card.main-comment {
    background: rgba(10, 10, 30, 0.8);
    border: 1px solid rgba(0, 204, 255, 0.3);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.ice-comment-card.main-comment:hover {
    border-color: #FF00CC;
    box-shadow: 0 0 20px rgba(255, 0, 204, 0.4);
    transform: translateY(-5px);
}

.ice-avatar-wrapper {
    position: relative;
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.ice-avatar-initials {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FF00CC 0%, #BF00FF 50%, #00CCFF 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 1.2rem;
    border-radius: 0px;
    clip-path: polygon(15% 0, 100% 0, 100% 85%, 85% 100%, 0 100%, 0 15%);
    border: 2px solid #00CCFF;
    z-index: 2;
    position: relative;
}

.ice-avatar-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00CCFF;
    filter: blur(15px);
    opacity: 0.3;
    z-index: 1;
}

.ice-author-name {
    font-family: 'Orbitron', sans-serif;
    color: #00CCFF;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 8px rgba(0, 204, 255, 0.6);
}

.ice-comment-date {
    font-family: 'Rajdhani', sans-serif;
    color: #A0A0A0;
    font-size: 0.85rem;
}

.ice-comment-body {
    font-family: 'Rajdhani', sans-serif;
    color: #E0E0E0;
    line-height: 1.6;
    font-size: 1.1rem;
}

.ice-action-btn {
    background: transparent;
    border: none;
    color: #BF00FF;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: 0.3s;
    padding: 0;
    cursor: pointer;
}

.ice-action-btn:hover {
    color: #FF00CC;
    text-shadow: 0 0 10px #FF00CC;
}

.ice-reply-wrapper {
    border-left: 2px solid rgba(191, 0, 255, 0.3) !important;
    margin-top: 1rem;
}

.ice-comment-card.reply-comment {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(191, 0, 255, 0.2);
    backdrop-filter: blur(5px);
}

.ice-avatar-wrapper.sm {
    width: 45px;
    height: 45px;
}

.ice-avatar-initials.sm {
    font-size: 1rem;
    border-color: #BF00FF;
}

.ice-author-name.sm {
    font-size: 0.9rem;
    color: #BF00FF;
}

.ice-comment-body p {
    font-size: 0.95rem;
    margin-bottom: 0;
    color: #D0D0D0;
}

.ice-action-btn.sm {
    font-size: 0.8rem;
}


/* ===== PAGE TEMPLATE: game ===== */
.game-detail-template {
    background-color: #050510;
    color: #FFFFFF;
    overflow-x: hidden;
}

.game-hero-section {
    background: radial-gradient(circle at top right, rgba(255, 0, 204, 0.1), transparent 50%),
        radial-gradient(circle at bottom left, rgba(0, 204, 255, 0.1), transparent 50%);
    border-bottom: 1px solid rgba(0, 204, 255, 0.2);
}

.game-category-tag {
    display: inline-block;
    padding: 4px 12px;
    background: #BF00FF;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.game-title-main {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: clamp(2rem, 5vw, 4rem);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px #FF00CC, 0 0 20px rgba(0, 204, 255, 0.5);
    margin-bottom: 1rem;
}

.game-subtitle-main {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.25rem;
    color: #E0E0E0;
    max-width: 600px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Rajdhani', sans-serif;
    color: #A0A0A0;
    font-size: 0.95rem;
}

.meta-item i {
    color: #00CCFF;
    font-size: 1.2rem;
}

.game-preview-card img {
    border: 2px solid #00CCFF;
    box-shadow: 0 0 30px rgba(0, 204, 255, 0.3);
    max-height: 400px;
    width: 100%;
    object-fit: cover;
}

.game-viewport-wrapper {
    position: relative;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.game-top-bar {
    background: rgba(10, 10, 30, 0.9);
    border-bottom: 1px solid rgba(0, 204, 255, 0.2);
}

.btn-fullscreen {
    background: transparent;
    border: 1px solid #00CCFF;
    color: #00CCFF;
    padding: 4px 12px;
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-fullscreen:hover {
    background: #00CCFF;
    color: #000;
}

.game-iframe-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

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

.custom-tabs-container .nav-tabs .nav-link {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #E0E0E0;
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 10px 25px;
    border-radius: 0;
}

.custom-tabs-container .nav-tabs .nav-link.active {
    background: #FF00CC;
    color: #FFF;
    border-color: #FF00CC;
    box-shadow: 0 0 15px rgba(255, 0, 204, 0.5);
}

.tab-content-wrapper {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tab-pane-custom {
    display: none;
}

.tab-pane-custom.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sidebar-box {
    background: rgba(10, 10, 30, 0.8);
    border: 1px solid rgba(0, 204, 255, 0.2);
    backdrop-filter: blur(10px);
}

.stat-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
}

.stat-row strong {
    color: #00CCFF;
}

.comment-auth-notice {
    background: rgba(255, 0, 204, 0.05);
    border: 1px dashed #FF00CC;
    color: #FF00CC;
    font-family: 'Rajdhani', sans-serif;
    text-align: center;
}

.comment-form-mock .form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #FFF;
    padding: 12px;
    border-radius: 0;
}

.comment-form-mock .form-control:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: #00CCFF;
    box-shadow: 0 0 10px rgba(0, 204, 255, 0.3);
    color: #FFF;
}

.ice-comment-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.ice-avatar-wrapper {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FF00CC, #00CCFF);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.ice-avatar-initials {
    font-weight: 900;
    color: #FFF;
    font-family: 'Orbitron', sans-serif;
}

.ice-author-name {
    font-family: 'Orbitron', sans-serif;
    color: #00CCFF;
    font-size: 1rem;
}

.ice-comment-date {
    font-size: 0.8rem;
    color: #757575;
}

.ice-action-btn {
    background: transparent;
    border: none;
    color: #A0A0A0;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: 0.3s;
}

.ice-action-btn:hover,
.ice-action-btn.active {
    color: #FF00CC;
}

@media (max-width: 768px) {
    .game-title-main {
        font-size: 2rem;
    }

    .game-hero-section {
        text-align: center;
    }

    .game-meta-group {
        justify-content: center;
    }
}

/* ===== PAGE TEMPLATE: permafrost-world ===== */
.frostrella-detail-template {
    background-color: #050510;
    color: #FFFFFF;
    overflow-x: hidden;
}

.frostrella-hero-detail {
    min-height: 50vh;
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 100px 0;
    border-bottom: 3px solid #00CCFF;
}

.detail-hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 900;
    color: #FFFFFF;
    text-shadow: 0 0 15px #FF00CC, 0 0 30px #00CCFF;
    text-transform: uppercase;
}

.detail-hero-subtitle {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.5rem;
    color: #00CCFF;
    letter-spacing: 2px;
}

.breadcrumb-item a {
    color: #A0A0A0;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.breadcrumb-item.active {
    color: #FF00CC !important;
}

.section-title-neon {
    font-family: 'Orbitron', sans-serif;
    color: #00CCFF;
    text-transform: uppercase;
    border-left: 4px solid #FF00CC;
    padding-left: 15px;
    letter-spacing: 2px;
}

.detail-main-content {
    background: rgba(10, 10, 30, 0.8);
    border: 1px solid rgba(0, 204, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.content-wrapper {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #E0E0E0;
}

.location-info-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(255, 0, 204, 0.2);
}

.info-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.25rem;
    color: #FF00CC;
}

.custom-icon-list li i {
    color: #00CCFF;
    font-size: 1.5rem;
}

.sidebar-widget {
    background: rgba(10, 10, 30, 0.8);
    border: 1px solid rgba(0, 204, 255, 0.2);
}

.widget-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    color: #00CCFF;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255, 0, 204, 0.3);
    padding-bottom: 10px;
}

.sidebar-link {
    color: #E0E0E0;
    text-decoration: none;
    transition: 0.3s ease;
    display: block;
    padding: 5px 0;
}

.sidebar-link:hover {
    color: #FF00CC;
    padding-left: 10px;
}

.cta-widget {
    background: linear-gradient(135deg, #050510 0%, #1a0033 100%);
    border: 2px solid #FF00CC;
}

.custom-input {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(0, 204, 255, 0.3) !important;
    color: #FFFFFF !important;
    border-radius: 0;
}

.custom-input:focus {
    border-color: #FF00CC !important;
    box-shadow: 0 0 10px rgba(255, 0, 204, 0.4) !important;
}

.ice-comment-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 204, 255, 0.1);
}

.ice-avatar-wrapper {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FF00CC, #00CCFF);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.ice-avatar-initials {
    color: #FFF;
    font-weight: bold;
    font-family: 'Orbitron', sans-serif;
}

.ice-action-btn {
    background: transparent;
    border: none;
    color: #A0A0A0;
    font-size: 0.85rem;
    transition: 0.3s;
}

.ice-action-btn:hover,
.ice-action-btn.active {
    color: #FF00CC;
}

.text-accent {
    color: #BF00FF;
}

/* ===== PAGE TEMPLATE: survival-school ===== */
.survival-detail-section {
    background-color: #050510;
    color: #E0E0E0;
    font-family: 'Rajdhani', sans-serif;
    overflow-x: hidden;
}

.hero-detail-wrapper {
    padding: 100px 0 60px;
    background-size: cover;
    background-position: center;
    position: relative;
    border-bottom: 2px solid #FF00CC;
}

.detail-hero-title {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: #FFFFFF;
    text-shadow: 0 0 15px #FF00CC, 0 0 30px #00CCFF;
    text-transform: uppercase;
}

.breadcrumb-item a {
    color: #00CCFF;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.survival-content-card {
    background: rgba(10, 10, 30, 0.8);
    border: 1px solid rgba(0, 204, 255, 0.3);
    border-radius: 0;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.content-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #A0A0A0;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.content-meta .meta-item i {
    color: #BF00FF;
    font-size: 1.2rem;
}

.main-detail-img {
    border: 2px solid transparent;
    border-image: linear-gradient(45deg, #FF00CC, #00CCFF) 1;
    transition: transform 0.5s ease;
}

.survival-rich-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #E0E0E0;
}

.survival-rich-text h2,
.survival-rich-text h3 {
    font-family: 'Orbitron', sans-serif;
    color: #FFFFFF;
    margin-top: 2rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 5px #00CCFF;
}

.survival-rich-text p {
    margin-bottom: 1.5rem;
}

.survival-rich-text ul {
    list-style: none;
    padding-left: 0;
}

.survival-rich-text ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.survival-rich-text ul li::before {
    content: '>';
    position: absolute;
    left: 0;
    color: #FF00CC;
    font-weight: bold;
}

.sidebar-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(191, 0, 255, 0.3);
}

.sidebar-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    color: #00CCFF;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(0, 204, 255, 0.2);
    padding-bottom: 0.5rem;
}

.related-links-list a {
    color: #A0A0A0;
    text-decoration: none;
    transition: 0.3s ease;
    font-size: 0.95rem;
}

.related-links-list a:hover {
    color: #FF00CC;
    padding-left: 5px;
}

.survival-input {
    background: rgba(5, 5, 16, 0.8);
    border: 1px solid rgba(0, 204, 255, 0.4);
    color: #FFFFFF;
    border-radius: 0;
    padding: 0.75rem;
}

.survival-input:focus {
    background: rgba(10, 10, 30, 0.9);
    border-color: #FF00CC;
    box-shadow: 0 0 10px rgba(255, 0, 204, 0.3);
    color: #FFFFFF;
}

.survival-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.js-auth-warning {
    background: rgba(255, 0, 204, 0.1);
    border: 1px solid #FF00CC;
    font-weight: bold;
    text-align: center;
}


.ice-comment-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 204, 255, 0.1);
    transition: border-color 0.3s ease;
}

.ice-comment-card:hover {
    border-color: rgba(0, 204, 255, 0.4);
}

.ice-avatar-wrapper {
    width: 50px;
    height: 50px;
    position: relative;
}

.ice-avatar-initials {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FF00CC, #BF00FF);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: 'Orbitron';
    color: #FFF;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.ice-author-name {
    color: #00CCFF;
    font-family: 'Orbitron';
    font-size: 1rem;
}

.ice-comment-date {
    color: #757575;
    font-size: 0.8rem;
}

.ice-action-btn {
    background: none;
    border: none;
    color: #A0A0A0;
    font-size: 0.85rem;
    text-transform: uppercase;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.ice-action-btn:hover {
    color: #FF00CC;
}

.ice-reply-wrapper {
    margin-top: 1.5rem;
}

@media (max-width: 768px) {
    .survival-detail-section {
        padding: 0 10px;
    }

    .detail-hero-title {
        font-size: 1.8rem;
    }

    .survival-content-card {
        padding: 2rem 1rem;
    }

    .ice-reply-wrapper {
        margin-left: 20px !important;
    }
}

/* ===== PAGE TEMPLATE: heroes-factions ===== */
.frostrellaikez-detail-hero {
    padding: clamp(6rem, 15vw, 10rem) 0;
    background-size: cover;
    background-position: center;
    position: relative;
    border-bottom: 2px solid #00CCFF;
}

.frostrellaikez-detail-hero .detail-title {
    font-size: clamp(2.5rem, 8vw, 4rem);
    color: #FFFFFF;
    text-shadow: 0 0 10px #FF00CC, 0 0 20px #00CCFF;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.frostrellaikez-detail-hero .detail-subtitle {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(1rem, 3vw, 1.5rem);
    color: #00CCFF;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.frostrellaikez-detail-content {
    background-color: #050510;
    color: #FFFFFF;
}

.frostrellaikez-detail-content .detail-main-img {
    border: 2px solid #BF00FF;
    box-shadow: 0 0 30px rgba(191, 0, 255, 0.3);
    border-radius: 4px;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.frostrellaikez-detail-content .detail-stats-card {
    background: rgba(10, 10, 30, 0.8);
    border: 1px solid rgba(0, 204, 255, 0.3);
    border-left: 5px solid #00CCFF;
}

.frostrellaikez-detail-content .stats-heading {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.25rem;
    color: #00CCFF;
    text-transform: uppercase;
}

.frostrellaikez-detail-content .stats-list span {
    color: #A0A0A0;
    font-family: 'Rajdhani', sans-serif;
}

.frostrellaikez-detail-content .stats-list strong {
    color: #FFFFFF;
    font-weight: 700;
}

.frostrellaikez-detail-content .detail-info-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.frostrellaikez-detail-content .info-heading {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    color: #FF00CC;
    margin-bottom: 2rem;
    text-shadow: 0 0 5px rgba(255, 0, 204, 0.5);
}

.frostrellaikez-detail-content .info-text-content {
    line-height: 1.8;
    font-size: 1.1rem;
    color: #E0E0E0;
}

.frostrellaikez-detail-content .info-heading-sm {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    color: #00CCFF;
    text-transform: uppercase;
}

.frostrellaikez-detail-content .skill-item {
    background: rgba(0, 204, 255, 0.05);
    border: 1px solid rgba(0, 204, 255, 0.1);
    transition: 0.3s ease;
}

.frostrellaikez-detail-content .skill-item:hover {
    background: rgba(0, 204, 255, 0.1);
    border-color: #00CCFF;
}

.frostrellaikez-detail-content .skill-item i {
    font-size: 2.5rem;
    color: #00CCFF;
}

.frostrellaikez-detail-content .skill-item h5 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    color: #FFFFFF;
}

.frostrellaikez-detail-content .skill-item p {
    font-size: 0.85rem;
    color: #A0A0A0;
    margin-bottom: 0;
}

.frostrellaikez-detail-content .btn-detail-action {
    background: linear-gradient(135deg, #FF00CC 0%, #BF00FF 100%);
    border: none;
    color: #FFFFFF;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 0;
    clip-path: polygon(5% 0, 100% 0, 95% 100%, 0 100%);
    transition: 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.frostrellaikez-detail-content .btn-detail-action:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 0, 204, 0.4);
}


.frostrellaikez-comments-section {
    background-color: #050510;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.frostrellaikez-comments-section .section-title {
    font-family: 'Orbitron', sans-serif;
    color: #00CCFF;
    text-transform: uppercase;
}

.ice-comment-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
}

.ice-avatar-wrapper {
    position: relative;
    width: 60px;
    height: 60px;
    background: #00CCFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ice-avatar-wrapper.sm {
    width: 40px;
    height: 40px;
    background: #BF00FF;
}

.ice-avatar-initials {
    color: #050510;
    font-weight: 900;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
}

.ice-avatar-initials.sm {
    font-size: 0.9rem;
}

.ice-avatar-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    filter: blur(8px);
    opacity: 0.4;
    border-radius: 50%;
    z-index: -1;
}

.ice-author-name {
    font-family: 'Orbitron', sans-serif;
    color: #FFFFFF;
    font-size: 1.1rem;
}

.ice-author-name.sm {
    font-size: 0.95rem;
}

.ice-comment-date {
    font-size: 0.8rem;
    color: #757575;
}

.ice-comment-body p {
    color: #E0E0E0;
    line-height: 1.6;
    margin: 0;
}

.ice-action-btn {
    background: none;
    border: none;
    color: #00CCFF;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0;
    transition: 0.3s ease;
}

.ice-action-btn:hover {
    color: #FF00CC;
    text-shadow: 0 0 8px #FF00CC;
}

.ice-action-btn.active {
    color: #FF00CC;
}

.dark-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 204, 255, 0.3);
    color: #FFFFFF;
    border-radius: 0;
}

.dark-input:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: #00CCFF;
    box-shadow: 0 0 10px rgba(0, 204, 255, 0.3);
    color: #FFFFFF;
}

.dark-input::placeholder {
    color: #A0A0A0;
}

.custom-input::placeholder {
    color: #A0A0A0;
}

.comment-form-mock .form-control::placeholder {
    color: #A0A0A0;
}

.survival-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.survival-guides__search-wrapper input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.dark-input option,
.custom-input option,
.survival-input option {
    background: #0a0a1e;
    color: #FFFFFF;
}

@media (max-width: 768px) {
    .ice-reply-wrapper {
        margin-left: 1.5rem !important;
    }
}