:root {
    --background: #050508;
    --surface: #0D0D1A;
    --surface-secondary: #16162D;
    --primary-text: #FFFFFF;
    --secondary-text: #94A3B8;
    --muted-text: #64748B;
    --accent-primary: #00F2FF;
    --accent-secondary: #BC13FE;
    --accent-tertiary: #FF00E5;
    --border-color: rgba(0, 242, 255, 0.15);
    --glow-cyan: rgba(0, 242, 255, 0.5);
    --glow-purple: rgba(188, 19, 254, 0.4);
}

.cyberpunk-theme {
    background-color: var(--background);
    color: var(--primary-text);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
.font-heading {
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 0.05em;
}

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

.glass-panel {
    background: rgba(13, 13, 26, 0.7);
    backdrop-filter: blur(12px);
    border: 0.5px solid var(--border-color);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.8);
}

.neon-border-cyan {
    border: 1px solid var(--accent-primary);
    box-shadow: 0 0 10px var(--glow-cyan);
}

.neon-border-purple {
    border: 1px solid var(--accent-secondary);
    box-shadow: 0 0 10px var(--glow-purple);
}

.btn-cyber {
    position: relative;
    background: transparent;
    border: 1px solid var(--accent-primary);
    color: var(--accent-primary);
    transition: all 0.3s ease;
    clip-path: polygon(10% 0, 100% 0, 100% 70%, 90% 100%, 0 100%, 0 30%);
}

.btn-cyber:hover {
    background: var(--accent-primary);
    color: var(--background);
    box-shadow: 0 0 20px var(--glow-cyan);
}

* {
    box-sizing: border-box;
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--background);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-primary);
    border-radius: 10px;
}

/* ===== header ===== */
#stayxora-header {
    font-family: 'Inter', sans-serif;
}

#stayxora-header .font-['Orbitron'] {
    font-family: 'Orbitron', sans-serif;
}

#stayxora-header .js-mobile-menu.active {
    transform: translateX(0);
}

#stayxora-header .nav-link-active {
    color: #00F2FF;
}

@media (max-width: 767px) {
    #stayxora-header .js-mobile-menu {
        display: flex !important;
    }
}

/* ===== hero ===== */
.stayxora-hero .hero-frame {
    position: relative;
    border-left: 1px solid rgba(0, 242, 255, 0.2);
    border-right: 1px solid rgba(188, 19, 254, 0.2);
}

.stayxora-hero .hero-frame::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    width: 30px;
    height: 30px;
    border-top: 2px solid #00F2FF;
    border-left: 2px solid #00F2FF;
}

.stayxora-hero .hero-frame::after {
    content: '';
    position: absolute;
    bottom: -1px;
    right: -1px;
    width: 30px;
    height: 30px;
    border-bottom: 2px solid #BC13FE;
    border-right: 2px solid #BC13FE;
}

.stayxora-hero .js-hero-cta {
    position: relative;
    overflow: hidden;
}

.stayxora-hero .js-hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: 0.5s;
}

.stayxora-hero .js-hero-cta:hover::before {
    left: 100%;
}

@media (max-width: 767px) {
    .stayxora-hero .hero-frame {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

/* ===== featured-hotels ===== */
.featured-hotels-block {
    font-family: 'Inter', sans-serif;
}

.featured-hotels-title {
    font-family: 'Orbitron', sans-serif;
    text-shadow: 0 0 10px rgba(0, 242, 255, 0.3);
}

.featured-hotels-block h3 {
    font-family: 'Orbitron', sans-serif;
}

.featured-hotels-block .hotel-card {
    background: linear-gradient(145deg, #0D0D1A 0%, #050508 100%);
    position: relative;
}

.featured-hotels-block .hotel-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(188, 19, 254, 0.05), transparent);
    pointer-events: none;
}

.featured-hotels-block .hotel-card img {
    filter: grayscale(20%) brightness(0.8);
}

.featured-hotels-block .hotel-card:hover img {
    filter: grayscale(0%) brightness(1);
}

/* ===== about-us ===== */
.stayxora-about {
    position: relative;
}

.stayxora-about .container {
    position: relative;
    z-index: 2;
}

.stayxora-about h2 {
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stayxora-about .js-about-cta {
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.stayxora-about .js-about-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.stayxora-about .js-about-cta:hover::before {
    left: 100%;
}

@media (max-width: 767px) {
    .stayxora-about p {
        text-align: justify;
        hyphens: auto;
    }
}

/* ===== benefits ===== */
.stayxora-benefits .stayxora-benefits-card {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), border-color 0.3s ease, box-shadow 0.3s ease;
    transform: translateZ(0);
}

.stayxora-benefits .stayxora-benefits-card:hover {
    transform: translateY(-8px);
    border-color: #00F2FF;
    box-shadow: 0 10px 30px -10px rgba(0, 242, 255, 0.2);
}

.stayxora-benefits .stayxora-benefits-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00F2FF, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stayxora-benefits .stayxora-benefits-card:hover::before {
    opacity: 1;
}

.stayxora-benefits .js-benefit-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.stayxora-benefits .js-benefit-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== testimonials ===== */
.testimonials-block .testimonial-card {
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.testimonials-block .testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 242, 255, 0.4);
    box-shadow: 0 10px 30px -10px rgba(0, 242, 255, 0.2);
}

.testimonials-block .testimonial-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 242, 255, 0.03) 0%, transparent 100%);
    pointer-events: none;
}

/* ===== footer ===== */
.stayxora-footer .stayxora-logo-link:hover {
    transform: translateY(-2px);
    filter: drop-shadow(0 0 8px rgba(0, 242, 255, 0.4));
}

.stayxora-footer .stayxora-disclaimer {
    position: relative;
    overflow: hidden;
}

.stayxora-footer .stayxora-disclaimer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #00F2FF, #BC13FE);
}

.stayxora-footer .js-age-modal {
    animation: fadeIn 0.4s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.stayxora-footer .js-age-modal .bg-[#0D0D1A] {
    animation: slideUp 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

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

.stayxora-footer .stayxora-logo-static img {
    filter: drop-shadow(0 0 10px rgba(255, 0, 0, 0.5));
}

#stayxora-header {
    font-family: 'Inter', sans-serif;
}

#stayxora-header .font-['Orbitron'] {
    font-family: 'Orbitron', sans-serif;
}

#stayxora-header .js-mobile-menu.active {
    transform: translateX(0);
}

.stayxora-category-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 242, 255, 0.5), transparent);
}

.stayxora-category-content .js-grid-item {
    position: relative;
}

.stayxora-category-content .js-grid-item::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    border: 1px solid transparent;
    transition: all 0.5s ease;
}

.stayxora-category-content .js-grid-item:hover::before {
    border-color: rgba(0, 242, 255, 0.3);
    box-shadow: inset 0 0 20px rgba(0, 242, 255, 0.05);
}

.stayxora-footer .stayxora-logo-link:hover {
    transform: translateY(-2px);
    filter: drop-shadow(0 0 8px rgba(0, 242, 255, 0.4));
}

.stayxora-footer .stayxora-disclaimer {
    position: relative;
    overflow: hidden;
}

.stayxora-footer .stayxora-disclaimer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #00F2FF, #BC13FE);
}

.stayxora-footer .js-age-modal {
    animation: fadeIn 0.4s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.stayxora-footer .stayxora-logo-static img {
    filter: drop-shadow(0 0 10px rgba(255, 0, 0, 0.5));
}


/* ===== PAGE: privacy ===== */
.policy-container .policy-inner { background: #050508; color: #FFFFFF; font-family: 'Inter', sans-serif; } .policy-container h1, .policy-container h2, .policy-container h3 { font-family: 'Orbitron', sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; } .policy-container .policy-section { position: relative; } .policy-container a { transition: all 0.3s ease; } .policy-container ul li i { font-size: 1.25rem; } .policy-container .policy-container-max { position: relative; overflow: hidden; } .policy-container .policy-container-max::before { content: ''; position: absolute; top: -100px; right: -100px; width: 300px; height: 300px; background: radial-gradient(circle, rgba(188, 19, 254, 0.1) 0%, transparent 70%); pointer-events: none; } .policy-container .policy-container-max::after { content: ''; position: absolute; bottom: -100px; left: -100px; width: 300px; height: 300px; background: radial-gradient(circle, rgba(0, 242, 255, 0.05) 0%, transparent 70%); pointer-events: none; }

/* ===== PAGE: terms ===== */
.policy-container {
  background-color: #050508;
  color: #FFFFFF;
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

.policy-container h1,
.policy-container h2 {
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 0.05em;
}

.policy-container a {
  text-decoration: none;
  transition: all 0.3s ease;
}

.policy-container .policy-section {
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.policy-container .policy-section:hover {
  border-color: rgba(0, 242, 255, 0.4);
}

.policy-container ul li i {
  filter: drop-shadow(0 0 5px rgba(0, 242, 255, 0.5));
}

.policy-container h2 {
  text-shadow: 0 0 15px rgba(0, 242, 255, 0.3);
}

@media (max-width: 767px) {
  .policy-container h1 {
    font-size: 18px !important;
  }
  .policy-container h2 {
    font-size: 16px !important;
  }
  .policy-container h3 {
    font-size: 14px !important;
  }
  .policy-container p {
    font-size: 14px !important;
  }
}

/* ===== PAGE: disclaimer ===== */
.policy-container { max-width: 1000px; margin: 0 auto; padding: 40px 20px; font-family: 'Inter', sans-serif; color: #94A3B8; background: #050508; line-height: 1.6; } .policy-header { margin-bottom: 60px; text-align: center; border-bottom: 1px solid rgba(0, 242, 255, 0.2); padding-bottom: 40px; } .policy-title { font-family: 'Orbitron', sans-serif; color: #FFFFFF; font-size: 28px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; text-shadow: 0 0 10px rgba(0, 242, 255, 0.5); margin-bottom: 15px; } @media (min-width: 768px) { .policy-title { font-size: 42px; } } .policy-subtitle { font-family: 'Orbitron', sans-serif; color: #00F2FF; font-size: 14px; text-transform: uppercase; letter-spacing: 4px; margin-bottom: 10px; } .policy-date { font-size: 12px; color: #64748B; font-style: italic; } .policy-section { margin-bottom: 40px; } .policy-section h2 { font-family: 'Orbitron', sans-serif; color: #BC13FE; font-size: 16px; margin-bottom: 20px; text-transform: uppercase; border-left: 3px solid #00F2FF; padding-left: 15px; } @media (min-width: 768px) { .policy-section h2 { font-size: 24px; } } .policy-section p { font-size: 16px; margin-bottom: 20px; color: #CBD5E1; text-align: justify; hyphens: auto; } .policy-section ul { list-style: none; padding-left: 0; margin-bottom: 20px; } .policy-section li { position: relative; padding-left: 25px; margin-bottom: 12px; font-size: 16px; color: #CBD5E1; } .policy-section li::before { content: ''; position: absolute; left: 0; top: 10px; width: 8px; height: 8px; background: #00F2FF; border-radius: 50%; box-shadow: 0 0 5px #00F2FF; } .policy-link { color: #00F2FF; text-decoration: none; transition: all 0.3s ease; border-bottom: 1px solid transparent; } .policy-link:hover { color: #BC13FE; border-bottom-color: #BC13FE; text-shadow: 0 0 8px rgba(188, 19, 254, 0.6); }

/* ===== PAGE: cookies ===== */
.policy-container {
  padding: 2rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
  background: #050508;
  color: #FFFFFF;
  font-family: 'Inter', sans-serif;
}

.policy-container h1, .policy-container h2, .policy-container h3 {
  color: #FFFFFF;
  line-height: 1.2;
}

.policy-container .policy-inner-content {
  position: relative;
  z-index: 1;
}

.policy-container .js-cookie-tab.active {
  background: rgba(0, 242, 255, 0.1);
  border-bottom: 2px solid #00F2FF;
  color: #00F2FF;
}

.policy-container .policy-block {
  position: relative;
}

.policy-container .cookie-tabs-container {
  box-shadow: 0 0 20px rgba(0, 242, 255, 0.05);
}

@media (min-width: 768px) {
  .policy-container {
    padding: 4rem 2rem;
  }
}

.policy-container .js-tab-panel.hidden {
  display: none;
}

.policy-container .js-tab-panel:not(.hidden) {
  display: block;
  animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== PAGE: contact-faq ===== */
.stayxora-contact-page .info-card { box-shadow: 0 0 15px rgba(0, 0, 0, 0.5); }
.stayxora-contact-page .faq-item.active .js-faq-content { display: block; }
.stayxora-contact-page .faq-item.active .js-faq-icon { transform: rotate(180deg); color: #BC13FE; }
.stayxora-contact-page .faq-item.active { border-color: #BC13FE; }
.stayxora-contact-page .map-container iframe { filter: grayscale(1) invert(0.9) hue-rotate(180deg); }
.stayxora-contact-page input:-webkit-autofill,
.stayxora-contact-page input:-webkit-autofill:hover,
.stayxora-contact-page input:-webkit-autofill:focus {
  -webkit-text-fill-color: #FFFFFF;
  -webkit-box-shadow: 0 0 0px 1000px #16162D inset;
  transition: background-color 5000s ease-in-out 0s;
}

.cyber-comment-main {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
}

.cyber-comment-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px -10px rgba(0, 242, 255, 0.15);
    border-color: rgba(0, 242, 255, 0.4);
}

.avatar-fallback {
    text-shadow: 0 0 10px rgba(0, 242, 255, 0.5);
}

.avatar-container::after {
    content: '';
    position: absolute;
    inset: -3px;
    border: 1px solid rgba(0, 242, 255, 0.1);
    clip-path: polygon(25% 0%, 100% 0%, 100% 75%, 75% 100%, 0% 100%, 0% 25%);
    z-index: -1;
}

.cyber-comment-reply {
    transition: all 0.3s ease;
}

.cyber-comment-reply:hover {
    border-color: rgba(188, 19, 254, 0.5);
    background-color: #1a1a35;
}

.reply-connector {
    border-bottom-left-radius: 12px;
}

.cyber-comment-reply .avatar-fallback {
    text-shadow: 0 0 8px rgba(188, 19, 254, 0.4);
}


/* ===== PAGE TEMPLATE: hotels-list ===== */
#stayxora-header {
    font-family: 'Inter', sans-serif;
}

#stayxora-header .font-['Orbitron'] {
    font-family: 'Orbitron', sans-serif;
}

#stayxora-header .js-mobile-menu.active {
    transform: translateX(0);
}

.detail-page-container .rich-text-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    color: #00F2FF;
    margin-bottom: 1.5rem;
    margin-top: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

@media (min-width: 768px) {
    .detail-page-container .rich-text-content h2 {
        font-size: 26px;
    }
}

.detail-page-container .rich-text-content p {
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.detail-page-container .rich-text-content ul {
    margin-bottom: 1.5rem;
    list-style: none;
    padding-left: 0;
}

.detail-page-container .rich-text-content ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
}

.detail-page-container .rich-text-content ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #BC13FE;
    font-weight: bold;
}

.stayxora-footer .stayxora-logo-link:hover {
    transform: translateY(-2px);
    filter: drop-shadow(0 0 8px rgba(0, 242, 255, 0.4));
}

.stayxora-footer .stayxora-disclaimer {
    position: relative;
    overflow: hidden;
}

.stayxora-footer .stayxora-disclaimer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #00F2FF, #BC13FE);
}

.stayxora-footer .js-age-modal {
    animation: fadeIn 0.4s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.stayxora-footer .js-age-modal .bg-[#0D0D1A] {
    animation: slideUp 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

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

.stayxora-footer .stayxora-logo-static img {
    filter: drop-shadow(0 0 10px rgba(255, 0, 0, 0.5));
}

@media (max-width: 767px) {
    #stayxora-header .js-mobile-menu {
        display: flex !important;
    }
}

/* ===== PAGE TEMPLATE: blog-list ===== */
#stayxora-header {
    font-family: 'Inter', sans-serif;
}

#stayxora-header .font-['Orbitron'] {
    font-family: 'Orbitron', sans-serif;
}

#stayxora-header .js-mobile-menu.active {
    transform: translateX(0);
}

.detail-page-container .rich-text-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    color: #00F2FF;
    margin-bottom: 1.5rem;
    margin-top: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

@media (min-width: 768px) {
    .detail-page-container .rich-text-content h2 {
        font-size: 26px;
    }
}

.detail-page-container .rich-text-content p {
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.detail-page-container .rich-text-content ul {
    margin-bottom: 1.5rem;
    list-style: none;
    padding-left: 0;
}

.detail-page-container .rich-text-content ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
}

.detail-page-container .rich-text-content ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #BC13FE;
    font-weight: bold;
}

.stayxora-footer .stayxora-logo-link:hover {
    transform: translateY(-2px);
    filter: drop-shadow(0 0 8px rgba(0, 242, 255, 0.4));
}

.stayxora-footer .stayxora-disclaimer {
    position: relative;
    overflow: hidden;
}

.stayxora-footer .stayxora-disclaimer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #00F2FF, #BC13FE);
}

.stayxora-footer .js-age-modal {
    animation: fadeIn 0.4s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.stayxora-footer .js-age-modal .bg-[#0D0D1A] {
    animation: slideUp 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

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

.stayxora-footer .stayxora-logo-static img {
    filter: drop-shadow(0 0 10px rgba(255, 0, 0, 0.5));
}

@media (max-width: 767px) {
    #stayxora-header .js-mobile-menu {
        display: flex !important;
    }
}