/*
Theme Name: Trovanilux
Theme URI: https://trovanilux.com
Description: Wild West browser game theme
Author: Your Name
Author URI: https://trovanilux.com
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: trovanilux
*/

:root {
    --tv-orange: #E67E22;
    --tv-brown: #5D4037;
    --tv-gold: #F39C12;
    --tv-beige: #F5E6D3;
    --tv-burgundy: #8B4513;
    --tv-dark: #2C1810;
    --tv-light: #FFF8E7;
    --tv-font-heading: 'Rye', serif;
    --tv-font-body: 'Merriweather', serif;
    --tv-space: 1rem;
    --tv-space-lg: 3rem;
    --tv-radius: 8px;
    --tv-shadow: 0 4px 8px rgba(44, 24, 16, 0.15);
    --tv-transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--tv-font-body);
    font-size: clamp(1rem, 2vw, 1.125rem);
    font-weight: 400;
    line-height: 1.7;
    color: var(--tv-dark);
    background-color: var(--tv-beige);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--tv-font-heading);
    font-weight: 400;
    line-height: 1.2;
    color: var(--tv-brown);
    margin-bottom: var(--tv-space);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}

h5 {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
}

h6 {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
}

p {
    margin-bottom: var(--tv-space);
}

a {
    color: var(--tv-orange);
    text-decoration: none;
    transition: color var(--tv-transition);
}

a:hover {
    color: var(--tv-gold);
}

strong, b {
    font-weight: 700;
}

ul, ol {
    margin-left: 2rem;
    margin-bottom: var(--tv-space);
}

li {
    margin-bottom: 0.5rem;
}

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

.tv-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.tv-section {
    padding: var(--tv-space-lg) 0;
    position: relative;
}

.tv-section--hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--tv-orange) 0%, var(--tv-burgundy) 100%);
    margin-top: -3rem;
}

.tv-section--dark {
    background-color: var(--tv-brown);
    color: var(--tv-light);
}

.tv-section--dark h1,
.tv-section--dark h2,
.tv-section--dark h3,
.tv-section--dark h4 {
    color: var(--tv-gold);
}

.tv-button {
    display: inline-block;
    font-family: var(--tv-font-body);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 1rem 2.5rem;
    border-radius: var(--tv-radius);
    transition: all var(--tv-transition);
    cursor: pointer;
    border: none;
    text-align: center;
}

.tv-button--primary {
    background: linear-gradient(135deg, var(--tv-orange) 0%, var(--tv-burgundy) 100%);
    color: var(--tv-light);
    box-shadow: var(--tv-shadow);
}

.tv-button--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(44, 24, 16, 0.2);
    color: var(--tv-light);
}

.tv-button--secondary {
    background-color: var(--tv-brown);
    color: var(--tv-gold);
    border: 2px solid var(--tv-gold);
}

.tv-button--secondary:hover {
    background-color: var(--tv-gold);
    color: var(--tv-brown);
    transform: translateY(-2px);
}

.tv-button--large {
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
}

.tv-card {
    background-color: var(--tv-light);
    border-radius: var(--tv-radius);
    padding: 2rem;
    box-shadow: var(--tv-shadow);
    transition: all var(--tv-transition);
}

.tv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(44, 24, 16, 0.25);
    border-color: var(--tv-gold);
}

.tv-card__title {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    color: var(--tv-brown);
    margin-bottom: 0.5rem;
}

.tv-card__content {
    line-height: 1.7;
}

.tv-grid {
    display: grid;
    gap: 2rem;
}

.tv-grid--2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.tv-grid--3 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.tv-grid--4 {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.tv-hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    color: var(--tv-light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 1.5rem;
}

.tv-hero-subtitle {
    font-size: clamp(1.25rem, 3vw, 2rem);
    font-family: var(--tv-font-body);
    font-weight: 400;
    color: var(--tv-beige);
    margin-bottom: 2rem;
}

.tv-text-center {
    text-align: center;
}

.tv-text-gold {
    color: var(--tv-gold);
}

.tv-text-large {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
}

.tv-mb-small {
    margin-bottom: 0.5rem;
}

.tv-mb-medium {
    margin-bottom: var(--tv-space);
}

.tv-mb-large {
    margin-bottom: var(--tv-space-lg);
}

.tv-mt-large {
    margin-top: var(--tv-space-lg);
}
/**/
/* Age Verification Modal */
.tv-age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.tv-age-modal.tv-modal--active {
    opacity: 1;
    visibility: visible;
}

.tv-modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 24, 16, 0.95);
    backdrop-filter: blur(10px);
}

.tv-modal__content {
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, var(--tv-beige) 0%, var(--tv-light) 100%);
    max-width: 600px;
    width: 90%;
    border-radius: var(--tv-radius);
    padding: 3rem 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 3px solid var(--tv-gold);
    animation: modalSlideIn 0.5s ease-out;
}

.tv-modal__header {
    text-align: center;
    margin-bottom: 2rem;
}

.tv-modal__badge {
    width: 100px;
    height: auto;
    margin: 0 auto 1.5rem;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
    animation: badgeSwing 3s ease-in-out infinite;
}

.tv-modal__title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: var(--tv-brown);
    margin-bottom: 0.5rem;
}

.tv-modal__subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--tv-orange);
    font-weight: 700;
}

.tv-modal__body {
    text-align: center;
    margin-bottom: 2rem;
}

.tv-modal__text {
    font-size: clamp(1rem, 2vw, 1.125rem);
    line-height: 1.8;
    color: var(--tv-dark);
}

.tv-modal__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.tv-modal__btn {
    flex: 1;
    min-width: 200px;
}

.tv-modal__footer {
    text-align: center;
}

.tv-modal__disclaimer {
    font-size: 0.875rem;
    color: var(--tv-burgundy);
    font-style: italic;
    line-height: 1.6;
}

/* Animations */
@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes starRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes badgeSwing {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-5deg);
    }
    75% {
        transform: rotate(5deg);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .tv-modal__content {
        padding: 2rem 1.5rem;
    }

    .tv-modal__actions {
        flex-direction: column;
    }

    .tv-modal__btn {
        width: 100%;
    }

    .tv-modal__decoration {
        width: 60px;
    }
}
/**/
.tv-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    transition: all var(--tv-transition);
    padding: 1.5rem 0;
}

.tv-header.tv-header--scrolled {
    background-color: rgba(93, 64, 55, 0.95);
    box-shadow: var(--tv-shadow);
    padding: 1rem 0;
    backdrop-filter: blur(10px);
}

.tv-header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tv-logo {
    font-family: var(--tv-font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--tv-light);
    text-decoration: none;
    transition: all var(--tv-transition);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    display: inline-block;
}

.tv-logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--tv-light);
    transform: translateX(-50%);
    transition: width var(--tv-transition);
}

.tv-logo:hover::after {
    width: 100%;
}

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

.tv-nav__list {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
}

.tv-nav__link {
    font-family: var(--tv-font-body);
    font-weight: 700;
    font-size: 1rem;
    color: var(--tv-light);
    text-decoration: none;
    position: relative;
    display: inline-block;
    overflow: hidden;
    padding: 5px 0;
}

.tv-nav__link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--tv-gold), transparent);
    transition: left 0.5s ease;
}

.tv-nav__link:hover::before {
    left: 100%;
}

.tv-nav__link::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(243, 156, 18, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.tv-nav__link:hover::after {
    transform: translateX(100%);
}

.tv-nav__link:hover {
    color: var(--tv-gold);
}

.tv-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.tv-burger__line {
    width: 30px;
    height: 3px;
    background-color: var(--tv-beige);
    transition: all var(--tv-transition);
}
.tv-hero {
    position: relative;
    overflow: hidden;
}

.tv-hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.tv-hero__bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: slowZoom 20s ease-in-out infinite alternate;
}

.tv-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(230, 126, 34, 0.85) 0%, rgba(139, 69, 19, 0.85) 100%);
    z-index: 2;
}

.tv-hero__decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.tv-hero__decoration {
    position: absolute;
    width: 150px;
    height: auto;
    opacity: 0.4;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
}

.tv-hero__decoration--left {
    left: 5%;
    top: 20%;
    animation: floatLeft 6s ease-in-out infinite;
}

.tv-hero__decoration--right {
    right: 5%;
    bottom: 25%;
    animation: floatRight 7s ease-in-out infinite;
}

.tv-hero__content {
    position: relative;
    z-index: 4;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem 0;
}

.tv-hero-title {
    animation: fadeInUp 1s ease-out;
}

.tv-hero-subtitle {
    animation: fadeInUp 1s ease-out 0.2s both;
}

.tv-hero__actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.tv-button {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    min-width: 240px;
}

.tv-button__icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--tv-transition);
}

.tv-button__icon-img {
    width: 100%;
    height: 100%;
    filter: brightness(0) invert(1);
}

.tv-button__text {
    position: relative;
    z-index: 2;
}

.tv-button--primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    border-radius: 50%;
}

.tv-button--primary:hover::before {
    width: 300px;
    height: 300px;
}

.tv-button--primary:hover .tv-button__icon {
    transform: rotate(360deg) scale(1.2);
}

.tv-button--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.tv-button--secondary .tv-button__icon-img {
    filter: brightness(0) saturate(100%) invert(73%) sepia(58%) saturate(447%) hue-rotate(349deg) brightness(98%) contrast(91%);
}

.tv-button--secondary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(243, 156, 18, 0.4), transparent);
    transition: left 0.5s ease;
}

.tv-button--secondary:hover::after {
    left: 100%;
}

.tv-button--secondary:hover .tv-button__icon {
    transform: rotate(20deg) scale(1.15);
}

.tv-button--secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.tv-hero__scroll {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    animation: fadeIn 1s ease-out 0.6s both;
}

.tv-scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--tv-beige);
    text-decoration: none;
    transition: all var(--tv-transition);
    cursor: pointer;
}

.tv-scroll-indicator::before {
    content: '';
    position: absolute;
    bottom: -30px;
    width: 2px;
    height: 30px;
    background: linear-gradient(to bottom, var(--tv-beige), transparent);
    opacity: 0.0;
    transition: opacity var(--tv-transition);
}

.tv-scroll-indicator:hover::before {
    opacity: 1;
}

.tv-scroll-indicator:hover {
    color: var(--tv-gold);
    transform: translateY(5px);
}

.tv-scroll-indicator__text {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.tv-scroll-indicator__icon {
    width: 24px;
    height: 24px;
    filter: brightness(0) saturate(100%) invert(91%) sepia(12%) saturate(571%) hue-rotate(329deg) brightness(99%) contrast(96%);
    animation: float 2s ease-in-out infinite;
}

.tv-frontier {
    position: relative;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.tv-frontier__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.tv-frontier__bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    filter: sepia(30%);
}

.tv-frontier__illustration {
    position: absolute;
    right: 10%;
    bottom: 0;
    width: 300px;
    height: auto;
    z-index: 2;
    opacity: 0.3;
    pointer-events: none;
}

.tv-frontier__cowboy {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
    animation: sway 8s ease-in-out infinite;
}

.tv-frontier__content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.tv-frontier__badge {
    margin-bottom: 2rem;
    animation: spinIn 1s ease-out;
}

.tv-frontier__badge-img {
    width: 80px;
    height: auto;
    margin: 0 auto;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
    animation: pulse 3s ease-in-out infinite;
}

.tv-frontier__title {
    color: var(--tv-brown);
    margin-bottom: 2rem;
}

.tv-frontier__story p {
    font-size: clamp(1.125rem, 2.5vw, 1.25rem);
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: var(--tv-dark);
}

.tv-world {
    background-color: var(--tv-light);
    position: relative;
}

.tv-world__pattern {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tv-world-grid {
    position: relative;
    z-index: 2;
}

.tv-world-card {
    text-align: center;
    transition: all var(--tv-transition);
    background: linear-gradient(135deg, var(--tv-light) 0%, var(--tv-beige) 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 380px;
}

.tv-world-card:hover .tv-world-card__bg {
    opacity: 0.15;
}

.tv-world-card:hover {
    background: linear-gradient(135deg, var(--tv-beige) 0%, var(--tv-light) 100%);
}

.tv-world-card__icon {
    width: 110px;
    height: 110px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--tv-gold) 0%, var(--tv-orange) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--tv-transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.tv-world-card__icon-img {
    width: 80px;
    height: 80px;
    transition: transform var(--tv-transition);
}

.tv-world-card:hover .tv-world-card__icon {
    transform: scale(1.15) rotate(-5deg);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.tv-world-card:hover .tv-world-card__icon-img {
    transform: scale(1.1);
}

.tv-world-card .tv-card__title {
    position: relative;
    z-index: 2;
    margin-bottom: 1rem;
}

.tv-world-card .tv-card__content {
    position: relative;
    z-index: 2;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes slowZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

@keyframes dustFloat {
    0%, 100% {
        background-position: 0% 0%;
        opacity: 0.6;
    }
    50% {
        background-position: 100% 100%;
        opacity: 0.3;
    }
}

@keyframes floatLeft {
    0%, 100% {
        transform: translateY(0) rotate(-5deg);
    }
    50% {
        transform: translateY(-20px) rotate(-8deg);
    }
}

@keyframes floatRight {
    0%, 100% {
        transform: translateY(0) rotate(5deg);
    }
    50% {
        transform: translateY(-15px) rotate(8deg);
    }
}

@keyframes sway {
    0%, 100% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(-2deg);
    }
}

@keyframes spinIn {
    0% {
        transform: rotate(-180deg) scale(0);
        opacity: 0;
    }
    100% {
        transform: rotate(0deg) scale(1);
        opacity: 1;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}
/* Adventure Section */
.tv-adventure {
    background: linear-gradient(135deg, var(--tv-brown) 0%, var(--tv-burgundy) 100%);
    color: var(--tv-light);
    padding: 5rem 0;
}

.tv-adventure__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Visual Side */
.tv-adventure__visual {
    position: relative;
}

.tv-adventure__image-wrap {
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--tv-gold) 0%, var(--tv-orange) 100%);
    border-radius: var(--tv-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.tv-adventure__image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: var(--tv-radius);
}

/* Info Side */
.tv-adventure__info {
    padding: 2rem 0;
}

.tv-adventure__heading {
    color: var(--tv-gold);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: 1.5rem;
}

.tv-adventure__description {
    margin-bottom: 2rem;
}

.tv-adventure__description p {
    font-size: clamp(1rem, 2vw, 1.125rem);
    line-height: 1.8;
    color: var(--tv-beige);
    margin-bottom: 1rem;
}

.tv-adventure__description p:last-child {
    margin-bottom: 0;
}

.tv-adventure__action {
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .tv-adventure {
        padding: 3rem 0;
    }

    .tv-adventure__wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .tv-adventure__info {
        padding: 0;
    }

    .tv-adventure__image-wrap {
        padding: 1rem;
    }
}

.tv-reasons {
    background: linear-gradient(180deg, var(--tv-beige) 0%, var(--tv-light) 100%);
    position: relative;
}

.tv-reasons__rope {
    position: absolute;
    width: 100%;
    height: 30px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 30"><path d="M0 15 Q25 5 50 15 T100 15" stroke="%23A0826D" stroke-width="4" fill="none"/></svg>');
    background-repeat: repeat-x;
    background-size: 100px 30px;
    z-index: 2;
}

.tv-reasons__rope--top {
    top: 0;
}

.tv-reasons__rope--bottom {
    bottom: 0;
    transform: scaleY(-1);
}

.tv-reasons-grid {
    gap: 2rem;
}

.tv-reason-card {
    text-align: center;
    position: relative;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.tv-reason-card__stamp {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 60px;
    height: 60px;
    opacity: 0.7;
    transform: rotate(15deg);
    z-index: 1;
}

.tv-reason-card__stamp-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tv-reason-card__icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--tv-orange) 0%, var(--tv-gold) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--tv-transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.tv-reason-card__icon-img {
    width: 35px;
    height: 35px;
    filter: brightness(0) invert(1);
    transition: transform var(--tv-transition);
}

.tv-reason-card:hover .tv-reason-card__icon {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.tv-reason-card:hover .tv-reason-card__icon-img {
    transform: scale(1.1) rotate(-10deg);
}

.tv-reason-card .tv-card__title {
    position: relative;
    z-index: 2;
    margin-bottom: 1rem;
}

.tv-reason-card .tv-card__content {
    position: relative;
    z-index: 2;
    flex-grow: 1;
}
.tv-journey {
    position: relative;
    overflow: hidden;
}

.tv-journey__map {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    opacity: 0.05;
    z-index: 1;
}

.tv-journey__map-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.tv-trail {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto;
}

.tv-trail__path {
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 1;
}

.tv-trail__svg {
    width: 100%;
    height: 100%;
}

.tv-trail__step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
}

.tv-trail__step::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -3rem;
    transform: translateX(-50%);
    width: 3px;
    height: 3rem;
    background: linear-gradient(180deg, var(--tv-gold) 0%, var(--tv-orange) 100%);
    display: none;
}

.tv-trail__step:last-child::after {
    display: none;
}

.tv-trail__marker {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    position: relative;
}

.tv-trail__icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--tv-gold) 0%, var(--tv-orange) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all var(--tv-transition);
    position: relative;
    z-index: 2;
}

.tv-trail__icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.tv-trail__icon-img {
    width: 50px;
    height: 50px;
    filter: brightness(0) invert(1);
    transition: transform var(--tv-transition);
}

.tv-trail__step:hover .tv-trail__icon {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.tv-trail__step:hover .tv-trail__icon-img {
    transform: scale(1.1);
}

.tv-trail__title {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    color: var(--tv-brown);
    margin-bottom: 0.75rem;
}

.tv-trail__text {
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    color: var(--tv-dark);
    line-height: 1.6;
}

.tv-tales {
    background-color: var(--tv-light);
    position: relative;
}

.tv-tales__barrel {
    position: absolute;
    width: 120px;
    height: auto;
    z-index: 1;
}

.tv-tales__barrel--left {
    left: 5%;
    top: 30%;
    transform: rotate(-10deg);
}

.tv-tales__barrel--right {
    right: 5%;
    bottom: 20%;
    transform: rotate(10deg);
}

.tv-tales__barrel-img {
    width: 100%;
    height: auto;
    opacity: 0.2;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.2));
}

.tv-tales__header {
    position: relative;
    margin-bottom: 3rem;
}

.tv-tales__sign {
    width: 200px;
    height: auto;
    margin: 0 auto 1rem;
    display: block;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
}


.tv-faq {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.tv-faq__item {
    margin-bottom: 1rem;
    border-radius: var(--tv-radius);
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--tv-brown);
    background-color: var(--tv-beige);
    transition: all var(--tv-transition);
}

.tv-faq__item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.tv-faq__question {
    width: 100%;
    padding: 1.5rem;
    background-color: transparent;
    color: var(--tv-brown);
    border: none;
    text-align: left;
    font-family: var(--tv-font-body);
    font-weight: 700;
    font-size: 1.125rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: background-color var(--tv-transition);
}

.tv-faq__question:hover {
    background-color: rgba(243, 156, 18, 0.1);
}

.tv-faq__bullet {
    color: var(--tv-gold);
    font-size: 1.5rem;
    line-height: 1;
    transition: transform var(--tv-transition);
}

.tv-faq__item.tv-faq__item--active .tv-faq__bullet {
    transform: rotate(90deg);
}

.tv-faq__arrow {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--tv-transition);
}

.tv-faq__icon {
    width: 20px;
    height: 20px;
    filter: brightness(0) saturate(100%) invert(39%) sepia(15%) saturate(900%) hue-rotate(338deg) brightness(93%) contrast(89%);
}

.tv-faq__item.tv-faq__item--active .tv-faq__arrow {
    transform: rotate(180deg);
}

.tv-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.tv-faq__item.tv-faq__item--active .tv-faq__answer {
    max-height: 500px;
}

.tv-faq__answer-inner {
    padding: 0 1.5rem 1.5rem 3.5rem;
}

.tv-faq__answer-inner p {
    margin: 0;
    line-height: 1.7;
    color: var(--tv-dark);
}
/**/
.tv-cta {
    background: linear-gradient(135deg, var(--tv-orange) 0%, var(--tv-gold) 100%);
    position: relative;
    overflow: hidden;
}

.tv-cta__lassos {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}

.tv-cta__lasso {
    position: absolute;
    width: 200px;
    height: auto;
    opacity: 0.2;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.3));
}

.tv-cta__lasso--left {
    left: 5%;
    top: 50%;
    transform: translateY(-50%) rotate(-15deg);
    animation: lassoSwing 6s ease-in-out infinite;
}

.tv-cta__lasso--right {
    right: 5%;
    top: 50%;
    transform: translateY(-50%) rotate(15deg) scaleX(-1);
    animation: lassoSwing 7s ease-in-out infinite 1s;
}

.tv-cta__inner {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.tv-cta__title {
    color: var(--tv-brown);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.tv-cta__text {
    font-size: clamp(1rem, 2vw, 1.125rem);
    line-height: 1.7;
    color: var(--tv-dark);
    margin-bottom: 2.5rem;
}

.tv-cta__form-wrapper {
    position: relative;
    min-height: 80px;
}

.tv-cta__form {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.tv-cta__form.tv-cta__form--hidden {
    opacity: 0;
    transform: scale(0.95);
    pointer-events: none;
    position: absolute;
    width: 100%;
}

.tv-cta__input-group {
    display: flex;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.5rem;
    border-radius: calc(var(--tv-radius) + 0.5rem);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.tv-cta__input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid transparent;
    border-radius: var(--tv-radius);
    font-family: var(--tv-font-body);
    font-size: 1rem;
    background-color: var(--tv-light);
    color: var(--tv-dark);
    transition: all var(--tv-transition);
}

.tv-cta__input:focus {
    outline: none;
    border-color: var(--tv-brown);
    background-color: var(--tv-beige);
}

.tv-cta__input::placeholder {
    color: rgba(93, 64, 55, 0.5);
}

.tv-cta__success {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.5s ease, transform 0.5s ease;
    text-align: center;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.tv-cta__success.tv-cta__success--visible {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
    position: relative;
}

.tv-cta__success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(46, 204, 113, 0.3);
    animation: successPop 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.tv-cta__success-img {
    width: 45px;
    height: 45px;
    filter: brightness(0) invert(1);
}

.tv-cta__success-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--tv-brown);
    margin-bottom: 0.75rem;
}

.tv-cta__success-text {
    font-size: 1rem;
    color: var(--tv-dark);
    line-height: 1.6;
}
/**/
.tv-footer {
    background: linear-gradient(180deg, var(--tv-brown) 0%, var(--tv-dark) 100%);
    color: var(--tv-beige);
    padding: 4rem 0 1rem;
}

.tv-footer__main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 2px solid rgba(245, 230, 211, 0.2);
    margin-bottom: 2rem;
}

.tv-footer__logo {
    font-family: var(--tv-font-heading);
    font-size: 2rem;
    color: var(--tv-gold);
    margin-bottom: 0.5rem;
}

.tv-footer__tagline {
    font-size: 1rem;
    color: var(--tv-beige);
    opacity: 0.8;
    margin-bottom: 2rem;
}

.tv-footer__address {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.tv-footer__address-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    filter: brightness(0) saturate(100%) invert(73%) sepia(58%) saturate(447%) hue-rotate(349deg) brightness(98%) contrast(91%);
}

.tv-footer__address address {
    font-style: normal;
    line-height: 1.6;
    color: var(--tv-beige);
}

.tv-footer__email {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.tv-footer__email-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    filter: brightness(0) saturate(100%) invert(73%) sepia(58%) saturate(447%) hue-rotate(349deg) brightness(98%) contrast(91%);
}

.tv-footer__email a {
    color: var(--tv-beige);
    text-decoration: none;
    transition: color var(--tv-transition);
}

.tv-footer__email a:hover {
    color: var(--tv-gold);
}

.tv-footer__links-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.tv-footer__column-title {
    font-size: 1.125rem;
    color: var(--tv-gold);
    margin-bottom: 1.25rem;
    font-weight: 700;
}

.tv-footer__nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.tv-footer__link {
    color: var(--tv-beige);
    text-decoration: none;
    transition: all var(--tv-transition);
    position: relative;
    padding-left: 0;
    display: inline-block;
    width: fit-content;
    font-size: medium;
}

.tv-footer__link::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all var(--tv-transition);
    color: var(--tv-gold);
}

.tv-footer__link:hover {
    color: var(--tv-gold);
    padding-left: 20px;
}

.tv-footer__link:hover::before {
    opacity: 1;
    left: 0;
}

.tv-footer__support {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.tv-footer__support-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
    background-color: rgba(245, 230, 211, 0.1);
    border-radius: var(--tv-radius);
    transition: all var(--tv-transition);
}

.tv-footer__support-link:hover {
    background-color: rgba(245, 230, 211, 0.2);
    transform: translateY(-2px);
}

.tv-footer__support-logo {
    max-width: 80px;
    height: 40px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: opacity var(--tv-transition);
}

.tv-footer__support-link:hover .tv-footer__support-logo {
    opacity: 1;
}

.tv-footer__age-badge {
    display: flex;
    justify-content: center;
    padding: 0.75rem;
}

.tv-footer__age-img {
    width: 60px;
    height: 60px;
    filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.3));
}

.tv-footer__disclaimer {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 2rem;
    border-radius: var(--tv-radius);
    margin-bottom: 2rem;
}

.tv-footer__disclaimer-title {
    font-size: 1.125rem;
    color: var(--tv-gold);
    margin-bottom: 1rem;
    font-weight: 700;
}

.tv-footer__disclaimer p {
    font-size: 0.875rem;
    line-height: 1.7;
    color: var(--tv-beige);
    opacity: 0.9;
    margin-bottom: 0.75rem;
}

.tv-footer__disclaimer p:last-child {
    margin-bottom: 0;
}

.tv-footer__bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(245, 230, 211, 0.1);
}

.tv-footer__copyright {
    font-size: 0.875rem;
    color: var(--tv-beige);
    opacity: 0.6;
}

@keyframes lassoSwing {
    0%, 100% {
        transform: translateY(-50%) rotate(-15deg);
    }
    50% {
        transform: translateY(-50%) rotate(-10deg) translateX(10px);
    }
}

@keyframes starTwinkle {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.5;
    }
}

@keyframes successPop {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

@media (max-width: 1024px) {
    .tv-gameshow__inner {
        gap: 3rem;
    }

    .tv-gameshow__pistol {
        width: 85px;
    }

    .tv-trail {
        gap: 2rem;
    }

    .tv-trail__step {
        padding: 0 1rem;
    }
    .tv-footer__main {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .tv-footer__links-group {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .tv-gameshow__coin {
        width: 30px;
        height: 30px;
    }

    .tv-gameshow__pistol {
        width: 50px;
    }

    .tv-gameshow__hat-img {
        width: 60px;
    }

    .tv-gameshow__text {
        font-size: 0.95rem;
    }

    .tv-trail__marker {
        width: 80px;
        height: 80px;
    }

    .tv-trail__icon {
        width: 80px;
        height: 80px;
    }

    .tv-trail__icon-img {
        width: 40px;
        height: 40px;
    }

    .tv-trail__title {
        font-size: 1.125rem;
    }

    .tv-trail__text {
        font-size: 0.875rem;
    }
}
@media (max-width: 768px) {
    .tv-gameshow__inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .tv-gameshow__image {
        order: 1;
    }

    .tv-gameshow__content {
        order: 2;
    }

    .tv-gameshow__coin {
        width: 40px;
        height: 40px;
    }

    .tv-gameshow__pistol {
        width: 70px;
    }

    .tv-gameshow__pistol--left {
        left: -15px;
    }

    .tv-gameshow__pistol--right {
        right: -15px;
    }

    .tv-gameshow__hat-img {
        width: 80px;
    }

    .tv-gameshow__frame-border {
        padding: 0.75rem;
    }

    .tv-reasons__rope {
        height: 20px;
        background-size: 60px 20px;
    }

    .tv-reason-card {
        min-height: auto;
    }

    .tv-trail {
        flex-direction: column;
        gap: 3rem;
        align-items: center;
    }

    .tv-trail__path {
        display: none;
    }

    .tv-trail__step::after {
        display: block;
    }

    .tv-trail__step:last-child::after {
        display: none;
    }

    .tv-trail__step {
        max-width: 400px;
        width: 100%;
    }

    .tv-trail__marker {
        width: 100px;
        height: 100px;
    }

    .tv-trail__icon {
        width: 100px;
        height: 100px;
    }

    .tv-trail__icon-img {
        width: 50px;
        height: 50px;
    }

    .tv-tales__barrel {
        width: 80px;
    }

    .tv-tales__sign {
        width: 150px;
    }

    .tv-faq__answer-inner {
        padding: 0 1.5rem 1.5rem 1.5rem;
    }

    .tv-footer__content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .tv-footer__links {
        flex-direction: column;
        gap: 1rem;
    }
    .tv-container {
        padding: 0 1rem;
    }

    .tv-section {
        padding: 2rem 0;
    }

    .tv-section--hero {
        min-height: 80vh;
    }

    .tv-grid--2,
    .tv-grid--3,
    .tv-grid--4 {
        grid-template-columns: 1fr;
    }

    .tv-button {
        padding: 0.875rem 2rem;
    }
    .tv-cta__input-group {
        flex-direction: column;
        gap: 0.75rem;
    }

    .tv-cta__lasso {
        width: 120px;
    }

    .tv-cta__star {
        width: 50px;
        height: 50px;
    }
    .tv-logo {
        color: var(--tv-beige);
    }
    .tv-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: var(--tv-brown);
        padding: 5rem 2rem;
        transition: right var(--tv-transition);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    }

    .tv-nav.tv-nav--open {
        right: 0;
    }

    .tv-nav__list {
        flex-direction: column;
        gap: 2rem;
    }

    .tv-nav__link {
        font-size: 1.25rem;
    }

    .tv-burger {
        display: flex;
        z-index: 1001;
    }

    .tv-burger.tv-burger--active .tv-burger__line:nth-child(1) {
        transform: rotate(45deg) translate(8px, 4px);
    }

    .tv-burger.tv-burger--active .tv-burger__line:nth-child(2) {
        opacity: 0;
    }

    .tv-burger.tv-burger--active .tv-burger__line:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -4px);
    }

    .tv-hero__content {
        padding: 1rem 0;
    }

    .tv-hero__actions {
        flex-direction: column;
        gap: 1rem;
    }

    .tv-button {
        width: 100%;
        min-width: auto;
    }

    .tv-hero__scroll {
        display: none;
    }

    .tv-hero__dust {
        opacity: 0.5;
    }

    .tv-hero__decoration {
        width: 100px;
    }

    .tv-frontier {
        min-height: 50vh;
    }

    .tv-frontier__illustration {
        width: 150px;
        opacity: 0.2;
    }

    .tv-frontier__story p {
        font-size: 1rem;
    }

    .tv-world-card {
        min-height: auto;
    }
    .tv-footer__links-group {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .tv-footer__support {
        grid-template-columns: 1fr;
    }

    .tv-footer__age-badge {
        grid-column: span 1;
    }

    .tv-footer__disclaimer {
        padding: 1.5rem;
    }
}
