
:root {
    
    --color-ocean-deep: #1a4d7a;
    --color-aqua-teal: #2dd4bf;
    --color-mint-fresh: #a7f3d0;
    
    
    --color-sunset-orange: #f97316;
    --color-golden-yellow: #fbbf24;
    --color-coral-pink: #fb7185;
    
    
    --color-charcoal: #1f2937;
    --color-slate: #64748b;
    --color-sand: #fef3c7;
    --color-white: #ffffff;
    --color-light-gray: #f8fafc;
    
    
    --gradient-water: linear-gradient(135deg, #1a4d7a 0%, #2dd4bf 50%, #a7f3d0 100%);
    --gradient-sunset: linear-gradient(135deg, #f97316 0%, #fbbf24 50%, #fb7185 100%);
    --gradient-ocean: linear-gradient(180deg, #1a4d7a 0%, #2dd4bf 100%);
    --gradient-gold: linear-gradient(135deg, #fbbf24 0%, #f97316 100%);
    
    
    --shadow-water: 0 4px 15px rgba(0, 0, 0, 0.1);
    --shadow-gold: 0 4px 15px rgba(0, 0, 0, 0.1);
    --shadow-card: 0 4px 15px rgba(0, 0, 0, 0.1);
    
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --font-creative: 'Pacifico', cursive;
}


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

body {
    font-family: var(--font-body);
    color: var(--color-charcoal);
    background-color: var(--color-light-gray);
    line-height: 1.6;
    overflow-x: hidden;
}

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


.header {
    background: var(--gradient-ocean);
    padding: 1rem 0;
    box-shadow: var(--shadow-water);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
}


.logo-text {
    font-family: var(--font-heading);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 35px;
    height: 35px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
    position: relative;
    transition: transform 0.3s ease;
}

.mobile-menu-toggle:hover {
    transform: scale(1.1);
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: var(--color-white);
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-origin: center;
    display: block;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(9px, 9px);
    background: var(--color-golden-yellow);
}

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

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
    background: var(--color-golden-yellow);
}

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

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

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-golden-yellow);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--color-golden-yellow);
}


.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-water);
    background-image: url('image/River_fishing_202512080807 (1).jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    padding: 4rem 2rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 77, 122, 0.7) 0%, rgba(45, 212, 191, 0.6) 50%, rgba(167, 243, 208, 0.5) 100%);
    z-index: 1;
}

.hero-content {
    text-align: center;
    color: var(--color-white);
    z-index: 2;
    position: relative;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-registration {
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.3s backwards;
}

.hero-bonus-text {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--color-white);
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
    opacity: 0.95;
}

.hero-bonus-text strong {
    color: var(--color-golden-yellow);
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s backwards;
}

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

.wave-animation {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='0.1' d='M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") no-repeat bottom;
    background-size: cover;
    animation: wave 20s linear infinite;
}

@keyframes wave {
    0% { background-position-x: 0; }
    100% { background-position-x: 1440px; }
}


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

.btn-primary {
    background: var(--color-sunset-orange);
    color: var(--color-white);
    box-shadow: var(--shadow-card);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

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

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

.btn-gold {
    background: var(--gradient-gold);
    color: var(--color-white);
    box-shadow: var(--shadow-card);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}


.features {
    padding: 5rem 0;
    background: var(--color-white);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--color-ocean-deep);
}

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

.feature-card {
    background: var(--color-white);
    padding: 0;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-water);
    border-color: var(--color-aqua-teal);
}

.feature-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

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

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

.feature-card h3 {
    padding: 0 2rem;
    margin-bottom: 1rem;
}

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


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

.feature-card p {
    color: var(--color-slate);
    line-height: 1.8;
}


.cta-section {
    padding: 5rem 0;
    background: var(--gradient-sunset);
    color: var(--color-white);
}

.cta-content {
    text-align: center;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}


.footer {
    background: var(--color-charcoal);
    color: var(--color-white);
    padding: 4rem 0 1rem;
}

.footer-main {
    margin-bottom: 2rem;
}

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

.footer-section h4 {
    font-family: var(--font-heading);
    margin-bottom: 1rem;
    color: var(--color-aqua-teal);
    font-size: 1.2rem;
}

.footer-section p {
    color: var(--color-slate);
    line-height: 1.7;
    margin-bottom: 1rem;
}

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

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

.footer-section a {
    color: var(--color-white);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-section a:hover {
    color: var(--color-aqua-teal);
    transform: translateX(5px);
}



.contact-list {
    list-style: none;
    padding: 0;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--color-white);
}

.contact-label {
    font-weight: 600;
    flex-shrink: 0;
    margin-right: 0.5rem;
    color: var(--color-aqua-teal);
    min-width: 80px;
}

.contact-list a {
    color: var(--color-white);
    word-break: break-word;
}

.contact-list a:hover {
    color: var(--color-aqua-teal);
}

.contact-list span {
    color: var(--color-white);
    line-height: 1.6;
}


.footer-info {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-info p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--color-slate);
}


.footer-fs-info {
    background: rgba(251, 191, 36, 0.05);
    border-radius: 15px;
    padding: 2rem;
    margin-top: 2rem;
    border: 1px solid rgba(251, 191, 36, 0.2);
}

.footer-fs-info h4 {
    font-family: var(--font-heading);
    color: var(--color-golden-yellow);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.fs-note {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-sand);
    margin: 0;
}

.fs-note strong {
    color: var(--color-golden-yellow);
}


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

.footer-bottom-content {
    text-align: center;
    color: var(--color-slate);
}


.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    padding: 3rem 0;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    aspect-ratio: 4/3;
    background: var(--color-light-gray);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 1;
    opacity: 1 !important;
    visibility: visible !important;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.4), transparent);
    padding: 1.5rem;
    color: var(--color-white);
    opacity: 1;
    z-index: 2;
    pointer-events: none;
}

.gallery-overlay h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.gallery-overlay p {
    font-size: 1rem;
    color: var(--color-white);
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    line-height: 1.5;
    margin: 0;
}


.articles-container {
    padding: 3rem 0;
}

.article-card {
    background: var(--color-white);
    border-radius: 20px;
    padding: 0;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
    overflow: hidden;
}

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

.article-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

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

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

.article-card h2,
.article-card .article-meta,
.article-card .article-content {
    padding: 0 2.5rem;
}

.article-card h2 {
    padding-top: 2.5rem;
    margin-bottom: 1rem;
}

.article-card .article-meta {
    margin-bottom: 1.5rem;
}

.article-card .article-content {
    padding-bottom: 2.5rem;
}

.article-card h2 {
    font-family: var(--font-heading);
    color: var(--color-ocean-deep);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.article-meta {
    color: var(--color-slate);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: center;
}

.article-content {
    color: var(--color-charcoal);
    line-height: 1.8;
}

.article-content p {
    margin-bottom: 1rem;
}

.article-content h3 {
    font-family: var(--font-heading);
    color: var(--color-ocean-deep);
    margin: 1.5rem 0 1rem;
}


.game-container {
    padding: 3rem 0;
    min-height: 80vh;
}

.game-header {
    text-align: center;
    margin-bottom: 3rem;
}

.game-header h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--color-ocean-deep);
    margin-bottom: 1rem;
}

.game-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.stat-box {
    background: var(--gradient-gold);
    color: var(--color-white);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-card);
    min-width: 150px;
}

.stat-box h3 {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.stat-box .stat-value {
    font-size: 2rem;
    font-weight: 700;
}

.game-area {
    max-width: 800px;
    margin: 0 auto;
    background: var(--gradient-ocean);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-water);
    position: relative;
    min-height: 500px;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.game-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='wave' x='0' y='0' width='100' height='100' patternUnits='userSpaceOnUse'%3E%3Cpath d='M0,50 Q25,30 50,50 T100,50' stroke='rgba(255,255,255,0.1)' fill='none'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100' height='100' fill='url(%23wave)'/%3E%3C/svg%3E") repeat;
    opacity: 0.3;
    pointer-events: none;
}

.fish {
    position: absolute;
    font-size: 3rem;
    cursor: pointer;
    transition: transform 0.1s ease;
    user-select: none;
    animation: swim 3s ease-in-out infinite;
}

.fish:hover {
    transform: scale(1.3) rotate(5deg);
}

.fish:active {
    transform: scale(1.5) rotate(-5deg);
}

@keyframes swim {
    0%, 100% { transform: translateX(0) translateY(0) rotate(0deg); }
    25% { transform: translateX(20px) translateY(-10px) rotate(5deg); }
    50% { transform: translateX(0) translateY(-20px) rotate(0deg); }
    75% { transform: translateX(-20px) translateY(-10px) rotate(-5deg); }
}

.game-controls {
    text-align: center;
    margin-top: 2rem;
}


.about-container {
    padding: 3rem 0;
}

.about-section {
    background: var(--color-white);
    border-radius: 20px;
    padding: 0;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-card);
    overflow: hidden;
}

.about-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-section h2,
.about-section p {
    padding: 0 3rem;
}

.about-section h2 {
    padding-top: 3rem;
    margin-bottom: 1.5rem;
}

.about-section p {
    padding-bottom: 3rem;
}

.about-section h2 {
    font-family: var(--font-heading);
    color: var(--color-ocean-deep);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.offer-item {
    background: var(--color-light-gray);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
}

.offer-item h3 {
    font-family: var(--font-heading);
    color: var(--color-ocean-deep);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

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


.contact-info-section {
    margin-bottom: 3rem;
}

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

.contact-info-card {
    background: var(--color-white);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow-card);
    border: 2px solid transparent;
}

.contact-info-card h3 {
    font-family: var(--font-heading);
    color: var(--color-ocean-deep);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.contact-info-card p {
    color: var(--color-slate);
    line-height: 1.8;
    margin: 0;
}

.contact-info-card a {
    color: var(--color-ocean-deep);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.contact-info-card a:hover {
    color: var(--color-aqua-teal);
}


.map-section {
    margin-bottom: 3rem;
}

.map-container {
    background: var(--color-white);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: var(--shadow-card);
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-form {
    background: var(--color-white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow-card);
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--color-mint-fresh);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}


.legal-document {
    background: var(--color-white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow-card);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.legal-document h2 {
    font-family: var(--font-heading);
    color: var(--color-ocean-deep);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.8rem;
    border-bottom: 2px solid var(--color-mint-fresh);
    padding-bottom: 0.5rem;
}

.legal-document h3 {
    font-family: var(--font-heading);
    color: var(--color-ocean-deep);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
}

.legal-document h4 {
    font-family: var(--font-heading);
    color: var(--color-ocean-deep);
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.legal-document p {
    margin-bottom: 1rem;
    color: var(--color-charcoal);
}

.legal-document ul {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.legal-document li {
    margin-bottom: 0.5rem;
    color: var(--color-charcoal);
}

.legal-document a {
    color: var(--color-aqua-teal);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-document a:hover {
    color: var(--color-ocean-deep);
    text-decoration: underline;
}

.last-updated {
    font-style: italic;
    color: var(--color-slate);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-mint-fresh);
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: var(--color-light-gray);
    border-radius: 10px;
    overflow: hidden;
}

.cookie-table thead {
    background: var(--gradient-ocean);
    color: var(--color-white);
}

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

.cookie-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--color-mint-fresh);
}

.cookie-table tbody tr:hover {
    background: var(--color-mint-fresh);
}

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


.info-section {
    padding: 5rem 0;
    background: var(--color-white);
}

.table-container {
    overflow-x: auto;
    border-radius: 15px;
    box-shadow: var(--shadow-card);
    margin-top: 2rem;
    -webkit-overflow-scrolling: touch;
    width: 100%;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--color-white);
    min-width: 100%;
}

.info-table thead {
    background: var(--gradient-ocean);
    color: var(--color-white);
}

.info-table th {
    padding: 1.25rem;
    text-align: left;
    font-weight: 600;
    font-family: var(--font-heading);
}

.info-table td {
    padding: 1.25rem;
    border-bottom: 1px solid var(--color-mint-fresh);
    color: var(--color-charcoal);
}

.info-table tbody tr {
    transition: all 0.3s ease;
}

.info-table tbody tr:hover {
    background: var(--color-mint-fresh);
    transform: scale(1.01);
}

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


.accordion-container {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    background: var(--color-white);
    border-radius: 15px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-card);
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    box-shadow: var(--shadow-water);
}

.accordion-header {
    width: 100%;
    padding: 1.5rem;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-ocean-deep);
    font-family: var(--font-heading);
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background: var(--color-mint-fresh);
}

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

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

.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: 500px;
    padding: 0 1.5rem 1.5rem;
}

.accordion-content p {
    color: var(--color-slate);
    line-height: 1.8;
    margin: 0;
}


.stats-section {
    padding: 5rem 0;
    background: var(--gradient-water);
    color: var(--color-white);
}

.stats-section .section-title {
    color: var(--color-white);
}

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

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--color-golden-yellow);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--color-golden-yellow);
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.95;
    font-weight: 500;
}


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

.category-card {
    background: var(--color-white);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow-card);
    border: 2px solid transparent;
}


.category-card h3 {
    font-family: var(--font-heading);
    color: var(--color-ocean-deep);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.category-card p {
    color: var(--color-slate);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.category-count {
    display: inline-block;
    background: var(--gradient-gold);
    color: var(--color-white);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
}

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

.info-card {
    background: var(--color-white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow-card);
}

.info-card h3 {
    font-family: var(--font-heading);
    color: var(--color-ocean-deep);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.info-list {
    list-style: none;
    padding: 0;
}

.info-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--color-mint-fresh);
    color: var(--color-charcoal);
}

.info-list li:last-child {
    border-bottom: none;
}

.info-list strong {
    color: var(--color-aqua-teal);
}

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

.topic-card {
    background: var(--color-white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
    border-left: 4px solid var(--color-aqua-teal);
}

.topic-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-water);
    border-left-color: var(--color-golden-yellow);
}

.topic-card h3 {
    font-family: var(--font-heading);
    color: var(--color-ocean-deep);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.topic-card p {
    color: var(--color-slate);
    line-height: 1.7;
    margin: 0;
}

.topics-table-container {
    margin-top: 2rem;
}


.registration-section {
    padding: 5rem 0;
    background: var(--gradient-water);
    color: var(--color-white);
}

.registration-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.registration-content {
    padding: 2rem 0;
}

.registration-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-white);
}

.registration-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    opacity: 0.95;
}

.registration-subtitle strong {
    color: var(--color-golden-yellow);
    font-weight: 700;
    font-size: 1.3rem;
}

.registration-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.05rem;
    padding: 0.75rem 0;
}

.benefit-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--color-golden-yellow);
    color: var(--color-charcoal);
    border-radius: 50%;
    font-weight: 700;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.registration-form-container {
    background: var(--color-white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.registration-form h3 {
    font-family: var(--font-heading);
    color: var(--color-ocean-deep);
    margin-bottom: 2rem;
    font-size: 1.8rem;
    text-align: center;
}

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

.registration-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--color-ocean-deep);
    font-weight: 600;
    font-size: 0.95rem;
}

.registration-form input[type="text"],
.registration-form input[type="email"],
.registration-form input[type="password"] {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--color-mint-fresh);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--color-white);
}

.registration-form input[type="text"]:focus,
.registration-form input[type="email"]:focus,
.registration-form input[type="password"]:focus {
    outline: none;
    border-color: var(--color-aqua-teal);
    box-shadow: 0 0 0 3px rgba(45, 212, 191, 0.1);
}

.registration-form input::placeholder {
    color: var(--color-slate);
    opacity: 0.6;
}

.checkbox-group {
    margin-bottom: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: 400;
    color: var(--color-charcoal);
    line-height: 1.6;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--color-aqua-teal);
    flex-shrink: 0;
}

.checkbox-label a {
    color: var(--color-aqua-teal);
    text-decoration: none;
    font-weight: 600;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.btn-register {
    width: 100%;
    padding: 14px;
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.form-footer {
    text-align: center;
    color: var(--color-slate);
    font-size: 0.9rem;
    margin-top: 1.5rem;
}

.form-footer .login-link {
    color: var(--color-aqua-teal);
    text-decoration: none;
    font-weight: 600;
}

.form-footer .login-link:hover {
    text-decoration: underline;
}


.thank-you-section {
    padding: 5rem 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: var(--gradient-water);
}

.thank-you-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: var(--color-white);
    border-radius: 20px;
    padding: 4rem 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.success-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    animation: scaleIn 0.5s ease;
}

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

.thank-you-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-ocean-deep);
    margin-bottom: 1rem;
}

.thank-you-message {
    font-size: 1.2rem;
    color: var(--color-slate);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.fs-bonus-box {
    background: var(--gradient-gold);
    border-radius: 15px;
    padding: 2.5rem;
    margin: 2.5rem 0;
    color: var(--color-white);
    box-shadow: var(--shadow-card);
}

.fs-bonus-box h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-white);
}

.fs-amount {
    font-size: 4rem;
    font-weight: 700;
    font-family: var(--font-heading);
    margin: 1rem 0;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

.fs-bonus-box p {
    margin: 0.5rem 0;
    opacity: 0.95;
}

.bonus-note {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
}

.thank-you-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2.5rem 0;
    flex-wrap: wrap;
}

.next-steps {
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 2px solid var(--color-mint-fresh);
    text-align: left;
}

.next-steps h3 {
    font-family: var(--font-heading);
    color: var(--color-ocean-deep);
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.5rem;
}

.next-steps ul {
    list-style: none;
    padding: 0;
}

.next-steps li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--color-charcoal);
    line-height: 1.8;
}

.next-steps li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--color-aqua-teal);
    font-weight: bold;
    font-size: 1.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: linear-gradient(180deg, var(--color-ocean-deep) 0%, var(--color-charcoal) 100%);
        flex-direction: column;
        gap: 0;
        padding: 6rem 0 2rem;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
        transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        z-index: 1000;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }
    
    body.menu-open::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
        z-index: 999;
        animation: fadeIn 0.3s ease;
        backdrop-filter: blur(2px);
    }
    
    @keyframes fadeIn {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        opacity: 0;
        transform: translateX(20px);
        animation: slideInRight 0.4s ease forwards;
    }
    
    .nav-menu.active li:nth-child(1) { animation-delay: 0.1s; }
    .nav-menu.active li:nth-child(2) { animation-delay: 0.15s; }
    .nav-menu.active li:nth-child(3) { animation-delay: 0.2s; }
    .nav-menu.active li:nth-child(4) { animation-delay: 0.25s; }
    .nav-menu.active li:nth-child(5) { animation-delay: 0.3s; }
    .nav-menu.active li:nth-child(6) { animation-delay: 0.35s; }
    
    @keyframes slideInRight {
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    .nav-menu a {
        display: block;
        padding: 1.25rem 2rem;
        width: 100%;
        font-size: 1.1rem;
        transition: all 0.3s ease;
        position: relative;
    }
    
    .nav-menu a::after {
        display: none;
    }
    
    .nav-menu a::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 4px;
        background: var(--color-golden-yellow);
        transform: scaleY(0);
        transition: transform 0.3s ease;
    }
    
    .nav-menu a:hover,
    .nav-menu a.active {
        color: var(--color-golden-yellow);
        background: rgba(255, 255, 255, 0.08);
        padding-left: 2.5rem;
    }
    
    .nav-menu a:hover::before,
    .nav-menu a.active::before {
        transform: scaleY(1);
    }
    
    .nav-menu a.active {
        font-weight: 600;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        padding: 0 1rem;
        word-wrap: break-word;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
        line-height: 1.4;
    }
    
    .hero-bonus-text {
        font-size: 0.95rem;
        padding: 0 1rem;
        line-height: 1.5;
    }
    
    .hero-registration {
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }
    
    .hero-buttons {
        padding: 0 1rem;
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }
    
    .section-title {
        font-size: 1.75rem;
        padding: 0 1rem;
        line-height: 1.3;
        word-wrap: break-word;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .game-header h1 {
        font-size: 2rem;
    }
    
    .game-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .legal-document {
        padding: 1.5rem;
    }
    
    .legal-document h1 {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .legal-document h2 {
        font-size: 1.4rem;
        line-height: 1.3;
    }
    
    .legal-document h3 {
        font-size: 1.2rem;
        line-height: 1.3;
    }
    
    .cookie-table {
        font-size: 0.85rem;
        min-width: 100%;
    }
    
    .cookie-table th,
    .cookie-table td {
        padding: 0.6rem 0.4rem;
        word-wrap: break-word;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .table-container,
    .topics-table-container {
        margin-left: -15px;
        margin-right: -15px;
        border-radius: 0;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        width: calc(100% + 30px);
    }
    
    .info-table {
        font-size: 0.85rem;
        min-width: 100%;
        width: 100%;
    }
    
    .info-table th,
    .info-table td {
        padding: 0.6rem 0.4rem;
        word-wrap: break-word;
        font-size: 0.85rem;
    }
    
    .info-table th {
        font-size: 0.9rem;
        white-space: nowrap;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .categories-grid,
    .topics-grid,
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .accordion-header {
        font-size: 1rem;
        padding: 1.25rem;
    }
    
    .registration-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .registration-title {
        font-size: 2rem;
    }
    
    .registration-form-container {
        padding: 2rem 1.5rem;
    }
    
    .thank-you-content {
        padding: 3rem 2rem;
    }
    
    .thank-you-title {
        font-size: 2rem;
    }
    
    .fs-amount {
        font-size: 3rem;
    }
    
    .thank-you-actions {
        flex-direction: column;
    }
    
    .thank-you-actions .btn {
        width: 100%;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gallery-overlay h3 {
        font-size: 1.2rem;
    }
    
    .gallery-overlay p {
        font-size: 0.9rem;
    }
    
    .about-section h2 {
        font-size: 1.5rem;
        line-height: 1.3;
        padding: 0 1.5rem;
    }
    
    .about-section p {
        padding: 0 1.5rem;
        line-height: 1.6;
    }
    
    .article-card h2 {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
        padding: 0 0.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        padding: 0 0.5rem;
    }
    
    .section-title {
        font-size: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .info-table {
        font-size: 0.75rem;
    }
    
    .info-table th,
    .info-table td {
        padding: 0.5rem 0.3rem;
        font-size: 0.75rem;
    }
    
    .cookie-table {
        font-size: 0.75rem;
    }
    
    .cookie-table th,
    .cookie-table td {
        padding: 0.5rem 0.3rem;
    }
    
    .legal-document h1 {
        font-size: 1.5rem;
    }
    
    .legal-document h2 {
        font-size: 1.25rem;
    }
    
    .legal-document h3 {
        font-size: 1.1rem;
    }
    
    .game-header h1 {
        font-size: 1.5rem;
    }
    
    .registration-title {
        font-size: 1.5rem;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .table-container,
    .topics-table-container {
        margin-left: -10px;
        margin-right: -10px;
        width: calc(100% + 20px);
    }
}

