:root {
    --primary: #C5A059;
    --primary-hover: #B38E46;
    --secondary: #2D3436;
    --accent: #E2B875;
    --background-main: #FDFDFB;
    --background-surface: #FFFFFF;
    --text-primary: #1A1A1A;
    --text-secondary: #4A4A4A;
    --text-muted: #717171;
    --border-color: #E8E8E1;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lora', serif;
    color: var(--text-primary);
    line-height: 1.8;
    background-color: var(--background-main);
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

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

* {
    box-sizing: inherit;
}

.premium-shadow {
    box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.05);
}

.btn-minimal {
    padding: 0.75rem 2rem;
    border: 1px solid var(--border-color);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.4s ease;
    display: inline-block;
    text-decoration: none;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
}

.btn-minimal:hover {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-2px);
}

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

.iron-header .js-dropdown-menu.is-active {
    opacity: 1 !important;
    visibility: visible !important;
    translate: 0 0 !important;
}

.iron-header .js-mobile-drawer.is-open {
    transform: translateX(0) !important;
}

.iron-header .iron-header-nav-link {
    position: relative;
    padding-bottom: 2px;
}

.iron-header .iron-header-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #C5A059;
    transition: width 0.3s ease;
}

.iron-header .iron-header-nav-link:hover::after {
    width: 100%;
}

@media (max-width: 1023px) {
    .iron-header .js-mobile-drawer {
        display: flex;
    }
}

/* ===== hero ===== */
.hero-gaming .js-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-gaming .js-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-gaming__overlay {
    background-image: radial-gradient(circle at center, transparent 0%, rgba(26, 26, 26, 0.4) 100%);
}

.hero-gaming__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
}

.hero-gaming__scroll-bar {
    animation: scrollLine 2s infinite ease-in-out;
}

@keyframes scrollLine {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }

    50% {
        transform: scaleY(1);
        transform-origin: top;
    }

    51% {
        transform: scaleY(1);
        transform-origin: bottom;
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

/* ===== smartphones-showcase ===== */
.smartphones-showcase {
    position: relative;
}

.smartphones-showcase .js-content-fade {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.smartphones-showcase .js-image-reveal {
    opacity: 0;
    transform: scale(0.95);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.smartphones-showcase.is-visible .js-content-fade,
.smartphones-showcase.is-visible .js-image-reveal {
    opacity: 1;
    transform: translate(0) scale(1);
}

@media (max-width: 767px) {
    .smartphones-showcase .container {
        text-align: center;
    }

    .smartphones-showcase .flex-col {
        align-items: center;
    }

    .smartphones-showcase h2 {
        hyphens: auto;
    }
}

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

.about-us-section .about-us-container {
    position: relative;
}

.about-us-section .about-us-btn {
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.2);
}

.about-us-section .about-us-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
}

.about-us-section .about-us-image-container {
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.05);
}

@media (max-width: 767px) {
    .about-us-section .about-us-image-wrapper {
        margin-bottom: 20px;
    }

    .about-us-section .about-us-heading {
        text-align: left;
    }

    .about-us-section .about-us-actions {
        justify-content: flex-start;
    }
}

/* ===== latest-retro ===== */
.latest-retro-section .latest-retro-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.latest-retro-section .latest-retro-item-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.6em;
}

.latest-retro-section .latest-retro-action {
    border-bottom: 1px solid transparent;
    width: fit-content;
    transition: border-color 0.3s ease;
}

.latest-retro-section .latest-retro-action:hover {
    border-color: #C5A059;
}

.latest-retro-section .latest-retro-img-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.03);
    pointer-events: none;
}

/* ===== quiz-cta ===== */
.quiz-cta-block .quiz-cta-block__background {
    background-position: center;
    background-size: cover;
}

.quiz-cta-block .quiz-cta-block__btn {
    border: 1px solid #C5A059;
    border-radius: 0px;
    box-shadow: 0 10px 30px -15px rgba(197, 160, 89, 0.3);
}

.quiz-cta-block .quiz-cta-block__btn:hover {
    box-shadow: 0 15px 40px -10px rgba(197, 160, 89, 0.4);
}

.quiz-cta-block .quiz-cta-block__icon i {
    line-height: 1;
}

@media (max-width: 767px) {
    .quiz-cta-block h2 {
        hyphens: auto;
    }
}

/* ===== footer ===== */
.footer-block {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.footer-block a {
    text-decoration: none;
}

.footer-block .container {
    max-width: 1200px;
}

.footer-block h3 {
    margin-bottom: 5px;
}

.footer-block i {
    line-height: 1;
}

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

.iron-header .js-dropdown-menu.is-active {
    opacity: 1 !important;
    visibility: visible !important;
    translate: 0 0 !important;
}

.iron-header .js-mobile-drawer.is-open {
    transform: translateX(0) !important;
}

.iron-header .iron-header-nav-link {
    position: relative;
    padding-bottom: 2px;
}

.iron-header .iron-header-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #C5A059;
    transition: width 0.3s ease;
}

.iron-header .iron-header-nav-link:hover::after {
    width: 100%;
}

.footer-block {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.footer-block a {
    text-decoration: none;
}

.footer-block h3 {
    margin-bottom: 5px;
}

.footer-block i {
    line-height: 1;
}

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

.category-card h2 {
    font-family: 'Playfair Display', serif;
    color: #1A1A1A;
}

.category-card p {
    font-family: 'Lora', serif;
}

.sidebar-widget h3 {
    font-family: 'Inter', sans-serif;
    color: #1A1A1A;
}


/* ===== PAGE: privacy ===== */
.policy-content-container { padding: 40px 20px; max-width: 800px; margin: 0 auto; color: #1A1A1A; font-family: 'Lora', serif; line-height: 1.8; }
.policy-content-container h2 { font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 700; margin-bottom: 24px; color: #1A1A1A; text-transform: uppercase; letter-spacing: 0.05em; }
.policy-content-container h3 { font-family: 'Playfair Display', serif; font-size: 14px; font-weight: 600; margin: 32px 0 16px; color: #2D3436; border-bottom: 1px solid #E8E8E1; padding-bottom: 8px; }
.policy-content-container p { font-size: 18px; margin-bottom: 20px; color: #4A4A4A; }
.policy-content-container ul { margin-bottom: 20px; padding-left: 0; list-style-type: none; }
.policy-content-container li { font-size: 18px; margin-bottom: 12px; color: #4A4A4A; position: relative; padding-left: 24px; }
.policy-content-container li::before { content: '→'; position: absolute; left: 0; color: #C5A059; }
.policy-content-container li:has(i)::before { content: none; }
.policy-content-container li:has(i) { padding-left: 0; }
.iron-share { display: none !important; }
.policy-content-container strong { color: #1A1A1A; font-weight: 600; }
.policy-content-container .last-updated { font-family: 'Inter', sans-serif; font-size: 14px; color: #717171; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 40px; }
.policy-content-container .js-policy-link { color: #C5A059; text-decoration: none; border-bottom: 1px solid transparent; transition: border-color 0.3s ease; }
.policy-content-container .js-policy-link:hover { border-bottom-color: #C5A059; }
@media (min-width: 768px) {
  .policy-content-container { padding: 80px 40px; }
  .policy-content-container h2 { font-size: 32px; }
  .policy-content-container h3 { font-size: 26px; }
  .policy-content-container p, .policy-content-container li { font-size: 18px; }
}

/* ===== PAGE: terms ===== */
.policy-wrapper .family-playfair { font-family: 'Playfair Display', serif; } .policy-wrapper .family-lora { font-family: 'Lora', serif; } .policy-content-container { color: #1A1A1A; line-height: 1.8; } .policy-content-container a { color: #C5A059; text-decoration: none; border-bottom: 1px solid transparent; transition: all 0.3s ease; } .policy-content-container a:hover { border-bottom-color: #C5A059; } .policy-content-container p { margin-bottom: 1.5rem; } .policy-content-container h2 { margin-top: 3rem; margin-bottom: 1.5rem; border-left: 3px solid #C5A059; padding-left: 1.5rem; } .policy-content-container h3 { margin-top: 2rem; margin-bottom: 1rem; color: #2D3436; } .policy-content-container ul li i { font-size: 1.25rem; } .policy-content-container .contact-grid { box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.04); } @media (max-width: 767px) { .policy-content-container h2 { padding-left: 1rem; margin-top: 2rem; } .policy-content-container .terms-header { margin-bottom: 2rem; } }

/* ===== PAGE: disclaimer ===== */
.policy-wrapper {
  word-wrap: break-word;
  hyphens: auto;
}

.policy-content-container {
  color: #1A1A1A;
}

.policy-content-container h1,
.policy-content-container h2,
.policy-content-container h3 {
  color: #1A1A1A !important;
}

.policy-content-container p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.policy-content-container ul li {
  line-height: 1.6;
}

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

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

/* ===== PAGE: cookies ===== */
.policy-content-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #FDFDFB;
}
.cookies-policy-body__title {
  font-family: 'Playfair Display', serif;
  color: #1A1A1A;
  font-size: 16px;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 24px;
  font-weight: 700;
}
@media (min-width: 768px) {
  .cookies-policy-body__title {
    font-size: 32px;
  }
}
.cookies-policy-body__sub-title {
  font-family: 'Playfair Display', serif;
  color: #1A1A1A;
  font-size: 14px;
  line-height: 1.3;
  margin-top: 32px;
  margin-bottom: 16px;
  font-weight: 600;
}
@media (min-width: 768px) {
  .cookies-policy-body__sub-title {
    font-size: 26px;
  }
}
.cookies-policy-body__text {
  font-family: 'Lora', serif;
  color: #4A4A4A;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}
.cookies-policy-body__list {
  margin-bottom: 24px;
  padding-left: 0;
  list-style: none;
}
.cookies-policy-body__list-item {
  font-family: 'Lora', serif;
  color: #4A4A4A;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 12px;
  position: relative;
  padding-left: 24px;
}
.cookies-policy-body__list-item::before {
  content: "\eb7e";
  font-family: 'remixicon';
  position: absolute;
  left: 0;
  color: #C5A059;
  font-size: 18px;
}
.cookies-policy-body__highlight {
  color: #1A1A1A;
  font-weight: 600;
}
.cookies-policy-body__link {
  color: #C5A059;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-bottom 0.3s ease;
}
.cookies-policy-body__link:hover {
  border-bottom: 1px solid #C5A059;
}
.cookies-policy-body__contact {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid #E8E8E1;
}

/* ===== PAGE: reviews ===== */
.reviews-section .active-filter { background-color: #C5A059; color: #F9F9F9; border-color: #C5A059; }
.reviews-section .js-filter-btn { transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
.reviews-section .js-review-card { height: 100%; height: -webkit-fill-available; }
.reviews-section input::placeholder { color: #ADADAD; font-style: italic; opacity: 1; }
.reviews-section .js-review-card img { transition: transform 0.6s ease; }
.reviews-section .js-review-card:hover img { transform: scale(1.05); }

/* ===== PAGE: tops ===== */
.tops-list-section .family-playfair { font-family: 'Playfair Display', serif; } .tops-list-section .family-lora { font-family: 'Lora', serif; } .tops-list-section .js-tab-trigger.active { color: #C5A059; border-bottom-color: #C5A059; } .tops-list-section .js-top-card { transition: transform 0.4s ease, box-shadow 0.4s ease; border: 1px solid #E8E8E1; } .tops-list-section .js-top-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px -20px rgba(0,0,0,0.1); } .tops-list-section #js-search-input::placeholder { color: #717171; opacity: 1; }

/* ===== PAGE: quiz ===== */
.quiz-form-block .js-quiz-option-btn {
  width: 100%;
  text-align: left;
  padding: 1.25rem 1.5rem;
  border: 1px solid #E8E8E1;
  background: #FFFFFF;
  color: #4A4A4A;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.quiz-form-block .js-quiz-option-btn:hover {
  border-color: #C5A059;
  color: #1A1A1A;
  background-color: #FDFDFB;
}
.quiz-form-block .js-quiz-option-btn.correct {
  background-color: #F0F9EB;
  border-color: #67C23A;
  color: #67C23A;
}
.quiz-form-block .js-quiz-option-btn.wrong {
  background-color: #FEF0F0;
  border-color: #F56C6C;
  color: #F56C6C;
}
.quiz-form-block textarea {
  resize: none;
}

/* ===== PAGE: contacts ===== */
.contact-info-section { word-wrap: break-word; overflow: hidden; }
.contact-info-section .contact-info-container { position: relative; }
.contact-info-section .info-item h3 { color: #1A1A1A; }
.contact-info-section .form-group input::placeholder, .contact-info-section .form-group textarea::placeholder { color: #717171; opacity: 1; }
.contact-info-section .js-form-submit { cursor: pointer; }
.contact-info-section .image-decoration img { transition: transform 0.8s ease; }
.contact-info-section .image-decoration:hover img { transform: scale(1.05); }

.comment-container {
    padding: 2rem;
    background: #FFFFFF;
    box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.comment-container:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px -15px rgba(0, 0, 0, 0.08);
}

.avatar-circle {
    width: 52px;
    height: 52px;
    border-radius: 0px;
    position: relative;
    overflow: hidden;
}

.reply-container {
    transition: all 0.4s ease;
}

.avatar-circle-sm {
    width: 40px;
    height: 40px;
    border-radius: 0px;
}

.reply-container:hover {
    border-left-color: #C5A059;
}


/* ===== PAGE TEMPLATE: retro-classic-list ===== */
.iron-header {
    font-family: 'Inter', sans-serif;
}

.iron-header .js-dropdown-menu.is-active {
    opacity: 1 !important;
    visibility: visible !important;
    translate: 0 0 !important;
}

.iron-header .js-mobile-drawer.is-open {
    transform: translateX(0) !important;
}

.iron-header .iron-header-nav-link {
    position: relative;
    padding-bottom: 2px;
}

.iron-header .iron-header-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #C5A059;
    transition: width 0.3s ease;
}

.iron-header .iron-header-nav-link:hover::after {
    width: 100%;
}

.hero-gaming .js-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-gaming .js-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-gaming__overlay {
    background-image: radial-gradient(circle at center, transparent 0%, rgba(26, 26, 26, 0.4) 100%);
}

.footer-block {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.footer-block a {
    text-decoration: none;
}

.footer-block h3 {
    margin-bottom: 5px;
}

.iron-content-body p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.iron-custom-list li i {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.iron-comments-section .avatar-circle,
.iron-comments-section .avatar-circle-sm {
    border: 2px solid #E8E8E1;
}

input::placeholder,
textarea::placeholder {
    color: #A0A0A0;
    font-style: italic;
}

/* ===== PAGE TEMPLATE: racing-world-list ===== */
.iron-header {
    font-family: 'Inter', sans-serif;
}

.iron-header .js-dropdown-menu.is-active {
    opacity: 1 !important;
    visibility: visible !important;
    translate: 0 0 !important;
}

.iron-header .js-mobile-drawer.is-open {
    transform: translateX(0) !important;
}

.iron-header .iron-header-nav-link {
    position: relative;
    padding-bottom: 2px;
}

.iron-header .iron-header-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #C5A059;
    transition: width 0.3s ease;
}

.iron-header .iron-header-nav-link:hover::after {
    width: 100%;
}

.hero-gaming .js-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-gaming .js-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-gaming__overlay {
    background-image: radial-gradient(circle at center, transparent 0%, rgba(26, 26, 26, 0.4) 100%);
}

.footer-block {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.footer-block a {
    text-decoration: none;
}

.footer-block h3 {
    margin-bottom: 5px;
}

.iron-content-body p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.iron-custom-list li i {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.iron-comments-section .avatar-circle,
.iron-comments-section .avatar-circle-sm {
    border: 2px solid #E8E8E1;
}

input::placeholder,
textarea::placeholder {
    color: #A0A0A0;
    font-style: italic;
}