:root {
    --primary-orange: #FF6B35;
    --primary-green: #4CAF50;
    --primary-blue: #1E88E5;
    --primary-dark-blue: #0F172A;
    --dark-grey: #2C3E50;
    --light-grey: #ECF0F1;
    --white: #FFFFFF;
    --accent-yellow: #FFD700;
    --accent-brown: #8B6F47;
    --accent-silver: #C0C0C0;
    --text-dark: #1A1A1A;
    --text-light: #FFFFFF;
    --text-grey: #6B7280;
    --hero-bg-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: var(--dark-grey);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--white);
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--primary-orange);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: all 0.3s ease;
    border-radius: 3px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    max-width: 85%;
    height: 100%;
    background: var(--dark-grey);
    z-index: 999;
    transition: right 0.3s ease;
    padding: 2rem 1.5rem;
    overflow-y: auto;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
    pointer-events: auto;
    display: block;
}

.mobile-menu h3 {
    color: var(--white) !important;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    display: block;
    visibility: visible;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu .nav-links {
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0;
    list-style: none;
    padding: 0;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.mobile-menu .nav-links li {
    margin: 0;
    padding: 0;
    display: block;
    width: 100%;
    visibility: visible;
    opacity: 1;
}

.mobile-menu .nav-links a {
    display: block;
    color: var(--white) !important;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    width: 100%;
    cursor: pointer;
    pointer-events: auto;
    position: relative;
    z-index: 1000;
    background: transparent;
    opacity: 1;
    visibility: visible;
}

.mobile-menu .nav-links a:hover,
.mobile-menu .nav-links a:active,
.mobile-menu .nav-links a:focus {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-orange);
    transform: translateX(5px);
    outline: none;
}

.hero {
    background-image: url('../images/hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 100px 0;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.85) 0%, rgba(118, 75, 162, 0.85) 100%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-bonus {
    background: rgba(255, 255, 255, 0.15);
    padding: 25px;
    border-radius: 15px;
    margin: 30px auto;
    max-width: 600px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 0.8s ease 0.6s both;
}

.bonus-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--white);
}

.bonus-text strong {
    color: var(--accent-yellow);
    font-size: 1.3rem;
}

.hero-buttons {
    margin-top: 2rem;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.google-play-btn {
    display: inline-block;
    transition: transform 0.3s ease;
    text-decoration: none;
}

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

.google-play-badge {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

.bonus-form-section {
    padding: 80px 0;
    background: var(--light-grey);
}

.form-with-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    justify-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.form-image {
    animation: fadeInUp 0.8s ease;
    grid-column: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.form-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    display: block;
}

.form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 0.8s ease 0.2s both;
    max-width: 600px;
    margin: 0 auto;
}

.form-wrapper h2 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    text-align: center;
}

.form-wrapper > p {
    text-align: center;
    color: var(--text-grey);
    margin-bottom: 2rem;
}

.bonus-form .form-group {
    margin-bottom: 1.5rem;
}

.bonus-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.bonus-form input {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--light-grey);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.bonus-form input:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
}

.btn-primary {
    background: var(--primary-orange);
    color: var(--white);
    width: 100%;
}

.btn-primary:hover {
    background: #E55A2B;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

section {
    padding: 80px 0;
    animation: fadeInUp 0.8s ease;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-blue);
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.card {
    background: var(--white);
    padding: 0;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
}

.card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    margin-bottom: 0;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.card:hover .card-image img {
    transform: scale(1.1);
}

.card h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    padding: 0 2rem;
    padding-top: 1.5rem;
}

.card p {
    padding: 0 2rem;
    padding-bottom: 2rem;
}

.contact-map {
    margin: 40px 0;
}

.contact-map h2 {
    margin-bottom: 20px;
    color: var(--primary-blue);
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 0.8s ease;
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: 0;
    display: block;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-item {
    padding: 1.5rem;
    background: var(--light-grey);
    border-radius: 10px;
}

.contact-item h3 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

footer {
    background: var(--dark-grey);
    color: var(--white);
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-orange);
}

.google-play-btn-footer {
    display: inline-block;
    margin-top: 1rem;
    transition: transform 0.3s ease;
}

.google-play-btn-footer:hover {
    transform: scale(1.05);
}

.google-play-badge-footer {
    height: 50px;
    width: auto;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.fs-note {
    margin-top: 10px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-grey);
    color: var(--white);
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-text {
    flex: 1;
    min-width: 250px;
}

.cookie-text a {
    color: var(--primary-orange);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-btn-accept {
    background: var(--primary-green);
    color: var(--white);
}

.cookie-btn-accept:hover {
    background: #45a049;
}

.cookie-btn-decline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.cookie-btn-decline:hover {
    background: rgba(255, 255, 255, 0.1);
}

.thank-you-section {
    padding: 100px 0;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.thank-you-content {
    max-width: 600px;
    margin: 0 auto;
}

.thank-you-content h1 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.thank-you-content p {
    font-size: 1.2rem;
    color: var(--text-grey);
    margin-bottom: 2rem;
}

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

@media (max-width: 768px) {
    *:not(.mobile-menu):not(.mobile-menu-overlay):not(.mobile-menu-toggle span):not(.footer-section a):not(.footer-section a:hover),
    *:not(.mobile-menu):not(.mobile-menu-overlay):not(.mobile-menu-toggle span):not(.footer-section a):not(.footer-section a:hover)::before,
    *:not(.mobile-menu):not(.mobile-menu-overlay):not(.mobile-menu-toggle span):not(.footer-section a):not(.footer-section a:hover)::after {
        animation: none !important;
        transition: none !important;
    }

    .mobile-menu {
        transition: right 0.3s ease;
    }

    .mobile-menu-overlay {
        transition: opacity 0.3s ease;
    }

    .mobile-menu-toggle span {
        transition: all 0.3s ease;
    }

    nav .nav-links {
        display: none;
    }

    .mobile-menu .nav-links {
        display: flex !important;
    }

    .hero-content,
    .hero h1,
    .hero-subtitle,
    .hero-bonus,
    .hero-buttons,
    .card,
    .form-wrapper,
    .contact-item,
    .stats-grid .stat-item,
    .section-title,
    .fishing-location,
    .review-card,
    .feature-card,
    .accordion-item,
    .table-wrapper,
    .contact-info,
    .contact-form,
    .map-container,
    .form-image {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }

    @keyframes fadeInUp {
        from {
            opacity: 1;
            transform: none;
        }
        to {
            opacity: 1;
            transform: none;
        }
    }

    footer,
    .footer-content,
    .footer-section,
    .footer-bottom,
    .footer-section h3,
    .footer-section h4,
    .footer-section ul,
    .footer-section ul li,
    .footer-section a,
    .google-play-btn-footer,
    .google-play-badge-footer {
        all: revert;
    }

    footer {
        background: var(--dark-grey);
        color: var(--white);
        padding: 50px 0 20px;
    }

    .footer-content {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .footer-section h3,
    .footer-section h4 {
        margin-bottom: 1rem;
        color: var(--white);
    }

    .footer-section ul {
        list-style: none;
    }

    .footer-section ul li {
        margin-bottom: 0.5rem;
    }

    .footer-section a {
        color: rgba(255, 255, 255, 0.8) !important;
        text-decoration: none !important;
        transition: color 0.3s ease !important;
        font-size: inherit !important;
        font-weight: inherit !important;
        display: inline !important;
    }

    .footer-section a:hover {
        color: var(--primary-orange) !important;
    }

    .footer-section a[href*="politica"],
    .footer-section a[href*="terminos"],
    .footer-section a[href*="cookies"] {
        color: rgba(255, 255, 255, 0.8) !important;
        text-decoration: none !important;
        transition: color 0.3s ease !important;
    }

    .footer-section a[href*="politica"]:hover,
    .footer-section a[href*="terminos"]:hover,
    .footer-section a[href*="cookies"]:hover {
        color: var(--primary-orange) !important;
    }

    .google-play-btn-footer {
        display: inline-block;
        margin-top: 1rem;
        transition: transform 0.3s ease;
    }

    .google-play-btn-footer:hover {
        transform: scale(1.05);
    }

    .google-play-badge-footer {
        height: 50px;
        width: auto;
    }

    .footer-bottom {
        text-align: center;
        padding-top: 2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mobile-menu-toggle {
        display: flex;
        z-index: 1001;
        position: relative;
    }

    .mobile-menu {
        width: 300px;
        max-width: 90%;
        transition: right 0.3s ease;
    }

    .mobile-menu-overlay {
        transition: opacity 0.3s ease;
    }

    .mobile-menu-toggle span {
        transition: all 0.3s ease;
    }

    .mobile-menu .nav-links a {
        font-size: 1rem;
        padding: 1rem;
        color: var(--white) !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .mobile-menu .nav-links {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .mobile-menu .nav-links li {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    body.document-page .card,
    body.document-page .form-wrapper,
    body.document-page .contact-item,
    body.document-page .stats-grid .stat-item {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .card {
        padding: 1.5rem !important;
    }

    .card p,
    .card h3,
    .card ul,
    .card li,
    .card strong,
    .card a {
        color: var(--text-dark) !important;
    }

    .card h3 {
        font-size: 1.2rem !important;
        color: var(--primary-blue) !important;
    }

    .card p {
        font-size: 1rem !important;
        line-height: 1.7 !important;
        color: var(--text-dark) !important;
    }

    .card p[style*="color"] {
        color: var(--text-dark) !important;
    }
}

    .hero {
        background-attachment: scroll;
        min-height: 500px;
        padding: 80px 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .bonus-text {
        font-size: 1rem;
    }

    .google-play-badge {
        height: 50px;
    }

    .section-title {
        font-size: 2rem;
    }

    .form-with-image {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-image {
        order: 1;
        grid-column: 1;
    }

    .form-wrapper {
        order: 2;
        grid-column: 1;
        padding: 30px 20px;
    }

    .map-container iframe {
        height: 300px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

.accordion {
    margin: 2rem 0;
}

.accordion-item {
    background: var(--white);
    border: 1px solid var(--light-grey);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.accordion-header {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    transition: background 0.3s ease;
    user-select: none;
}

.accordion-header:hover {
    background: var(--light-grey);
}

.accordion-header h3 {
    margin: 0;
    color: var(--primary-blue);
    font-size: 1.1rem;
}

.accordion-icon {
    font-size: 1.5rem;
    color: var(--primary-blue);
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.5rem;
}

.accordion-item.active .accordion-content {
    max-height: 1000px;
    padding: 1.5rem;
}

.accordion-content p {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.accordion-content ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.accordion-content li {
    margin-bottom: 0.5rem;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

thead {
    background: var(--primary-blue);
    color: var(--white);
}

th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

td {
    padding: 1rem;
    border-bottom: 1px solid var(--light-grey);
}

tbody tr {
    transition: background 0.3s ease;
}

tbody tr:hover {
    background: var(--light-grey);
}

tbody tr:last-child td {
    border-bottom: none;
}

.table-responsive {
    overflow-x: auto;
    margin: 2rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-grey);
}

.article-content {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.article-content h2 {
    color: var(--primary-blue);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.article-content h3 {
    color: var(--primary-blue);
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
}

.article-content p {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.article-content ul,
.article-content ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.article-content li {
    margin-bottom: 0.8rem;
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2rem 0;
}

.rating-stars {
    color: var(--accent-yellow);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.review-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.review-author {
    font-weight: bold;
    color: var(--primary-blue);
    font-size: 1.1rem;
}

.review-date {
    color: var(--text-grey);
    font-size: 0.9rem;
}

.review-rating {
    margin-bottom: 1rem;
}

.review-text {
    color: var(--text-dark);
    line-height: 1.8;
}

.comparison-table {
    margin: 2rem 0;
}

.comparison-table th:first-child {
    width: 30%;
}

.feature-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: var(--primary-green);
    color: var(--white);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

.timeline {
    position: relative;
    padding: 2rem 0;
    margin: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-blue);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    width: 50%;
    padding: 0 2rem;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
    padding-right: 3rem;
}

.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
    padding-left: 3rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--primary-orange);
    border-radius: 50%;
    top: 0;
    border: 4px solid var(--white);
    box-shadow: 0 0 0 2px var(--primary-blue);
}

.timeline-item:nth-child(odd)::before {
    right: -10px;
}

.timeline-item:nth-child(even)::before {
    left: -10px;
}

.timeline-content {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.timeline-date {
    font-weight: bold;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        left: 0 !important;
        text-align: left !important;
        padding-left: 3rem !important;
        padding-right: 1rem !important;
    }

    .timeline-item::before {
        left: 10px !important;
    }

    .table-responsive {
        font-size: 0.9rem;
    }

    th, td {
        padding: 0.7rem;
    }

    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    *:not(.mobile-menu):not(.mobile-menu-overlay):not(.mobile-menu-toggle span):not(.footer-section a):not(.footer-section a:hover),
    *:not(.mobile-menu):not(.mobile-menu-overlay):not(.mobile-menu-toggle span):not(.footer-section a):not(.footer-section a:hover)::before,
    *:not(.mobile-menu):not(.mobile-menu-overlay):not(.mobile-menu-toggle span):not(.footer-section a):not(.footer-section a:hover)::after {
        animation: none !important;
        transition: none !important;
    }

    .mobile-menu {
        transition: right 0.3s ease;
    }

    .mobile-menu-overlay {
        transition: opacity 0.3s ease;
    }

    .mobile-menu-toggle span {
        transition: all 0.3s ease;
    }

    .hero-content,
    .hero h1,
    .hero-subtitle,
    .hero-bonus,
    .hero-buttons,
    .card,
    .form-wrapper,
    .contact-item,
    .stats-grid .stat-item,
    .section-title,
    .fishing-location,
    .review-card,
    .feature-card,
    .accordion-item,
    .table-wrapper,
    .contact-info,
    .contact-form,
    .map-container,
    .form-image {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }

    @keyframes fadeInUp {
        from {
            opacity: 1;
            transform: none;
        }
        to {
            opacity: 1;
            transform: none;
        }
    }

    footer,
    .footer-content,
    .footer-section,
    .footer-bottom,
    .footer-section h3,
    .footer-section h4,
    .footer-section ul,
    .footer-section ul li,
    .footer-section a,
    .google-play-btn-footer,
    .google-play-badge-footer {
        all: revert;
    }

    footer {
        background: var(--dark-grey);
        color: var(--white);
        padding: 50px 0 20px;
    }

    .footer-content {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .footer-section h3,
    .footer-section h4 {
        margin-bottom: 1rem;
        color: var(--white);
    }

    .footer-section ul {
        list-style: none;
    }

    .footer-section ul li {
        margin-bottom: 0.5rem;
    }

    .footer-section a {
        color: rgba(255, 255, 255, 0.8) !important;
        text-decoration: none !important;
        transition: color 0.3s ease !important;
        font-size: inherit !important;
        font-weight: inherit !important;
        display: inline !important;
    }

    .footer-section a:hover {
        color: var(--primary-orange) !important;
    }

    .footer-section a[href*="politica"],
    .footer-section a[href*="terminos"],
    .footer-section a[href*="cookies"] {
        color: rgba(255, 255, 255, 0.8) !important;
        text-decoration: none !important;
        transition: color 0.3s ease !important;
    }

    .footer-section a[href*="politica"]:hover,
    .footer-section a[href*="terminos"]:hover,
    .footer-section a[href*="cookies"]:hover {
        color: var(--primary-orange) !important;
    }

    .google-play-btn-footer {
        display: inline-block;
        margin-top: 1rem;
        transition: transform 0.3s ease;
    }

    .google-play-btn-footer:hover {
        transform: scale(1.05);
    }

    .google-play-badge-footer {
        height: 50px;
        width: auto;
    }

    .footer-bottom {
        text-align: center;
        padding-top: 2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .hero {
        padding: 60px 0;
        min-height: 400px;
        background-attachment: scroll;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .hero-bonus {
        padding: 20px;
    }

    section {
        padding: 50px 0;
    }

    .accordion-header {
        padding: 1rem;
    }

    .accordion-header h3 {
        font-size: 1rem;
    }

    table {
        font-size: 0.85rem;
    }

    th, td {
        padding: 0.5rem;
    }

    .mobile-menu {
        width: 100%;
        max-width: 100%;
        padding: 1.5rem 1rem;
        transition: right 0.3s ease;
    }

    .mobile-menu-overlay {
        transition: opacity 0.3s ease;
    }

    .mobile-menu-toggle span {
        transition: all 0.3s ease;
    }

    .mobile-menu .nav-links {
        margin-top: 1rem;
        gap: 1rem;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .mobile-menu .nav-links a {
        font-size: 0.95rem;
        padding: 0.9rem;
        color: var(--white) !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .mobile-menu .nav-links li {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .card {
        padding: 1.5rem 1rem !important;
        margin: 1rem 0 !important;
    }

    .card p,
    .card h3,
    .card ul,
    .card li,
    .card strong,
    .card a {
        color: var(--text-dark) !important;
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
    }

    .card p[style*="color"],
    .card[style*="color"] p,
    .policy-content .card p,
    .policy-content .card li {
        color: var(--text-dark) !important;
    }

    .card h3[style*="color"],
    .policy-content .card h3 {
        color: var(--primary-blue) !important;
    }

    .policy-content .card {
        background: var(--white) !important;
        color: var(--text-dark) !important;
    }

    .policy-content .card * {
        color: inherit !important;
    }

    .policy-content .card h3 {
        color: var(--primary-blue) !important;
    }

    .policy-content .card a {
        color: var(--primary-blue) !important;
    }

    .card h3 {
        font-size: 1.1rem !important;
        margin-top: 1rem !important;
        margin-bottom: 0.8rem !important;
    }

    .card ul {
        margin-left: 1.5rem !important;
    }

    .card li {
        margin-bottom: 0.5rem !important;
    }
}

