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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    background-color: #0b0f1e;
    color: #e0e6f1;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

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

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

header {
    background: rgba(11, 15, 30, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: 26px;
    font-weight: 800;
    background: linear-gradient(135deg, #f0b90b 0%, #fcd535 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
}

nav ul li a {
    font-size: 15px;
    font-weight: 500;
    color: #a0a8c9;
    transition: color 0.3s;
    position: relative;
}

nav ul li a:hover,
nav ul li a.active {
    color: #f0b90b;
}

nav ul li a.active::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #f0b90b, #fcd535);
    border-radius: 2px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background: #f0b90b;
    transition: all 0.3s;
}

.hero {
    padding-top: 130px;
    padding-bottom: 100px;
    background: radial-gradient(ellipse at top, #1a1f3a 0%, #0b0f1e 60%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(240, 185, 11, 0.03) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

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

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

.hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f0b90b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    color: #8f96b3;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, #f0b90b 0%, #d4a009 100%);
    color: #0b0f1e;
    box-shadow: 0 4px 20px rgba(240, 185, 11, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(240, 185, 11, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #f0b90b;
    border: 2px solid rgba(240, 185, 11, 0.3);
}

.btn-secondary:hover {
    background: rgba(240, 185, 11, 0.1);
    border-color: #f0b90b;
}

.section {
    padding: 80px 0;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    color: #ffffff;
}

.section-subtitle {
    text-align: center;
    color: #8f96b3;
    font-size: 16px;
    margin-bottom: 60px;
}

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

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 40px 30px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #f0b90b, #fcd535);
    opacity: 0;
    transition: opacity 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    border-color: rgba(240, 185, 11, 0.2);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card:hover::before {
    opacity: 1;
}

.card-icon {
    font-size: 40px;
    margin-bottom: 20px;
    display: inline-block;
}

.card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #ffffff;
}

.card p {
    color: #8f96b3;
    font-size: 15px;
    line-height: 1.7;
}

.stats {
    background: linear-gradient(180deg, #0f1535 0%, #0b0f1e 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

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

.stat-item h4 {
    font-size: 42px;
    font-weight: 800;
    background: linear-gradient(135deg, #f0b90b, #fcd535);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.stat-item p {
    color: #8f96b3;
    font-size: 15px;
}

.download-section {
    background: radial-gradient(ellipse at bottom, #1a1f3a 0%, #0b0f1e 60%);
    text-align: center;
}

.download-badges {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s;
}

.badge:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(240, 185, 11, 0.3);
    transform: translateY(-3px);
}

.badge-icon {
    font-size: 28px;
}

.badge-text {
    text-align: left;
}

.badge-text small {
    display: block;
    font-size: 12px;
    color: #8f96b3;
}

.badge-text strong {
    font-size: 18px;
    color: #ffffff;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-item {
    display: flex;
    gap: 25px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s;
}

.news-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(240, 185, 11, 0.15);
    transform: translateX(5px);
}

.news-date {
    min-width: 80px;
    text-align: center;
    padding-right: 25px;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.news-date .day {
    font-size: 32px;
    font-weight: 800;
    color: #f0b90b;
    line-height: 1;
}

.news-date .month {
    font-size: 13px;
    color: #8f96b3;
    margin-top: 4px;
}

.news-content h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #ffffff;
    transition: color 0.3s;
}

.news-item:hover .news-content h3 {
    color: #f0b90b;
}

.news-content p {
    color: #8f96b3;
    font-size: 14px;
    line-height: 1.6;
}

.news-meta {
    display: flex;
    gap: 20px;
    margin-top: 10px;
    font-size: 13px;
    color: #6b7194;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 30px;
    color: #ffffff;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-item .icon {
    font-size: 24px;
    color: #f0b90b;
    min-width: 30px;
}

.contact-item h4 {
    font-size: 16px;
    margin-bottom: 4px;
    color: #e0e6f1;
}

.contact-item p {
    font-size: 14px;
    color: #8f96b3;
}

.contact-form {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 40px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #a0a8c9;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #ffffff;
    font-size: 15px;
    outline: none;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #f0b90b;
}

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

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #ffffff;
}

.about-text p {
    color: #8f96b3;
    margin-bottom: 16px;
    line-height: 1.8;
    font-size: 15px;
}

.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #f0b90b, transparent);
}

.timeline-item {
    position: relative;
    padding-bottom: 30px;
}

.timeline-item::before {
    content: "";
    position: absolute;
    left: -36px;
    top: 4px;
    width: 14px;
    height: 14px;
    background: #f0b90b;
    border-radius: 50%;
    border: 3px solid #0b0f1e;
}

.timeline-item h4 {
    font-size: 18px;
    color: #f0b90b;
    margin-bottom: 6px;
}

.timeline-item p {
    color: #8f96b3;
    font-size: 14px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.team-card {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    transition: all 0.3s;
}

.team-card:hover {
    transform: translateY(-5px);
    border-color: rgba(240, 185, 11, 0.2);
}

.team-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f0b90b, #d4a009);
    border-radius: 50%;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
}

.team-card h4 {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 4px;
}

.team-card p {
    font-size: 14px;
    color: #8f96b3;
}

footer {
    background: #070a16;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    margin-bottom: 16px;
    display: inline-block;
}

.footer-brand p {
    color: #6b7194;
    font-size: 14px;
    line-height: 1.7;
}

.footer-links h4 {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 20px;
}

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

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #6b7194;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: #f0b90b;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding-top: 30px;
    text-align: center;
    color: #4a5072;
    font-size: 13px;
}

.keywords-section {
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    padding: 40px 0;
}

.keywords-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.keyword-tag {
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    font-size: 14px;
    color: #a0a8c9;
    transition: all 0.3s;
}

.keyword-tag:hover {
    border-color: #f0b90b;
    color: #f0b90b;
    background: rgba(240, 185, 11, 0.05);
}

@media (max-width: 768px) {
    nav ul {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(11, 15, 30, 0.98);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    nav ul.active {
        display: flex;
    }

    nav ul li {
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    }

    nav ul li a.active::after {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section-title {
        font-size: 28px;
    }

    .contact-grid,
    .about-content {
        grid-template-columns: 1fr;
    }

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

    .news-item {
        flex-direction: column;
        gap: 15px;
    }

    .news-date {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding-right: 0;
        padding-bottom: 15px;
        text-align: left;
        display: flex;
        align-items: baseline;
        gap: 10px;
    }

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

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

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