:root {
    --primary-background: #FFFFFF;
    --primary-text: #1A1A1A;
    --secondary-background: #E60026;
    --secondary-text: #FFFFFF;
    --dark-background: #000000;
    --dark-text: #F9FAFB;
    --accent-color: #FFD700;
    --gradient-premium: linear-gradient(135deg, #E60026 0%, #8B0000 100%);
    --font-family: 'Montserrat', sans-serif;
    --transition-speed: 0.3s;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background-color: var(--primary-background);
    color: var(--primary-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-family);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

a,
a:hover,
a:focus {
    text-decoration: none;
    transition: color var(--transition-speed) ease, opacity var(--transition-speed) ease;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
    height: auto;
}

ul,
ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    transition: transform var(--transition-speed) ease;
}

button:active {
    transform: scale(0.98);
}

.scale-hover {
    transition: transform var(--transition-speed) ease;
}

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

@media (max-width: 768px) {
    h1 {
        font-size: clamp(2rem, 10vw, 3rem) !important;
        letter-spacing: -0.05em;
    }

    h2 {
        font-size: clamp(1.5rem, 8vw, 2.25rem) !important;
    }

    body {
        font-size: 0.95rem;
    }

    .break-long-words {
        word-wrap: break-word;
        overflow-wrap: break-word;
        word-break: break-all;
    }
}

@media (min-width: 1024px) {
    section {
        padding: 5rem 0;
    }
}

/* ===== main_header ===== */
header {
    font-family: var(--font-family);
}

.js-mobile-menu.open {
    display: block !important;
}

.js-mobile-menu-toggle i {
    transition: transform var(--transition-speed);
}

.js-mobile-menu-toggle[aria-expanded="true"] i {
    transform: rotate(90deg);
}

/* ===== hero_section ===== */
#hero {
    width: 100%;
    font-family: var(--font-family);
}

.js-tile {
    cursor: pointer;
}

/* ===== main_review ===== */
.js-animate {
    transition: all 1s ease-out;
}

.opacity-0 {
    opacity: 0;
}

.translate-y-10 {
    transform: translateY(2.5rem);
}

.opacity-100 {
    opacity: 1;
}

.translate-y-0 {
    transform: translateY(0);
}

#biography h2 {
    position: relative;
    padding-bottom: 10px;
}

#biography h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 4px;
    background: var(--secondary-background);
    border-radius: 2px;
}

/* ===== thematic_blocks ===== */
.js-card:hover img {
    transform: scale(1.05);
    transition: transform 0.5s ease;
}

.js-card img {
    transition: transform 0.5s ease;
}

/* ===== facts_and_tracks ===== */
#details {
    width: 100%;
    font-family: var(--font-family);
}

.js-hover-effect {
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

/* ===== faq_section ===== */
#faq .js-faq-icon {
    transition: transform var(--transition-speed) ease;
}

#faq .js-faq-toggle:hover span {
    color: var(--secondary-background);
}

/* ===== main_footer ===== */
#footer a {
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}

#footer i {
    width: 20px;
    text-align: center;
}

#features  p{
    padding: 5px 0 !important;
}

.disclePol h1{
    font-size: 23px !important;
}

.disclePol h2{
    font-size: 20px !important;
}