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

:root {
    
    --deep-ocean: #1E3A5F;
    --ocean-teal: #2D6A8F;
    --fresh-water: #4A90A4;
    --light-aqua: #7FDBCA;
    
    
    --fisherman-orange: #FF6B35;
    --golden-catch: #FFB84D;
    --sunset-coral: #FF8C69;
    
    
    --sand-beige: #F5E6D3;
    --wave-white: #F8FAFB;
    --pearl-gray: #E8EDF0;
    --deep-charcoal: #2C3E50;
    --stone-gray: #5A6C7D;
    
    
    --success-green: #27AE60;
    --warning-amber: #F39C12;
    --info-blue: #3498DB;
    
    
    --gradient-ocean: linear-gradient(135deg, var(--deep-ocean) 0%, var(--ocean-teal) 50%, var(--fresh-water) 100%);
    --gradient-sunset: linear-gradient(135deg, var(--fisherman-orange) 0%, var(--golden-catch) 100%);
    --gradient-water: linear-gradient(to bottom, #E0F7FA 0%, var(--light-aqua) 50%, var(--fresh-water) 100%);
    
    
    --shadow-light: 0 2px 8px rgba(30, 58, 95, 0.1);
    --shadow-medium: 0 4px 16px rgba(30, 58, 95, 0.15);
    --shadow-heavy: 0 8px 24px rgba(30, 58, 95, 0.2);
    
    
    --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-heading: 'Arial', sans-serif;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--deep-charcoal);
    background: var(--wave-white);
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(127, 219, 202, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(74, 144, 164, 0.1) 0%, transparent 50%);
}

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


header {
    background: var(--gradient-ocean);
    color: white;
    padding: 1.2rem 0;
    box-shadow: var(--shadow-medium);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    background: transparent;
    border: none;
    gap: 5px;
}

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

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

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

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

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

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    position: relative;
}

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

.nav-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.nav-menu a:hover::after {
    width: 80%;
}


.hero {
    background: var(--gradient-water);
    color: var(--deep-ocean);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-image {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    border-radius: 12px;
    box-shadow: var(--shadow-medium);
    margin-bottom: 2rem;
    object-fit: cover;
    width: 100%;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: wave 20s linear infinite;
}

@keyframes wave {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(-50px, -50px) rotate(360deg); }
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--deep-ocean);
    font-weight: 700;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--stone-gray);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.fs-bonus {
    background: var(--gradient-sunset);
    padding: 1.5rem 2.5rem;
    border-radius: 12px;
    display: inline-block;
    margin-top: 1.5rem;
    box-shadow: var(--shadow-medium);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.fs-bonus p {
    color: white;
    font-size: 1.1rem;
    margin: 0;
}

.fs-bonus strong {
    font-size: 1.5rem;
    font-weight: 700;
}


.news-section, .gear-section {
    padding: 4rem 0;
    background: var(--wave-white);
}

.news-section h2, .gear-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--deep-ocean);
    font-weight: 700;
    position: relative;
    display: inline-block;
    width: 100%;
}

.news-section h2::after, .gear-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-sunset);
    border-radius: 2px;
}

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

.news-card, .gear-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border-top: 4px solid var(--fresh-water);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 280px;
}

.news-card::before, .gear-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-ocean);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.news-card:hover, .gear-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
}

.news-card:hover::before, .gear-card:hover::before {
    transform: scaleX(1);
}

.news-image, .gear-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-light);
    transition: transform 0.3s ease;
}

.news-card:hover .news-image,
.gear-card:hover .gear-image {
    transform: scale(1.05);
}

.news-card h3, .gear-card h3 {
    color: var(--deep-ocean);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.news-card p, .gear-card p {
    color: var(--stone-gray);
    line-height: 1.7;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.read-more {
    color: var(--ocean-teal);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
    padding-top: 1rem;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.read-more:hover {
    color: var(--fisherman-orange);
    gap: 1rem;
}

.read-more::after {
    content: '→';
    transition: transform 0.3s ease;
}

.read-more:hover::after {
    transform: translateX(5px);
}


.news-expandable {
    margin-top: auto;
    padding-top: 1rem;
}

.read-more-btn {
    background: transparent;
    border: none;
    color: var(--ocean-teal);
    padding: 0;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-family: var(--font-primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
    padding-top: 1rem;
    align-self: flex-start;
}

.read-more-btn:hover {
    color: var(--fisherman-orange);
    gap: 1rem;
}

.read-more-btn::after {
    content: '→';
    transition: transform 0.3s ease;
}

.read-more-btn:hover::after {
    transform: translateX(5px);
}

.news-full-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0;
}

.news-full-content.expanded {
    max-height: 2000px;
    padding: 1.5rem 0 0 0;
}

.news-full-content p {
    margin-bottom: 1rem;
    color: var(--stone-gray);
    line-height: 1.7;
}

.news-full-content strong {
    color: var(--deep-ocean);
    font-weight: 600;
}


.game-preview {
    background: var(--gradient-ocean);
    color: white;
    padding: 4rem 0;
    text-align: center;
    position: relative;
}

.game-preview::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, transparent, var(--wave-white));
}

.game-preview .container {
    position: relative;
    z-index: 2;
}

.game-preview h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.game-preview p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.play-button {
    display: inline-block;
    background: var(--gradient-sunset);
    color: white;
    padding: 1.2rem 3rem;
    text-decoration: none;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-medium);
    border: none;
    cursor: pointer;
}

.play-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-heavy);
}


.cta-registration {
    background: linear-gradient(135deg, var(--deep-ocean) 0%, var(--ocean-teal) 50%, var(--fresh-water) 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
    position: relative;
    margin: 3rem 0;
    overflow: hidden;
}

.cta-registration::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: wave 20s linear infinite;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-registration h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: white;
}

.cta-registration > .container > .cta-content > p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.6;
}

.cta-registration p strong {
    color: var(--golden-catch);
    font-size: 1.4rem;
    font-weight: 700;
}

.cta-benefits {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
    text-align: left;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-benefits li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
}

.cta-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0.8rem;
    color: var(--golden-catch);
    font-weight: 700;
    font-size: 1.3rem;
}

.cta-button {
    display: inline-block;
    background: var(--gradient-sunset);
    color: white;
    padding: 1.3rem 3.5rem;
    text-decoration: none;
    border-radius: 12px;
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-heavy);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.4);
    background: linear-gradient(135deg, var(--fisherman-orange) 0%, var(--golden-catch) 100%);
}

.cta-note {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    opacity: 0.85;
    font-style: italic;
}


footer {
    background: var(--deep-charcoal);
    color: white;
    padding: 4rem 0 1rem;
    margin-top: 0;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-ocean);
}

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

.footer-section {
    min-width: 200px;
}

.footer-section h4 {
    margin-bottom: 1.2rem;
    color: var(--golden-catch);
    font-size: 1.2rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--fresh-water);
}

.footer-section p {
    color: #ECF0F1;
    line-height: 1.7;
    font-size: 0.95rem;
}

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

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

.footer-section a {
    color: #BDC3C7;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 0.95rem;
}

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

.footer-contact-item {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.footer-contact-item strong {
    color: var(--golden-catch);
    min-width: 80px;
    font-size: 0.9rem;
}

.footer-contact-item span,
.footer-contact-item a {
    color: #BDC3C7;
    font-size: 0.95rem;
}

.fs-explanation {
    font-size: 0.9rem;
    line-height: 1.6;
    background: rgba(127, 219, 202, 0.15);
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid var(--light-aqua);
    color: #ECF0F1;
}

.fs-explanation strong {
    color: var(--golden-catch);
    font-weight: 600;
}

.footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-legal-links a {
    font-size: 0.85rem;
    padding: 0.3rem 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-legal-links a:hover {
    background: rgba(127, 219, 202, 0.2);
    border-color: var(--light-aqua);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #95A5A6;
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-bottom p {
    margin: 0;
}

.footer-copyright {
    font-size: 0.85rem;
    color: #7F8C8D;
}


.accordion {
    background: white;
    border-radius: 8px;
    box-shadow: var(--shadow-light);
    margin: 1.5rem 0;
    overflow: hidden;
}

.accordion-item {
    border-bottom: 1px solid var(--pearl-gray);
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-header {
    background: var(--gradient-ocean);
    color: white;
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.accordion-header:hover {
    background: linear-gradient(135deg, var(--ocean-teal), var(--fresh-water));
}

.accordion-header::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.accordion-header.active::after {
    content: '−';
    transform: rotate(0deg);
}

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

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

.accordion-content p,
.accordion-content ul,
.accordion-content ol {
    color: var(--stone-gray);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.accordion-content ul,
.accordion-content ol {
    margin-left: 2rem;
}


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

.table-wrapper::-webkit-scrollbar {
    height: 8px;
}

.table-wrapper::-webkit-scrollbar-track {
    background: var(--pearl-gray);
    border-radius: 4px;
}

.table-wrapper::-webkit-scrollbar-thumb {
    background: var(--ocean-teal);
    border-radius: 4px;
}

.table-wrapper::-webkit-scrollbar-thumb:hover {
    background: var(--fresh-water);
}

.data-table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    margin: 0;
}

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

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

.data-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--pearl-gray);
    color: var(--deep-charcoal);
}

.data-table tbody tr {
    transition: background 0.3s ease;
}

.data-table tbody tr:hover {
    background: rgba(127, 219, 202, 0.1);
}

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

.data-table .highlight {
    background: rgba(255, 184, 77, 0.2);
    font-weight: 600;
    color: var(--deep-ocean);
}


.info-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-light);
    margin: 1.5rem 0;
    border-left: 4px solid var(--fresh-water);
    transition: all 0.3s ease;
}

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

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

.info-card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}


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

.stat-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-light);
    border-top: 4px solid var(--fresh-water);
    transition: all 0.3s ease;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--deep-ocean);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--stone-gray);
    font-size: 0.95rem;
}


.featured-section {
    background: linear-gradient(135deg, rgba(127, 219, 202, 0.1), rgba(74, 144, 164, 0.1));
    padding: 3rem 0;
    margin: 3rem 0;
    border-radius: 15px;
}

.featured-section h2 {
    text-align: center;
    color: var(--deep-ocean);
    font-size: 2.2rem;
    margin-bottom: 2rem;
}


.comparison-table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    margin: 0;
}

.comparison-table thead {
    background: var(--deep-ocean);
    color: white;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: center;
    border: 1px solid var(--pearl-gray);
}

.comparison-table th:first-child,
.comparison-table td:first-child {
    text-align: left;
    background: var(--wave-white);
    font-weight: 600;
}

.comparison-table tbody tr:nth-child(even) {
    background: rgba(127, 219, 202, 0.05);
}

.comparison-table .check {
    color: var(--success-green);
    font-size: 1.5rem;
    font-weight: bold;
}

.comparison-table .cross {
    color: #e74c3c;
    font-size: 1.5rem;
    font-weight: bold;
}


@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--gradient-ocean);
        flex-direction: column;
        gap: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
        box-shadow: var(--shadow-medium);
        z-index: 999;
    }
    
    .nav-menu.active {
        max-height: 400px;
        padding: 1rem 0;
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-menu a {
        display: block;
        width: 100%;
        padding: 1rem 1.5rem;
        text-align: left;
        border-radius: 0;
    }
    
    .nav-menu a::after {
        display: none;
    }
    
    .nav-menu a:hover {
        background: rgba(255, 255, 255, 0.15);
        transform: none;
        padding-left: 2rem;
    }
    
    .hero h2 {
        font-size: 1.75rem;
        line-height: 1.3;
        word-wrap: break-word;
        padding: 0 10px;
    }
    
    .hero p {
        font-size: 1.1rem;
        padding: 0 10px;
    }
    
    .news-grid, .gear-grid {
        grid-template-columns: 1fr;
    }
    
    .news-card, .gear-card {
        min-height: auto;
    }
    
    .hero-image {
        max-height: 250px;
    }
    
    .news-image, .gear-image {
        height: 180px;
    }
    
    .read-more {
        margin-top: 1rem;
        padding-top: 0;
    }
    
    .hero {
        padding: 3rem 0;
    }
    
    .fs-bonus {
        padding: 1rem 1.5rem;
    }
    
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-legal-links {
        justify-content: center;
    }
    
    .footer-bottom {
        text-align: center;
    }
    
    footer {
        padding: 3rem 0 1rem;
    }
    
    
    .news-section h2, 
    .gear-section h2, 
    .featured-section h2 {
        font-size: 1.75rem;
        line-height: 1.3;
        word-wrap: break-word;
        hyphens: auto;
    }
    
    .news-card h3, 
    .gear-card h3 {
        font-size: 1.2rem;
        line-height: 1.4;
        word-wrap: break-word;
    }
    
    .game-preview h2 {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    
    .accordion-header {
        font-size: 0.95rem;
        padding: 1rem;
        line-height: 1.4;
        word-wrap: break-word;
    }
    
    .accordion-content.active {
        padding: 1rem;
        font-size: 0.95rem;
    }
    
    
    .table-wrapper {
        margin: 1rem -20px;
        padding: 0 20px;
    }
    
    .data-table, .comparison-table {
        font-size: 0.85rem;
        min-width: 500px;
    }
    
    .data-table th, .data-table td,
    .comparison-table th, .comparison-table td {
        padding: 0.6rem 0.4rem;
        word-wrap: break-word;
        hyphens: auto;
    }
    
    .data-table th, .comparison-table th {
        font-size: 0.8rem;
        white-space: nowrap;
    }
    
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    
    .cta-registration h2 {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .cta-registration > .container > .cta-content > p {
        font-size: 1.1rem;
    }
    
    .cta-benefits {
        grid-template-columns: 1fr;
    }
    
    .cta-button {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
    
    
    .container {
        padding: 0 15px;
    }
    
    
    .article-content p,
    .article-content ul,
    .article-content li {
        word-wrap: break-word;
        hyphens: auto;
    }
}


@media (max-width: 480px) {
    .hero h2 {
        font-size: 1.5rem;
    }
    
    .news-section h2, 
    .gear-section h2, 
    .featured-section h2 {
        font-size: 1.5rem;
    }
    
    .cta-registration h2 {
        font-size: 1.5rem;
    }
    
    .data-table, .comparison-table {
        min-width: 450px;
        font-size: 0.8rem;
    }
}

