@font-face {
    font-family: 'Angry';
    src: url('../Fonts/Angry.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Geologica';
    src: url('../Fonts/Geologica.ttf') format('truetype');
    font-weight: 300 800;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Geologica', sans-serif;
    background-color: #ffffff;
    color: #1a1a2e;
    line-height: 1.5;
    scroll-behavior: smooth;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(180deg, #101010 0%, rgba(16, 16, 16, 0) 100%);
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.2s ease;
}

.fixed-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 200px;
    opacity: 0.08;
    pointer-events: none;
    z-index: -1;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    flex-wrap: nowrap;
    gap: 40px;
}

.logo-group {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo-main {
    flex-shrink: 0;
}

.logo-secondary {
    flex-shrink: 0;
}

.logo-img {
    max-width: calc(120px * 0.7);
    height: auto;
    display: block;
}

.logo-img-secondary {
    width: 90%;
    max-width: 90px;
    height: auto;
    display: block;
}

.nav-links {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    flex: 1;
}

.nav-buttons {
    display: flex;
    gap: 32px;
    flex-wrap: nowrap;
    justify-content: flex-end;
}

.nav-link {
    font-family: 'Angry', sans-serif;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    color: #ffffff;
    letter-spacing: 0.5px;
    transition: opacity 0.2s;
    white-space: nowrap;
    background: transparent;
    padding: 6px 0;
    border-radius: 0;
}

.nav-link:hover {
    opacity: 0.7;
    background: transparent;
}

.nav-line {
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.5);
    margin-top: 0;
}

.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../Image/back_hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 200px;
    opacity: 0.05;
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: center;
}

.hero-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-logo {
    max-width: 500px;
    width: 100%;
    height: auto;
    display: block;
    position: relative;
}

.hero-button-wrapper {
    position: relative;
    margin-top: 40px;
    display: inline-block;
}

.hero-button-outline {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border: 3px solid rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    pointer-events: none;
    z-index: 0;
}

.hero-btn {
    position: relative;
    z-index: 1;
    display: inline-block;
    font-family: 'Angry', sans-serif;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.3rem;
    letter-spacing: 2px;
    padding: 14px 40px;
    background: #ffffff;
    color: #000000;
    border: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: none;
}

.hero-btn:hover {
    background: #e0e0e0;
    transform: scale(1.02);
}

.about-section {
    padding: 80px 0;
    background-color: #141414;
    position: relative;
    text-align: center;
    overflow: hidden;
}

.about-container {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
}

.about-side {
    flex: 0.8;
    min-width: 100px;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.about-center {
    flex: 2.4;
    text-align: center;
    position: relative;
    padding: 40px 30px;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-center::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-image: url('Image/up.png');
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100% auto;
    pointer-events: none;
    z-index: 0;
    height: 100%;
}

.about-center::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-image: url('Image/down.png');
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: 100% auto;
    pointer-events: none;
    z-index: 0;
    height: 100%;
}

.about-center .content {
    position: relative;
    z-index: 2;
}

.stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
}

.star {
    position: absolute;
    background-color: #ffffff;
    border-radius: 50%;
    opacity: 0;
    animation: twinkle 2s ease-in-out infinite;
}

@keyframes twinkle {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    50% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(0.5);
    }
}

.section-title {
    font-family: 'Angry', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 36px;
    color: #ffffff;
    text-align: center;
    border-left: none;
    padding-left: 0;
}

.about-text {
    font-family: 'Geologica', sans-serif;
    font-size: 1.06rem;
    color: #ffffff;
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
}

.about-text p {
    margin-bottom: 20px;
}

.join-slogan {
    font-family: 'Angry', sans-serif;
    font-size: 1.45rem;
    font-weight: 800;
    color: #ffffff;
    margin-top: 32px;
}

.cta-stats-section {
    padding: 50px 0 70px;
    background: #D9D9D9;
    border-top: 1px solid #c0c0c0;
    border-bottom: 1px solid #c0c0c0;
}

.cta-stats-section .section-title {
    font-family: 'Angry', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 36px;
    color: #542DE0;
    text-align: center;
    border-left: none;
    padding-left: 0;
}

.cta-stats-section .section-title.centered {
    text-align: center;
}

.stats-title {
    font-family: 'Angry', sans-serif;
    font-size: 1.7rem;
    font-weight: 700;
    color: #542DE0;
    margin-bottom: 28px;
}

.double-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin: 32px 0 56px;
}

.btn-primary, .btn-secondary {
    font-family: 'Angry', sans-serif;
    text-decoration: none;
    font-weight: 700;
    padding: 14px 40px;
    border-radius: 60px;
    font-size: 1.2rem;
    transition: transform 0.15s, box-shadow 0.2s;
    display: inline-block;
}

.btn-primary {
    background: #FE5F1B;
    color: white;
    box-shadow: 0 4px 12px rgba(254, 95, 27, 0.3);
    border: none;
}

.btn-primary:hover {
    background: #e04a0a;
    transform: translateY(-3px);
}

.btn-secondary {
    background: transparent;
    color: #FE5F1B;
    border: 2px solid #FE5F1B;
}

.btn-secondary:hover {
    background: rgba(254, 95, 27, 0.1);
    transform: translateY(-3px);
}

.stats-block {
    text-align: center;
    background: #ffffff;
    border-radius: 48px;
    padding: 30px 20px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    max-width: 650px;
    margin: 0 auto 80px auto;
}

.stats-counters {
    display: flex;
    justify-content: center;
    gap: 64px;
    flex-wrap: wrap;
}

.stat-number {
    font-family: 'Angry', sans-serif;
    font-size: 3.4rem;
    font-weight: 800;
    color: #5f40cf;
    line-height: 1.2;
}

.stat-label {
    font-family: 'Geologica', sans-serif;
    font-size: 0.95rem;
    color: #584a7a;
}

.recent-table-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 24px;
    padding: 32px;
    border: 2px solid #9e9e9e;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.recent-table-title {
    font-family: 'Angry', sans-serif;
    font-size: 1.6rem;
    color: #542DE0;
    margin-bottom: 28px;
    text-align: center;
}

.table-responsive {
    overflow-x: auto;
}

.recent-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Geologica', sans-serif;
    color: #000000;
    border-radius: 16px;
    overflow: hidden;
}

.recent-table thead tr {
    background: #f5f3ff;
    border-bottom: 2px solid #c0c0c0;
}

.recent-table th {
    text-align: left;
    padding: 18px 16px;
    font-weight: 700;
    font-family: 'Angry', sans-serif;
    font-size: 1.2rem;
    color: #542DE0;
}

.recent-table td {
    padding: 16px;
    font-size: 1.05rem;
    border-bottom: 1px solid #e0e0e0;
}

.recent-table tbody tr:last-child td {
    border-bottom: none;
}

.recent-table tbody tr:hover {
    background: #faf9ff;
}

.news-section {
    padding: 80px 0;
    position: relative;
    background-image: url('../Image/back_news.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: auto;
}

.news-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

.news-section .container {
    position: relative;
    z-index: 1;
}

.news-section .section-title {
    font-family: 'Angry', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 36px;
    color: #ffffff;
    text-align: center;
    border-left: none;
    padding-left: 0;
    display: inline-block;
    width: auto;
    margin-left: auto;
    margin-right: auto;
    padding: 12px 32px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 60px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.news-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 32px;
}

.news-card {
    background: #ffffff;
    border-radius: 28px;
    padding: 24px;
    transition: all 0.3s ease;
    border: 1px solid #eef2f8;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px -12px rgba(0, 0, 0, 0.15);
}

.news-title {
    font-family: 'Angry', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #000000;
}

.news-date {
    font-family: 'Geologica', sans-serif;
    font-size: 0.8rem;
    color: #555555;
    margin-bottom: 14px;
}

.news-excerpt {
    font-family: 'Geologica', sans-serif;
    color: #222222;
    line-height: 1.5;
    margin-bottom: 20px;
}

.news-link {
    font-family: 'Angry', sans-serif;
    text-decoration: none;
    font-weight: 600;
    color: #FE5F1B;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s;
}

.news-link:hover {
    gap: 10px;
    color: #e04a0a;
}

.faq-section {
    padding: 60px 0 90px;
    background: #D9D9D9;
}

.faq-section .section-title {
    font-family: 'Angry', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #FE5F1B;
    text-align: center;
    border-left: none;
    padding-left: 0;
    position: relative;
}

.faq-section .section-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: #542DE0;
    margin: 15px auto 0;
    border-radius: 2px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(480px, 1fr));
    gap: 32px 40px;
    margin-top: 48px;
}

.faq-item {
    background: #ffffff;
    border-radius: 24px;
    padding: 24px 28px;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.05);
    border: 1px solid #e0e0e0;
}

.faq-question {
    font-family: 'Angry', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 12px;
}

.faq-answer {
    font-family: 'Geologica', sans-serif;
    color: #222222;
    line-height: 1.5;
    font-size: 0.97rem;
}

.footer {
    background-color: #212121;
    background-image: url('../Image/back_f.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 42px 0 32px;
    position: relative;
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.footer .container {
    position: relative;
    z-index: 1;
}

.footer-container {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-brand {
    font-family: 'Angry', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.footer-links-row a {
    font-family: 'Angry', sans-serif;
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.2s;
}

.footer-links-row a:hover {
    opacity: 0.7;
    text-decoration: underline;
}

.footer-social {
    font-family: 'Angry', sans-serif;
    color: #ffffff;
}

.footer-social a {
    font-family: 'Angry', sans-serif;
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.2s;
}

.footer-social a:hover {
    opacity: 0.7;
    text-decoration: underline;
}

.about-image-top,
.about-image-bottom {
    width: 100%;
    line-height: 0;
}

.about-image-top img,
.about-image-bottom img {
    width: 100%;
    height: auto;
}

.about-content-wrapper {
    position: relative;
    z-index: 2;
    padding: 20px 0;
}

@media (max-width: 1200px) {
    .nav-links {
        flex: 1;
    }
    
    .nav-buttons {
        gap: 24px;
    }
    
    .nav-link {
        font-size: 1rem;
    }
    
    .header-container {
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .hero-logo {
        max-width: 400px;
    }
    
    .hero-btn {
        font-size: 1.1rem;
        padding: 12px 30px;
    }
    
    .about-container {
        flex-direction: column;
    }
    
    .about-side {
        display: none;
    }
    
    .about-center {
        padding: 30px 20px;
        min-height: auto;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .news-container {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
    }
    
    .recent-table-wrapper {
        max-width: 90%;
    }
    
    .header-container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .logo-group {
        justify-content: center;
    }
    
    .nav-links {
        align-items: center;
        width: 100%;
    }
    
    .nav-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .nav-line {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .nav-buttons {
        gap: 20px;
        flex-wrap: wrap;
    }
    
    .nav-link {
        font-size: 0.9rem;
    }
    
    .hero-logo {
        max-width: 280px;
    }
    
    .hero-button-outline {
        top: -10px;
        left: -10px;
        right: -10px;
        bottom: -10px;
    }
    
    .hero-btn {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
    
    .hero-button-wrapper {
        margin-top: 25px;
    }
    
    .about-section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }
    
    .about-text {
        font-size: 0.95rem;
    }
    
    .join-slogan {
        font-size: 1.2rem;
    }
    
    .cta-stats-section {
        padding: 40px 0 50px;
    }
    
    .stats-title {
        font-size: 1.3rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 10px 25px;
        font-size: 1rem;
    }
    
    .double-buttons {
        gap: 15px;
    }
    
    .stats-counters {
        gap: 30px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .news-section {
        padding: 50px 0;
    }
    
    .news-section .section-title {
        font-size: 1.5rem;
        padding: 8px 20px;
    }
    
    .news-card {
        padding: 18px;
    }
    
    .news-title {
        font-size: 1.2rem;
    }
    
    .faq-section {
        padding: 40px 0 60px;
    }
    
    .faq-section .section-title {
        font-size: 1.5rem;
    }
    
    .faq-item {
        padding: 18px 20px;
    }
    
    .faq-question {
        font-size: 1rem;
    }
    
    .footer {
        padding: 30px 0 25px;
    }
    
    .footer-brand {
        font-size: 1.2rem;
    }
    
    .logo-img {
        max-width: calc(80px * 0.7);
    }
    
    .logo-img-secondary {
        max-width: 65px;
    }
    
    .recent-table-wrapper {
        margin: 0 auto;
        padding: 20px;
    }
    
    .recent-table-title {
        font-size: 1.3rem;
    }
    
    .recent-table thead {
        display: none;
    }
    
    .recent-table,
    .recent-table tbody,
    .recent-table tr,
    .recent-table td {
        display: block;
        width: 100%;
    }
    
    .recent-table tr {
        margin-bottom: 16px;
        border: 1px solid #e0e0e0;
        border-radius: 16px;
        padding: 12px;
    }
    
    .recent-table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 8px;
        font-size: 1rem;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .recent-table td:last-child {
        border-bottom: none;
    }
    
    .recent-table td::before {
        content: attr(data-label);
        font-weight: 700;
        font-family: 'Angry', sans-serif;
        font-size: 1rem;
        color: #542DE0;
        margin-right: 16px;
    }
}

@media (max-width: 480px) {
    .nav-buttons {
        gap: 12px;
    }
    
    .nav-link {
        font-size: 0.75rem;
    }
    
    .hero-logo {
        max-width: 200px;
    }
    
    .hero-btn {
        font-size: 0.8rem;
        padding: 8px 16px;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .stats-block {
        padding: 20px 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .news-container {
        grid-template-columns: 1fr;
    }
    
    .logo-img-secondary {
        max-width: 50px;
    }
    
    .recent-table-wrapper {
        max-width: 95%;
        padding: 15px;
    }
}