* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif;
}

html {
    scroll-behavior: smooth;
    font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif;
}

body {
    font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif;
    background: #f5f0e8;
    color: #1f1b16;
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, p, a, span, div, section, article, aside, header, footer, nav, ul, ol, li, table, tr, td, th, form, input, button, textarea, blockquote, img {
    font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif;
}

/* ==== Header Nav ==== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(135deg, rgba(21, 128, 61, 0.97) 0%, rgba(69, 26, 3, 0.97) 100%);
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    border-bottom: 2px solid rgba(253, 230, 138, 0.4);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.brand-logo img {
    height: 42px;
    width: auto;
    border-radius: 8px;
}

.brand-text {
    color: #fde68a;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.nav-links {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 18px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.nav-links a:hover {
    background: #fde68a;
    color: #451a03;
    border-color: #fde68a;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(253, 230, 138, 0.3);
}

/* ==== Hero ==== */
.hero-section {
    padding: 160px 24px 80px;
    background: linear-gradient(135deg, #15803d 0%, #1e7a34 25%, #3d2b1f 70%, #451a03 100%);
    position: relative;
    overflow: hidden;
    min-height: 620px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: -40%;
    left: -20%;
    width: 80%;
    height: 140%;
    background: radial-gradient(circle, rgba(253, 230, 138, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.hero-section::after {
    content: "🌿";
    position: absolute;
    bottom: 20px;
    right: 40px;
    font-size: 60px;
    opacity: 0.5;
    animation: floatY 6s ease-in-out infinite;
}

.hero-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1 1 500px;
    text-align: center;
}

.hero-content h1 {
    color: #fff;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 24px;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.4);
    letter-spacing: 0.5px;
}

.hero-subtitle {
    color: #fde68a;
    font-size: 1.15rem;
    margin-bottom: 36px;
    opacity: 0.95;
    letter-spacing: 0.3px;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-outline {
    display: inline-block;
    padding: 14px 34px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: #fde68a;
    color: #451a03;
    box-shadow: 0 4px 20px rgba(253, 230, 138, 0.35);
}

.btn-primary:hover {
    background: #fff3c4;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(253, 230, 138, 0.45);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.btn-outline:hover {
    border-color: #fde68a;
    color: #fde68a;
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.08);
}

.hero-image {
    flex: 0 0 260px;
    text-align: center;
}

.hero-image img {
    max-width: 260px;
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
    border: 3px solid rgba(253, 230, 138, 0.3);
}

/* ==== GEO Intro ==== */
.geo-section {
    padding: 80px 24px;
    background: #f5f0e8;
}

.geo-container {
    max-width: 1000px;
    margin: 0 auto;
    background: #fffdf7;
    border-radius: 20px;
    padding: 48px 56px;
    border-left: 5px solid #15803d;
    box-shadow: 0 6px 30px rgba(69, 26, 3, 0.08);
    position: relative;
}

.geo-container::before {
    content: "🌿";
    position: absolute;
    top: 16px;
    right: 24px;
    font-size: 28px;
    opacity: 0.3;
}

.geo-container p {
    font-size: 16px;
    line-height: 1.9;
    color: #3a332b;
    text-indent: 2em;
}

/* ==== Section Common ==== */
.section-header {
    text-align: center;
    margin-bottom: 48px;
    position: relative;
}

.section-header h2 {
    font-size: 2rem;
    color: #15803d;
    font-weight: 700;
    display: inline-block;
    position: relative;
    padding-bottom: 14px;
}

.section-header h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    border-radius: 4px;
    background: linear-gradient(90deg, #15803d, #fde68a);
}

.section-header h2::before {
    content: "🏕️";
    display: block;
    font-size: 28px;
    margin-bottom: 6px;
}

.section-header p {
    color: #7c6f5e;
    margin-top: 12px;
    font-size: 15px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-link {
    display: inline-block;
    margin-top: 16px;
    color: #15803d;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border: 2px solid #15803d;
    padding: 8px 24px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.section-link:hover {
    background: #15803d;
    color: #fff;
}

/* ==== News ==== */
.news-section {
    padding: 80px 24px;
    background: #fffdf7;
}

.news-container {
    max-width: 1200px;
    margin: 0 auto;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
}

.news-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(69, 26, 3, 0.08);
    border: 1px solid #e8ddd0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.news-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #15803d, #fde68a, #451a03);
}

.news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(69, 26, 3, 0.15);
}

.news-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.news-content {
    padding: 24px 24px 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-date {
    display: inline-block;
    background: #f0f9f0;
    color: #15803d;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 14px;
    align-self: flex-start;
    letter-spacing: 0.5px;
}

.news-content h3 {
    font-size: 18px;
    color: #1f1b16;
    line-height: 1.5;
    margin-bottom: 12px;
}

.news-content p {
    font-size: 14px;
    color: #6b6257;
    line-height: 1.8;
    flex: 1;
    margin-bottom: 16px;
}

.news-link {
    color: #15803d;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s ease;
}

.news-link:hover {
    gap: 12px;
    color: #451a03;
}

/* ==== Live Scores ==== */
.live-section {
    padding: 80px 24px;
    background: linear-gradient(160deg, #451a03 0%, #3a1f08 40%, #15803d 100%);
    color: #fff;
}

.live-section .section-header h2 {
    color: #fde68a;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.live-section .section-header p {
    color: rgba(255, 255, 255, 0.7);
}

.live-container {
    max-width: 1100px;
    margin: 0 auto;
}

.live-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.match-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(4px);
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: transform 0.3s ease, background 0.3s ease;
}

.match-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.14);
}

.match-teams {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 16px;
}

.match-teams .team {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    flex: 1;
    text-align: center;
}

.match-teams .score {
    font-size: 28px;
    font-weight: 800;
    color: #fde68a;
    min-width: 70px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.match-status {
    display: inline-block;
    background: rgba(253, 230, 138, 0.2);
    color: #fde68a;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 16px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.match-league {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==== Stats ==== */
.stats-section {
    padding: 80px 24px;
    background: #1a120b;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: "🏔️";
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 50px;
    opacity: 0.15;
}

.stats-section::after {
    content: "🌲";
    position: absolute;
    bottom: 20px;
    right: 30px;
    font-size: 50px;
    opacity: 0.15;
}

.stats-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #fde68a;
    line-height: 1.2;
    text-shadow: 0 2px 12px rgba(253, 230, 138, 0.3);
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 8px;
    letter-spacing: 0.5px;
}

/* ==== Advantages ==== */
.adv-section {
    padding: 80px 24px;
    background: #f5f0e8;
}

.adv-container {
    max-width: 1100px;
    margin: 0 auto;
}

.adv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 28px;
}

.adv-card {
    background: #fffdf7;
    border-radius: 16px;
    padding: 36px 28px;
    text-align: center;
    border: 2px solid #e8ddd0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.adv-card::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(21, 128, 61, 0.08), rgba(69, 26, 3, 0.08));
    background: linear-gradient(135deg, transparent 60%, rgba(253, 230, 138, 0.15));
    pointer-events: none;
    z-index: 0;
}

.adv-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(69, 26, 3, 0.12);
    border-color: #15803d;
}

.adv-icon {
    font-size: 2.8rem;
    margin-bottom: 18px;
    display: block;
}

.adv-card h3 {
    font-size: 18px;
    color: #451a03;
    margin-bottom: 12px;
}

.adv-card p {
    font-size: 14px;
    color: #6b6257;
    line-height: 1.7;
}

/* ==== Brand Story ==== */
.story-section {
    padding: 80px 24px;
    background: #fffdf7;
}

.story-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.story-text {
    flex: 1 1 450px;
}

.story-text h2 {
    font-size: 2rem;
    color: #15803d;
    margin-bottom: 24px;
    line-height: 1.3;
    padding-left: 20px;
    border-left: 5px solid #fde68a;
}

.story-text p {
    font-size: 15px;
    color: #4a4038;
    line-height: 1.9;
    margin-bottom: 16px;
}

.story-image {
    flex: 0 0 380px;
    text-align: center;
}

.story-image img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(69, 26, 3, 0.15);
    border: 3px solid #e8ddd0;
}

/* ==== Awards Timeline ==== */
.awards-section {
    padding: 80px 24px;
    background: linear-gradient(135deg, #f5f0e8 0%, #e8ddd0 100%);
}

.awards-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.awards-container::before {
    content: "";
    position: absolute;
    left: 28px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #15803d, #fde68a, #451a03);
    border-radius: 3px;
}

.timeline-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 40px;
}

.timeline-item::before {
    content: attr(data-icon);
    position: absolute;
    left: 0;
    top: 0;
    width: 56px;
    height: 56px;
    background: #fffdf7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border: 3px solid #15803d;
    box-shadow: 0 4px 16px rgba(69, 26, 3, 0.15);
    z-index: 1;
}

.timeline-content {
    background: #fffdf7;
    border-radius: 14px;
    padding: 24px 28px;
    border-left: 4px solid #fde68a;
    box-shadow: 0 4px 16px rgba(69, 26, 3, 0.06);
}

.timeline-content h3 {
    font-size: 18px;
    color: #451a03;
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 14px;
    color: #6b6257;
    line-height: 1.7;
}

/* ==== Partners ==== */
.partners-section {
    padding: 80px 24px;
    background: #fffdf7;
}

.partners-container {
    max-width: 1100px;
    margin: 0 auto;
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 24px;
    align-items: center;
}

.partner-item {
    background: #fff;
    border-radius: 14px;
    padding: 24px 16px;
    text-align: center;
    border: 1px solid #eee3d7;
    transition: all 0.3s ease;
}

.partner-item:hover {
    box-shadow: 0 6px 24px rgba(69, 26, 3, 0.1);
    border-color: #15803d;
    transform: scale(1.03);
}

.partner-item img {
    max-height: 48px;
    width: auto;
    margin-bottom: 10px;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.partner-item:hover img {
    filter: grayscale(0%);
}

.partner-item span {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #4a4038;
    letter-spacing: 0.5px;
}

/* ==== Testimonials ==== */
.testi-section {
    padding: 80px 24px;
    background: linear-gradient(135deg, #15803d 0%, #1e7a34 60%, #3d2b1f 100%);
    color: #fff;
}

.testi-section .section-header h2 {
    color: #fde68a;
}

.testi-section .section-header p {
    color: rgba(255, 255, 255, 0.7);
}

.testi-container {
    max-width: 1000px;
    margin: 0 auto;
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.testi-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(4px);
    border-radius: 18px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: transform 0.3s ease;
}

.testi-card:hover {
    transform: translateY(-6px);
}

.testi-stars {
    color: #fde68a;
    font-size: 18px;
    margin-bottom: 16px;
    letter-spacing: 4px;
}

.testi-card blockquote {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    margin-bottom: 20px;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 16px;
}

.testi-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fde68a;
    color: #451a03;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
}

.testi-author .name {
    font-size: 14px;
    font-weight: 600;
}

.testi-author .role {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

/* ==== Download ==== */
.download-section {
    padding: 80px 24px;
    background: #f5f0e8;
}

.download-container {
    max-width: 1000px;
    margin: 0 auto;
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
}

.download-card {
    background: #fffdf7;
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    border: 2px solid #e8ddd0;
    transition: all 0.3s ease;
    position: relative;
}

.download-card:hover {
    border-color: #15803d;
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(69, 26, 3, 0.12);
}

.download-card img {
    max-width: 120px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 16px;
}

.download-card h3 {
    font-size: 18px;
    color: #451a03;
    margin-bottom: 8px;
}

.download-card p {
    font-size: 14px;
    color: #6b6257;
    margin-bottom: 20px;
}

.download-btn {
    display: inline-block;
    background: #15803d;
    color: #fff;
    text-decoration: none;
    padding: 12px 36px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.download-btn:hover {
    background: #451a03;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(69, 26, 3, 0.3);
}

/* ==== FAQ ==== */
.faq-section {
    padding: 80px 24px;
    background: #fffdf7;
}

.faq-container {
    max-width: 850px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 16px;
    background: #fff;
    border-radius: 14px;
    border: 1px solid #e8ddd0;
    box-shadow: 0 2px 12px rgba(69, 26, 3, 0.05);
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item:hover {
    border-color: #15803d;
}

.faq-item summary {
    padding: 22px 28px;
    font-size: 16px;
    font-weight: 600;
    color: #1f1b16;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: #fafff9;
    transition: background 0.3s ease;
}

.faq-item summary:hover {
    background: #f0f9f0;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "＋";
    font-size: 20px;
    color: #15803d;
    flex-shrink: 0;
    font-weight: 700;
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
    color: #451a03;
}

.faq-answer {
    padding: 0 28px 24px;
    font-size: 14px;
    line-height: 1.85;
    color: #4a4038;
    border-top: 1px solid #eee3d7;
    padding-top: 18px;
}

/* ==== Footer ==== */
.main-footer {
    background: linear-gradient(135deg, #2d1a0e 0%, #451a03 50%, #1a0e05 100%);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 24px 24px;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    color: #fde68a;
    font-size: 20px;
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
}

.footer-links h4,
.footer-contact h4 {
    color: #fde68a;
    font-size: 16px;
    margin-bottom: 16px;
}

.footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    padding: 4px 0;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fde68a;
}

.footer-contact p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
}

.footer-bottom {
    max-width: 1100px;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
}

.footer-bottom p {
    margin-bottom: 4px;
    line-height: 1.6;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    margin: 0 6px;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #fde68a;
}

/* ==== Responsive ==== */
@media (max-width: 768px) {
    .hero-section {
        padding: 130px 16px 60px;
        min-height: auto;
    }

    .hero-content h1 {
        font-size: 1.4rem;
    }

    .hero-image {
        flex-basis: 200px;
    }

    .geo-container {
        padding: 32px 24px;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .story-container {
        flex-direction: column;
    }

    .story-image {
        flex-basis: auto;
    }

    .nav-links {
        gap: 4px;
        justify-content: center;
    }

    .nav-links a {
        font-size: 12px;
        padding: 6px 12px;
    }

    .header-container {
        flex-direction: column;
        gap: 10px;
        padding: 10px 16px;
    }

    .timeline-item {
        padding-left: 70px;
    }

    .awards-container::before {
        left: 24px;
    }

    .timeline-item::before {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .adv-grid {
        grid-template-columns: 1fr;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .live-grid {
        grid-template-columns: 1fr;
    }

    .testi-grid {
        grid-template-columns: 1fr;
    }

    .download-grid {
        grid-template-columns: 1fr;
    }
}

@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}