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

:root {
    --primary-color: #556B2F;
    --secondary-color: #6B8E23;
    --accent-color: #9ACD32;
    --text-color: #2F3E1F;
    --text-light: #4A5D2F;
    --bg-color: #F5F5DC;
    --white: #ffffff;
    --border-color: #D4D4AA;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 4px 12px rgba(0, 0, 0, 0.15);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    overflow-x: hidden;
}

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


.header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo h1 {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.nav {
    position: relative;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 5px;
    z-index: 1001;
    position: relative;
    width: 30px;
    height: 30px;
    justify-content: center;
    align-items: center;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
    display: block;
    position: absolute;
}

.mobile-menu-toggle span:nth-child(1) {
    top: 6px;
}

.mobile-menu-toggle span:nth-child(2) {
    top: 13px;
}

.mobile-menu-toggle span:nth-child(3) {
    top: 20px;
}

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

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

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

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

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

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(2px);
}

.menu-overlay.active {
    display: block;
    opacity: 1;
}


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

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

.btn-primary:hover {
    background-color: #3D4A1F;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: #5A6F1E;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}


.hero {
    background: linear-gradient(135deg, rgba(85, 107, 47, 0.8) 0%, rgba(107, 142, 35, 0.8) 100%),
                url('../image/Pictures_of_fishing_202512061811.jpeg') center/cover no-repeat;
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
    animation: fadeIn 0.8s ease-out;
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    background-attachment: fixed;
}

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

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    animation: fadeIn 1s ease-out 0.2s both;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    animation: fadeIn 1s ease-out 0.4s both;
}


section {
    padding: 4rem 0;
    animation: fadeIn 0.8s ease-out;
}

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

.page-header {
    background: linear-gradient(135deg, rgba(85, 107, 47, 0.8) 0%, rgba(107, 142, 35, 0.8) 100%),
                url('image/360_F_833410040_JKRqwzupKtja5BaJKjOoChCUGnL0JD8e.jpeg') center/cover no-repeat;
    color: var(--white);
    padding: 3rem 0;
    text-align: center;
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
}

.page-header.articles-header {
    background: linear-gradient(135deg, rgba(85, 107, 47, 0.8) 0%, rgba(107, 142, 35, 0.8) 100%),
                url('image/Create_a_picture_202512061838.jpeg') center/cover no-repeat;
}

.page-header.game-header {
    background: linear-gradient(135deg, rgba(85, 107, 47, 0.8) 0%, rgba(107, 142, 35, 0.8) 100%),
                url('image/Create_a_picture_202512061839-2.jpeg') center/cover no-repeat;
}

.page-header.contact-header {
    background: linear-gradient(135deg, rgba(85, 107, 47, 0.8) 0%, rgba(107, 142, 35, 0.8) 100%),
                url('image/Create_a_picture_202512061831-2.jpeg') center/cover no-repeat;
}

.page-header.privacy-header,
.page-header.terms-header,
.page-header.cookies-header {
    background: linear-gradient(135deg, rgba(85, 107, 47, 0.8) 0%, rgba(107, 142, 35, 0.8) 100%),
                url('image/360_F_833410040_JKRqwzupKtja5BaJKjOoChCUGnL0JD8e.jpeg') center/cover no-repeat;
}

.page-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.page-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
}


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

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 0.6s ease-out both;
}

.feature-card:nth-child(1) {
    animation-delay: 0.1s;
}

.feature-card:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.3s;
}

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

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.feature-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}


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

.tournament-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    animation: fadeInUp 0.6s ease-out both;
}

.tournament-card.featured {
    border: 2px solid var(--accent-color);
}

.tournament-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.tournament-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.tournament-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.tournament-date {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.tournament-location {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-style: italic;
}

.tournament-details {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
    font-size: 0.9rem;
    color: var(--text-light);
}


.results-list {
    display: grid;
    gap: 2rem;
}

.result-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    animation: fadeInUp 0.6s ease-out both;
}

.result-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.result-date {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.result-winners {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.winner-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-color);
    border-radius: 5px;
}

.winner-rank {
    font-weight: 700;
    color: var(--accent-color);
    font-size: 1.2rem;
    min-width: 30px;
}

.winner-name {
    font-weight: 600;
    flex: 1;
}

.winner-fish {
    color: var(--text-light);
}


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

.article-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-bottom: 3rem;
    animation: fadeInUp 0.6s ease-out both;
}

.article-header {
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.article-header h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

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

.article-content h3 {
    color: var(--primary-color);
    margin: 2rem 0 1rem;
    font-size: 1.5rem;
}

.article-content p {
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.article-content ul,
.article-content ol {
    color: var(--text-color);
    margin-bottom: 1rem;
    padding-left: 2rem;
    line-height: 1.8;
}

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

.article-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: var(--white);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
    border-radius: 5px;
    overflow: hidden;
}

.article-content table th {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.75rem;
    text-align: left;
    font-weight: 600;
}

.article-content table td {
    padding: 0.75rem;
    border-top: 1px solid var(--border-color);
}

.article-content table tr:nth-child(even) {
    background-color: var(--bg-color);
}

.article-content table tr:hover {
    background-color: rgba(0, 0, 0, 0.02);
}

.article-content a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.article-content a:hover {
    color: var(--secondary-color);
}


.contact-section {
    padding: 3rem 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-info p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.info-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}

.info-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.info-item p {
    color: var(--text-color);
    margin: 0;
    line-height: 1.6;
}

.info-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}


.contact-map-section {
    padding: 3rem 0;
}

.contact-map {
    margin-top: 2rem;
}

.contact-map h2 {
    color: var(--primary-color);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    animation: fadeInUp 0.6s ease-out both;
}

.map-container iframe {
    display: block;
    width: 100%;
    border: none;
}


.footer {
    background-color: #2F3E1F;
    color: var(--white);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

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

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--accent-color);
    font-size: 1.1rem;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

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

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

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

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

.footer-contact-info {
    margin-top: 1rem;
}

.footer-contact-info p {
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    color: #aaa;
}

.footer-contact-info strong {
    color: #ccc;
    font-weight: 600;
}

.footer-contact-info a {
    color: var(--accent-color);
    text-decoration: underline;
}

.footer-contact-info a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #3D4A1F;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
    color: #999;
    font-size: 0.9rem;
}

.fs-note {
    font-size: 0.85rem;
    color: #777;
    margin-top: 1rem;
    font-style: italic;
}


.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    z-index: 10000;
    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;
    gap: 2rem;
}

.cookie-content p {
    flex: 1;
    color: var(--text-color);
}

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

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


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

.thank-you-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    animation: fadeInUp 0.6s ease-out;
}

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

.thank-you-content p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.thank-you-content .btn {
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .thank-you-content {
        padding: 2rem;
    }

    .thank-you-content h1 {
        font-size: 2rem;
    }
}


@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        padding: 4rem 0 2rem;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav-menu li:first-child {
        border-top: 1px solid var(--border-color);
    }

    .nav-menu a {
        display: block;
        padding: 1.2rem 2rem;
        color: var(--text-color);
        font-size: 1.1rem;
        font-weight: 500;
        transition: all 0.3s ease;
        position: relative;
    }
    
    .nav-menu a:hover,
    .nav-menu a.active {
        color: var(--primary-color);
        background-color: rgba(85, 107, 47, 0.05);
        padding-left: 2.5rem;
    }
    
    .nav-menu a.active {
        border-left: 4px solid var(--primary-color);
        font-weight: 600;
    }

    .nav-menu a.active::after {
        display: none;
    }
    
    .mobile-menu-toggle {
        z-index: 1002;
    }
    
    .mobile-menu-toggle span {
        background-color: var(--primary-color);
    }
    
    .mobile-menu-toggle.active span {
        background-color: var(--primary-color);
    }

    .hero-content h2 {
        font-size: 1.8rem;
        padding: 0 1rem;
        word-wrap: break-word;
        line-height: 1.2;
    }
    
    .hero-content p {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .page-title {
        font-size: 2rem;
        padding: 0 1rem;
        word-wrap: break-word;
        line-height: 1.2;
    }
    
    .page-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
        word-wrap: break-word;
    }

    .section-title {
        font-size: 1.5rem;
        padding: 0 1rem;
        word-wrap: break-word;
        line-height: 1.3;
        margin-bottom: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 2rem -15px;
        padding: 0 15px;
    }
    
    .info-table,
    .article-content table {
        font-size: 0.85rem;
        min-width: 600px;
        width: 100%;
    }
    
    .info-table th,
    .info-table td,
    .article-content table th,
    .article-content table td {
        padding: 0.6rem 0.5rem;
        font-size: 0.8rem;
        white-space: normal;
        word-wrap: break-word;
    }

    .features-grid,
    .tournaments-grid,
    .tournaments-list {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

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

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

    .cookie-buttons .btn {
        flex: 1;
    }

    .article-card {
        padding: 1.5rem;
    }

    .tournament-details {
        flex-direction: column;
        gap: 0.5rem;
    }

    .contact-map h2 {
        font-size: 1.5rem;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-section h3 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .footer-contact-info p {
        font-size: 0.8rem;
    }
}


.accordion {
    margin: 2rem 0;
}

.accordion-item {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}

.accordion-header {
    padding: 1.5rem;
    background: var(--bg-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
    border: none;
    width: 100%;
    text-align: left;
}

.accordion-header:hover {
    background: rgba(0, 0, 0, 0.03);
}

.accordion-header h3 {
    margin: 0;
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
}

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

.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-color);
    line-height: 1.8;
}

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

.accordion-content li {
    margin-bottom: 0.5rem;
    color: var(--text-color);
}


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

.table-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 2rem 0;
}

.table-wrapper table {
    min-width: 600px;
    width: 100%;
}

.info-table th {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
}

.info-table td {
    padding: 1rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-color);
}

.info-table tr:nth-child(even) {
    background-color: var(--bg-color);
}

.info-table tr:hover {
    background-color: rgba(0, 0, 0, 0.02);
}


.stats-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 4rem 0;
    margin: 4rem 0;
}

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

.stat-item {
    padding: 1.5rem;
}

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

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}


.faq-section {
    padding: 4rem 0;
    background: var(--bg-color);
}


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

.info-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 0.6s ease-out both;
}

.info-card:nth-child(1) {
    animation-delay: 0.1s;
}

.info-card:nth-child(2) {
    animation-delay: 0.2s;
}

.info-card:nth-child(3) {
    animation-delay: 0.3s;
}

.info-card:nth-child(4) {
    animation-delay: 0.4s;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.info-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.info-card p {
    color: var(--text-light);
    line-height: 1.8;
}

.info-card a {
    color: var(--primary-color);
    text-decoration: underline;
}

.info-card a:hover {
    color: var(--secondary-color);
}


.info-section,
.tournament-rules-section,
.tournament-schedule-section,
.fishing-tips-section,
.fishing-equipment-section,
.game-info-section,
.game-tips-section {
    padding: 4rem 0;
}

.tournament-rules-section,
.fishing-tips-section,
.game-tips-section {
    background: var(--bg-color);
}


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

.hero-image,
.page-header-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
}

.feature-card img,
.tournament-card img,
.info-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.article-card img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.contact-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
}

@media (max-width: 768px) {
    .hero-image,
    .page-header-image {
        height: 250px;
    }
    
    .feature-card img,
    .tournament-card img,
    .info-card img {
        height: 150px;
    }
    
    .contact-image {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.2rem;
    }
    
    .nav-menu {
        width: 90%;
        max-width: 300px;
        padding: 3.5rem 0 2rem;
    }
    
    .nav-menu a {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .nav-menu a:hover,
    .nav-menu a.active {
        padding-left: 2rem;
    }

    .hero {
        padding: 2rem 0;
        min-height: 300px;
    }
    
    .page-header {
        min-height: 250px;
        padding: 2rem 0;
    }
    
    .page-title {
        font-size: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .page-subtitle {
        font-size: 0.9rem;
        padding: 0 0.5rem;
    }
    
    .section-title {
        font-size: 1.3rem;
        padding: 0 0.5rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .hero-content p {
        font-size: 0.9rem;
        padding: 0 0.5rem;
    }

    section {
        padding: 2rem 0;
    }
    
    .container {
        padding: 0 10px;
    }

    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

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

    .info-cards {
        grid-template-columns: 1fr;
    }

    .accordion-header {
        padding: 1rem;
    }

    .accordion-header h3 {
        font-size: 0.95rem;
        line-height: 1.3;
        word-wrap: break-word;
    }
    
    .info-table th,
    .info-table td,
    .article-content table th,
    .article-content table td {
        padding: 0.5rem 0.4rem;
        font-size: 0.75rem;
    }
    
    .info-table,
    .article-content table {
        font-size: 0.75rem;
    }
    
    .article-card h2,
    .article-header h2 {
        font-size: 1.5rem;
        word-wrap: break-word;
        line-height: 1.3;
    }
    
    .article-content h3 {
        font-size: 1.2rem;
        word-wrap: break-word;
        line-height: 1.3;
    }
    
    .tournament-card h3,
    .feature-card h3,
    .info-card h4 {
        font-size: 1.2rem;
        word-wrap: break-word;
        line-height: 1.3;
    }
}

