:root {
    --gold: #FFD700;
    --black: #000000;
    --white: #FFFFFF;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), 
                url('background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    line-height: 1.6;
    min-height: 100vh;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 40%);
    pointer-events: none;
    z-index: -1;
}

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

/* Header */
.header {
    background: rgba(0,0,0,0.7);
    padding: 40px 0;
    text-align: center;
    border-bottom: 3px solid var(--gold);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

.header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.header-top {
    margin-bottom: 40px;
}

.header-content {
    padding: 0 20px;
}

h1 {
    color: var(--gold);
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--white);
}

/* Sections */
section {
    padding: 60px 0;
}

h2 {
    color: var(--gold);
    text-align: center;
    margin: 30px 0;
    font-size: 2.5rem;
    text-transform: uppercase;
}

/* About */
.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

/* Vacancies */
.vacancies-grid {
    max-width: 800px;
    margin: 0 auto;
}

.vacancy-card {
    background: rgba(0,0,0,0.8);
    border: 2px solid var(--gold);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 30px;
    opacity: 1 !important;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

.vacancy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,215,0,0.1), transparent);
    transition: 0.5s;
}

.vacancy-card:hover::before {
    left: 100%;
}



.vacancy-card h3 {
    color: var(--gold);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.salary {
    font-size: 1.8rem;
    color: var(--gold);
    margin: 15px 0;
    font-weight: bold;
}

.vacancy-card ul {
    list-style: none;
}

.vacancy-card ul li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.vacancy-card ul li:before {
    content: "•";
    color: var(--gold);
    position: absolute;
    left: 0;
}

/* Conditions */
.conditions {
    background-color: var(--dark-gray);
}

.conditions-grid {
    max-width: 800px;
    margin: 0 auto;
}

.contacts {
    background: rgba(0,0,0,0.7);
    text-align: center;
    padding: 40px 0;
    position: relative;
    backdrop-filter: blur(5px);
}

.contacts::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255,215,0,0.05) 0%, transparent 70%);
    pointer-events: none;
}

.condition-item {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 20px;
    border-radius: 8px;
    border: 2px solid var(--gold);
    text-align: left;
    margin-bottom: 20px;
    opacity: 1 !important;
    backdrop-filter: blur(5px);
}

/* CTA Section */
.cta {
    background: linear-gradient(45deg, var(--black), var(--dark-gray));
    text-align: center;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.btn-telegram {
    background-color: #0088cc;
    color: white;
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    section {
        padding: 40px 0;
    }

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

    .contact-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
}
