@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:wght@400;600;700;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #0a0a0a;
    color: #fff;
    overflow-x: hidden;
}

.bg-container {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background: radial-gradient(circle at 20% 50%, rgba(255, 0, 150, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 255, 255, 0.15) 0%, transparent 50%),
        #0a0a0a;
}

.grid-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 0, 150, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 0, 150, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: grid-scroll 20s linear infinite;
    z-index: -1;
}

@keyframes grid-scroll {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 50px;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 0, 150, 0.3);
}

.nav-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    font-family: 'Bebas Neue', cursive;
    font-size: 2rem;
    letter-spacing: 3px;
    background: linear-gradient(135deg, #ff0096, #00ffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: logoGlow 3s ease-in-out infinite;
}

@keyframes logoGlow {

    0%,
    100% {
        filter: drop-shadow(0 0 10px rgba(255, 0, 150, 0.5));
    }

    50% {
        filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.8));
    }
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 50px;
    position: relative;
}

.hero-content {
    max-width: 900px;
    text-align: center;
}

.hero-title {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(2rem, 6vw, 4rem);
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #fff;
}

.hero-highlight {
    display: block;
    font-size: clamp(4rem, 12vw, 8rem);
    color: #ffff00;
    text-shadow: 0 0 40px rgba(255, 255, 0, 0.6);
    margin: 10px 0;
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {

    0%,
    100% {
        text-shadow: 0 0 40px rgba(255, 255, 0, 0.6);
    }

    50% {
        text-shadow: 0 0 60px rgba(255, 255, 0, 0.9);
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 50px;
    color: #00ffff;
    letter-spacing: 1px;
}

.hero-requirements {
    max-width: 700px;
    margin: 0 auto 30px;
    text-align: left;
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border: 1px solid rgba(255, 0, 150, 0.2);
    position: relative;
    overflow: hidden;
}

.hero-requirements::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 150, 0.2), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.requirement-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 12px 0;
    font-size: 1.05rem;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.requirement-item:last-child {
    border-bottom: none;
}

.requirement-icon {
    font-size: 1.5rem;
    min-width: 30px;
    color: #00ff00;
}

.alert-box {
    background: rgba(255, 0, 0, 0.15);
    border: 2px solid rgba(255, 0, 0, 0.4);
    padding: 18px 25px;
    margin: 30px auto;
    max-width: 650px;
    text-align: center;
    color: #ff6b6b;
    font-weight: 700;
    font-size: 1.1rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
    }

    50% {
        box-shadow: 0 0 25px rgba(255, 0, 0, 0.6);
    }
}

.hero-cta {
    padding: 20px 60px;
    background: linear-gradient(135deg, #ff0096, #ff00ff);
    border: none;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s;
    font-size: 1.1rem;
    margin-top: 20px;
    position: relative;
    overflow: hidden;
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.hero-cta:hover::before {
    left: 100%;
}

.hero-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 0, 150, 0.5);
}

.about-section {
    padding: 80px 20px;
    background: rgba(0, 0, 0, 0.5);
}

.about-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 3.5rem;
    letter-spacing: 3px;
    background: linear-gradient(135deg, #ff0096, #00ffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 30px;
    text-align: center;
}

.about-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 20px;
}

.about-highlight {
    color: #ffff00;
    font-weight: 700;
}

.stats-section {
    padding: 80px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.stat-card {
    text-align: center;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 0, 150, 0.2);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 0, 150, 0.2), transparent 30%);
    animation: rotate 4s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.stat-card:hover {
    border-color: #ff0096;
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 50px rgba(255, 0, 150, 0.4);
}

.stat-number {
    font-family: 'Bebas Neue', cursive;
    font-size: 4rem;
    background: linear-gradient(135deg, #ff0096, #00ffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.stat-label {
    font-size: 1.1rem;
    color: #ccc;
    position: relative;
    z-index: 1;
}

.vacancies-section {
    padding: 80px 20px;
    max-width: 1400px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.3);
}

.section-description {
    font-size: 1.1rem;
    color: #999;
    max-width: 700px;
    margin: 0 auto 60px;
    text-align: center;
}

.vacancies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.vacancy-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 0, 150, 0.2);
    padding: 30px;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.vacancy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 150, 0.1), transparent);
    transition: left 0.6s;
}

.vacancy-card:hover::before {
    left: 100%;
}

.vacancy-card:hover {
    border-color: #ff0096;
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 0, 150, 0.3);
}

.vacancy-badge {
    display: inline-block;
    padding: 4px 12px;
    background: linear-gradient(135deg, #ff0096, #ff00ff);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.vacancy-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.8rem;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.vacancy-info {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.info-item {
    font-size: 0.85rem;
    color: #00ffff;
    font-weight: 600;
}

.vacancy-description {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.apply-btn {
    width: 100%;
    padding: 12px;
    background: transparent;
    border: 2px solid #ff0096;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.9rem;
    position: relative;
}

.apply-btn:hover {
    background: #ff0096;
    box-shadow: 0 10px 30px rgba(255, 0, 150, 0.4);
    transform: translateY(-2px);
}

.benefits-section {
    padding: 80px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.benefit-card {
    padding: 35px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 255, 255, 0.2);
    text-align: center;
    transition: all 0.4s;
}

.benefit-card:hover {
    border-color: #00ffff;
    transform: translateY(-10px) rotate(2deg);
    box-shadow: 0 20px 50px rgba(0, 255, 255, 0.3);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.benefit-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.5rem;
    color: #00ffff;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.benefit-text {
    color: #ccc;
    line-height: 1.6;
    font-size: 1rem;
}

.quiz-section {
    padding: 80px 20px;
    background: rgba(0, 0, 0, 0.5);
}

.quiz-container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 0, 150, 0.3);
    padding: 50px;
    position: relative;
}

.quiz-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff0096, #00ffff, #ffff00, #ff0096);
    background-size: 200% 100%;
    animation: gradientMove 3s linear infinite;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 0%;
    }

    100% {
        background-position: 200% 0%;
    }
}

.quiz-header {
    text-align: center;
    margin-bottom: 40px;
}

.quiz-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.5rem;
    background: linear-gradient(135deg, #ff0096, #00ffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}

.quiz-emoji {
    font-size: 3rem;
    margin-bottom: 10px;
    display: inline-block;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 40px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ffff00, #ff0096);
    transition: width 0.4s ease;
    width: 20%;
}

.quiz-step {
    display: none;
}

.quiz-step.active {
    display: block;
    animation: fadeIn 0.5s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.quiz-question {
    font-family: 'Bebas Neue', cursive;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 10px;
    letter-spacing: 2px;
    color: #fff;
}

.quiz-subtitle {
    text-align: center;
    color: #999;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.quiz-options {
    display: grid;
    gap: 12px;
}

.quiz-option {
    padding: 18px 25px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 0, 150, 0.3);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-align: left;
    font-size: 1rem;
}

.quiz-option:hover {
    border-color: #ff0096;
    background: rgba(255, 0, 150, 0.1);
    transform: translateX(10px);
}

.quiz-input {
    width: 100%;
    padding: 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 0, 150, 0.3);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s;
    font-size: 1rem;
    margin-bottom: 15px;
}

.quiz-input:focus {
    outline: none;
    border-color: #ff0096;
    box-shadow: 0 0 20px rgba(255, 0, 150, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.quiz-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #ff0096, #ff00ff);
    border: none;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
}

.quiz-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 0, 150, 0.5);
}

.success-message {
    text-align: center;
    padding: 50px 20px;
    display: none;
}

.success-message.active {
    display: block;
    animation: fadeIn 0.5s;
}

.success-icon {
    font-size: 5rem;
    margin-bottom: 20px;
    color: #00ff00;
    animation: scaleIn 0.5s;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

footer {
    padding: 50px 20px;
    background: rgba(0, 0, 0, 0.9);
    border-top: 1px solid rgba(255, 0, 150, 0.3);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.footer-column h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #ff0096;
    letter-spacing: 2px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #00ffff;
}

.copyright {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #666;
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    nav {
        padding: 15px 20px;
    }

    .logo {
        font-size: 1.5rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-highlight {
        font-size: 4rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .quiz-container {
        padding: 30px 20px;
    }

    .hero-requirements {
        padding: 20px;
    }

    .requirement-item {
        font-size: 0.95rem;
    }

    .vacancies-grid {
        grid-template-columns: 1fr;
    }
}

/* Gifts Section */
.gifts-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
}

.gifts-container {
    max-width: 1200px;
    margin: 0 auto;
}

.gifts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 50px 0;
}

.gift-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.gift-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(139, 92, 246, 0.3);
}

.gift-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.gift-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
}

.gift-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.gifts-cta {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    border-radius: 20px;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.gifts-highlight {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 25px;
}

.office-badge {
    background: #10b981;
    margin-left: 8px;
}

/* Notifications */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 25px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    z-index: 10000;
    transform: translateX(400px);
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.notification.show {
    transform: translateX(0);
}

.notification-error {
    background: linear-gradient(135deg, #ff0066, #ff3366);
    color: #fff;
}

.notification-success {
    background: linear-gradient(135deg, #00ff88, #00cc66);
    color: #000;
}

.notification-info {
    background: linear-gradient(135deg, #00aaff, #0088ff);
    color: #fff;
}

@media (max-width: 768px) {
    .notification {
        top: 10px;
        right: 10px;
        left: 10px;
        text-align: center;
        font-size: 14px;
        padding: 12px 20px;
    }
}