:root {
    --primary: #FF6B00;
    --primary-dark: #E05D00;
    --secondary: #181818;
    --dark: #121212;
    --light: #FFFFFF;
    --gray: #757575;
    --dark-gray: #2E2E2E;
    --text: #E0E0E0;
    --text-light: #B0B0B0;
}

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

body {
    font-family: 'Open Sans', sans-serif;
    background-color: var(--dark);
    color: var(--text);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
}

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

.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 0;
    background: transparent;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo {
    height: 30px;
    width: auto;
}

.nav-brand .logo-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--light);
    text-transform: uppercase;
}

.nav-brand .logo-text span {
    color: var(--primary);
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    position: relative;
    padding: 10px 0;
    color: #dfdfdf;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    display: inline-block;
    transition: transform 0.3s ease;
}

.nav-menu a:hover {
    transform: rotate(-4deg);
}

.nav-menu a.active {
    color: var(--primary);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
}

.navbar-link, .login-button {
    font-family: 'Montserrat', sans-serif;
}

.navbar-top.visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('/assets/images/background.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    text-align: center;
    padding-top: 70px;
}

.hero-small {
    height: 50vh;
    min-height: 400px;
}

.hero-content {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero h1 span {
    color: var(--primary);
}

.hero .subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 30px;
    font-weight: 400;
}

.online-wrapper {
    margin: 30px 0;
}

.online-counter {
    display: inline-flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    padding: 12px 25px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
}

.online-counter .online {
    color: #4CAF50;
    font-size: 1.4rem;
    font-weight: 700;
}

.online-counter .separator {
    color: var(--gray);
    margin: 0 5px;
    font-weight: 400;
}

.online-counter .max {
    color: var(--text-light);
    font-size: 1.2rem;
}

.online-counter .label {
    margin-left: 10px;
    font-size: 1rem;
    color: var(--text-light);
}

.center-button[data-v-d74f79a0] {
    align-content: center;
    align-items: center;
    background: none;
    background: linear-gradient(257.5deg, #f96918 -7.46%, #ffb800 74.36%);
    border: none;
    border-radius: 8px;
    box-shadow: 0 27px 64px -16px #ffb800a3;
    color: #fff;
    cursor: pointer;
    display: flex
;
    flex-wrap: wrap;
    font-size: 18px;
    font-weight: 700;
    height: 72px;
    justify-content: center;
    line-height: 22px;
    position: relative;
    text-transform: uppercase;
    transform: matrix(1, 0, -.09, 1, 0, 0);
    transition: .2s;
    width: 294px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    gap: 8px;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.3);
}

.section-dark {
    padding: 80px 0;
    background-color: var(--secondary);
}

.section-title {
    font-size: 2.625rem;
    font-weight: 800;
    line-height: 3.2rem;
    text-transform: uppercase;
    cursor: default;
    color: whitesmoke;
    text-align: center;
    margin-bottom: 60px;
}

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

.post-card {
    background: var(--dark);
    display: grid;
    grid-template-rows: 200px auto auto auto;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.2s ease;
    border: 1px solid var(--dark-gray);
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.post-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-card__date {
    font-weight: 600;
    color: var(--gray);
    padding: 15px 24px 0;
    font-size: 14px;
    line-height: 17px;
}

.post-card__title {
    font-size: 16px;
    line-height: 19.5px;
    font-weight: 800;
    padding: 0 24px;
    color: var(--light);
    margin: 10px 0;
}

.post-card__description {
    font-size: 14px;
    line-height: 17px;
    color: var(--gray);
    padding: 0 24px;
    margin-bottom: 15px;
}

.post-card__link {
    font-size: 15px;
    font-weight: 600;
    line-height: 19px;
    outline: none;
    background: linear-gradient(257.5deg, #f96918 -7.46%, #ffb800 74.36%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 5px;
    padding: 0 24px 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.post-card__link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.post-card__link:hover i {
    transform: translateX(3px);
}

.news-more {
    text-align: center;
    margin-top: 40px;
}

.download-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.download-card {
    flex: 1;
    min-width: 300px;
    display: flex;
    align-items: center;
    gap: 30px;
    background: var(--dark);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.download-card:hover {
    transform: translateY(-10px);
}

.download-image {
    width: 250px;
    height: auto;
    object-fit: contain;
}

.mobile-version .download-image {
    width: 200px;
}

.download-content {
    flex: 1;
}

.download-content h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.download-content p {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 1rem;
}

.social-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-item {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 24px;
    color: white;
    text-decoration: none;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.social-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.footer {
    background-color: var(--dark);
    padding: 40px 0;
    border-top: 1px solid var(--dark-gray);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo img {
    height: 30px;
}

.footer-logo span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: var(--text-light);
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

@media (min-width: 1200px) {
    .nav-menu a {
        font-size: 14px;
        font-weight: 700;
        text-transform: uppercase;
        margin-right: 45px;
    }
    
    .navbar-link {
        color: #dfdfdf;
        display: flex;
        font-size: 14px;
        font-weight: 700;
        gap: 5px;
        text-transform: uppercase;
        transition: all 0.4s;
    }
}

@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .download-card {
        flex-direction: column;
        text-align: center;
    }
    
    .download-image {
        width: 200px;
    }

    .mobile-version .download-image {
        width: 150px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        gap: 20px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero .subtitle {
        font-size: 1.1rem;
    }
    
    .online-counter .label {
        display: none;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .post-card {
        grid-template-rows: 150px auto auto auto;
    }
}

@media (max-width: 576px) {
    .nav-menu {
        gap: 15px;
    }
    
    .nav-brand .logo-text {
        font-size: 1.2rem;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .online-counter {
        padding: 8px 15px;
    }
    
    .online-counter .online {
        font-size: 1.2rem;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-small {
        height: 40vh;
        min-height: 300px;
    }
}
