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

body {
    font-family: 'Inter', sans-serif;
    background: #4A3F3A;
    color: #D4CFCB;
    overflow-x: hidden;
    min-height: 100vh;
}

.quiz-container {
    min-height: 100vh;
    position: relative;
}

.screen {
    display: none;
    min-height: 100vh;
    padding: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease-in-out;
}

.screen.active {
    display: flex;
    flex-direction: column;
    opacity: 1;
    transform: translateY(0);
}

/* Стартовый экран */
.start-screen {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 20px 0;
}

.hero-text-panel {
    width: 50%;
    min-height: 100vh;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.7) 0%, 
        rgba(20, 20, 20, 0.7) 50%, 
        rgba(0, 0, 0, 0.7) 100%);
    backdrop-filter: blur(2px);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    border-left: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
}

.hero-text-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 215, 0, 0.05) 0%, 
        transparent 50%, 
        rgba(255, 215, 0, 0.05) 100%);
    pointer-events: none;
}

.crypto-bg {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #2A2A2A, #1A1A1A);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.bitcoin-symbol {
    font-size: 120px;
    color: #66CC33;
    text-shadow: 0 0 30px #66CC33;
    animation: glow 2s ease-in-out infinite alternate;
    z-index: 2;
}

.neon-lines {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.line {
    width: 4px;
    height: 60px;
    background: #66CC33;
    box-shadow: 0 0 20px #66CC33;
    animation: pulse 1.5s ease-in-out infinite;
}

.line:nth-child(2) {
    animation-delay: 0.3s;
}

.line:nth-child(3) {
    animation-delay: 0.6s;
}

.start-text {
    padding: 40px;
}

.banner {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 35px;
    text-align: left;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out;
}

.hero-text-panel h1 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #FFFFFF, #E0E0E0);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out 0.2s both;
    letter-spacing: -0.5px;
}

.vacancies p {
    font-size: 19px;
    line-height: 1.6;
    margin-bottom: 35px;
    color: #F5F5F5;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin-bottom: 35px;
}

.benefits-list li {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 5px;
    color: #FFFFFF;
    position: relative;
    padding-left: 25px;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.8s ease-out calc(0.6s + var(--item-delay, 0s)) both;
    transition: all 0.3s ease;
}

.benefits-list li:hover {
    color: #FFD700;
    transform: translateX(5px);
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #FFD700;
    font-size: 16px;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    animation: pulse 2s ease-in-out infinite;
}

.benefits-list li:nth-child(1) { --item-delay: 0s; }
.benefits-list li:nth-child(2) { --item-delay: 0.1s; }
.benefits-list li:nth-child(3) { --item-delay: 0.2s; }
.benefits-list li:nth-child(4) { --item-delay: 0.3s; }

.cta-text {
    font-size: 20px;
    color: #FFFFFF;
    margin-bottom: 30px;
    line-height: 1.5;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out 1s both;
    text-align: center;
}

.start-btn {
    background: linear-gradient(135deg, #FFD700, #FFA500, #D4AF37);
    background-size: 200% 200%;
    color: white;
    border: 2px solid #FFD700;
    padding: 18px 35px;
    font-size: 20px;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4), 
                0 0 0 0 rgba(255, 215, 0, 0.7);
    width: 220px;
    align-self: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out 1.2s both, 
               shimmer 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.start-btn::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.6s ease;
}

.start-btn:hover::before {
    left: 100%;
}

.start-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.6), 
                0 0 0 8px rgba(255, 215, 0, 0.1);
    background-position: 100% 0;
}

.start-btn:active {
    transform: translateY(-1px) scale(1.02);
}

/* Экран вопроса */
.question-screen {
    background: #4A3F3A;
    justify-content: space-between;
}

.question-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
    padding: 40px 20px;
}

.question-text {
    font-size: 32px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 50px;
    color: #D4CFCB;
    line-height: 1.4;
}

.options-container {
    display: grid;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
}

.option {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    overflow: hidden;
}

.option::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 204, 51, 0.1), transparent);
    transition: left 0.5s ease;
}

.option:hover::before {
    left: 100%;
}

.option:hover {
    border-color: rgba(102, 204, 51, 0.5);
    background: rgba(102, 204, 51, 0.05);
    transform: translateY(-2px);
}

.option.selected {
    border-color: #66CC33;
    background: rgba(102, 204, 51, 0.1);
    box-shadow: 0 0 20px rgba(102, 204, 51, 0.2);
}

.radio-button {
    width: 20px;
    height: 20px;
    border: 2px solid #6B615A;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.option.selected .radio-button {
    border-color: #66CC33;
    background: #66CC33;
}

.option.selected .radio-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

.option-text {
    font-size: 18px;
    color: #D4CFCB;
    font-weight: 500;
}

/* Футер квиза */
.quiz-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 20px;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.progress-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.progress-bar {
    width: 200px;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #66CC33, #4CAF50);
    border-radius: 3px;
    transition: width 0.5s ease;
    box-shadow: 0 0 10px rgba(102, 204, 51, 0.5);
}

.progress-text {
    font-size: 16px;
    font-weight: 600;
    color: #66CC33;
}

.quiz-brand {
    font-size: 16px;
    color: #B8B3AD;
}

.brand-accent {
    color: #66CC33;
    font-weight: 600;
}

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

.nav-btn {
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.back-btn {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    color: #D4CFCB;
    font-size: 18px;
}

.back-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.next-btn {
    background: linear-gradient(135deg, #66CC33, #4CAF50);
    color: white;
    padding: 12px 25px;
    font-size: 16px;
    box-shadow: 0 5px 15px rgba(102, 204, 51, 0.3);
}

.next-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 204, 51, 0.4);
}

.next-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.hint {
    font-size: 12px;
    color: #8A857F;
    text-align: center;
    margin-top: 5px;
}

/* Загрузочный экран */
.loading-screen {
    background: linear-gradient(135deg, #4A3F3A 0%, #3F3A37 100%);
    justify-content: center;
    align-items: center;
}

.loading-content {
    text-align: center;
    max-width: 500px;
}

.loading-spinner {
    margin-bottom: 40px;
}

.spinner {
    width: 80px;
    height: 80px;
    border: 4px solid rgba(102, 204, 51, 0.2);
    border-top: 4px solid #66CC33;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

.loading-content h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #D4CFCB;
}

.loading-content p {
    font-size: 18px;
    color: #B8B3AD;
}

/* Финальный экран */
.final-screen {
    background: linear-gradient(135deg, #4A3F3A 0%, #3F3A37 100%);
    justify-content: space-between;
}

.final-content {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 40px 20px;
}

.final-image {
    position: relative;
    height: 400px;
}

.final-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.crypto-trading-bg {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #2A2A2A, #1A1A1A);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.trading-screens {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.screen-logo {
    background: rgba(102, 204, 51, 0.1);
    border: 1px solid rgba(102, 204, 51, 0.3);
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #66CC33;
    text-align: center;
}

.crypto-text {
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 24px;
    font-weight: 700;
    color: #D4CFCB;
    letter-spacing: 2px;
}

.bitcoin-logo {
    position: absolute;
    top: 120px;
    left: 30px;
    font-size: 40px;
    color: #66CC33;
    text-shadow: 0 0 20px #66CC33;
}

.final-text {
    padding: 40px;
}

.free-badge {
    background: linear-gradient(90deg, #66CC33, #4CAF50);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(102, 204, 51, 0.3);
}

.final-text h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #D4CFCB;
}

.final-description {
    margin-bottom: 40px;
}

.final-description p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #B8B3AD;
}

.company-info {
    background: rgba(102, 204, 51, 0.05);
    border: 1px solid rgba(102, 204, 51, 0.2);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(102, 204, 51, 0.1);
}

.info-item:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.info-label {
    font-size: 14px;
    font-weight: 600;
    color: #66CC33;
    min-width: 120px;
}

.info-value {
    font-size: 14px;
    color: #D4CFCB;
    text-align: right;
    flex: 1;
}

.telegram-btn {
    background: linear-gradient(135deg, #66CC33, #4CAF50);
    color: white;
    border: none;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(102, 204, 51, 0.3);
    width: 100%;
}

.telegram-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(102, 204, 51, 0.4);
}

.final-footer {
    text-align: center;
    padding: 20px;
    color: #8A857F;
    font-size: 14px;
}

/* Анимации */
@keyframes glow {
    0% { text-shadow: 0 0 30px #66CC33; }
    100% { text-shadow: 0 0 40px #66CC33, 0 0 60px #66CC33; }
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

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

/* Адаптивность для маленьких экранов по высоте */
@media (max-height: 600px) {
    .hero-content {
        align-items: flex-start;
        padding: 10px 0;
    }
    
    .hero-text-panel {
        min-height: auto;
        height: auto;
        padding: 20px;
        justify-content: flex-start;
    }
    
    .banner {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .hero-text-panel h1 {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .vacancies p {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .benefits-list {
        margin-bottom: 15px;
    }
    
    .benefits-list li {
        font-size: 13px;
        margin-bottom: 8px;
    }
    
    .cta-text {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .start-btn {
        padding: 10px 20px;
        font-size: 16px;
        width: 180px;
    }
}

/* Очень маленькие экраны по высоте */
@media (max-height: 500px) {
    .hero-text-panel {
        padding: 15px;
    }
    
    .banner {
        font-size: 12px;
        margin-bottom: 10px;
    }
    
    .hero-text-panel h1 {
        font-size: 20px;
        margin-bottom: 10px;
    }
    
    .vacancies p {
        font-size: 12px;
        margin-bottom: 10px;
    }
    
    .benefits-list {
        margin-bottom: 10px;
    }
    
    .benefits-list li {
        font-size: 11px;
        margin-bottom: 5px;
        padding-left: 15px;
    }
    
    .benefits-list li::before {
        font-size: 10px;
    }
    
    .cta-text {
        font-size: 12px;
        margin-bottom: 10px;
    }
    
    .start-btn {
        padding: 8px 16px;
        font-size: 14px;
        width: 150px;
    }
}

/* Адаптивность */
@media (max-width: 768px) {
    .hero-content {
        justify-content: center;
    }
    
    .hero-text-panel {
        width: 90%;
        padding: 40px 30px;
    }
    
    .hero-text-panel h1 {
        font-size: 28px;
        letter-spacing: -0.3px;
    }
    
    .vacancies p {
        font-size: 16px;
    }
    
    .benefits-list li {
        font-size: 14px;
        padding-left: 20px;
    }
    
    .benefits-list li::before {
        font-size: 14px;
    }
    
    .cta-text {
        font-size: 16px;
    }
    
    .start-btn {
        width: 100%;
        max-width: 250px;
        font-size: 18px;
        padding: 15px 30px;
    }
}

/* Мобильные устройства с маленькой высотой */
@media (max-width: 768px) and (max-height: 600px) {
    .hero-content {
        align-items: flex-start;
        padding: 10px 0;
    }
    
    .hero-text-panel {
        width: 95%;
        min-height: auto;
        height: auto;
        padding: 20px;
        justify-content: flex-start;
    }
    
    .banner {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .hero-text-panel h1 {
        font-size: 22px;
        margin-bottom: 15px;
    }
    
    .vacancies p {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .benefits-list {
        margin-bottom: 15px;
    }
    
    .benefits-list li {
        font-size: 13px;
        margin-bottom: 8px;
    }
    
    .cta-text {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .start-btn {
        width: 100%;
        max-width: 200px;
        font-size: 16px;
        padding: 12px 25px;
    }
}
@media (max-width: 768px) {
    .question-text {
        font-size: 24px;
    }
    
    .final-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .option-text {
        font-size: 16px;
    }
    
    .quiz-footer {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .progress-bar {
        width: 150px;
    }
    
    .bitcoin-symbol {
        font-size: 80px;
    }
    
    .final-text h1 {
        font-size: 28px;
    }
    .hint{
        display: none;
    }
    
    .company-info {
        padding: 15px;
    }
    
    .info-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .info-label {
        min-width: auto;
    }
    
    .info-value {
        text-align: left;
    }
    .final-text{
        padding: 35px 0;
    }
}

@media (max-width: 480px) {
    .screen {
        padding: 15px;
    }
    
    .hero-text-panel {
        width: 95%;
        padding: 30px 20px;
    }
    
    .hero-text-panel h1 {
        font-size: 24px;
        letter-spacing: -0.2px;
    }
    
    .vacancies p {
        font-size: 14px;
    }
    
    .benefits-list li {
        font-size: 13px;
        padding-left: 18px;
    }
    
    .benefits-list li::before {
        font-size: 12px;
    }
    
    .cta-text {
        font-size: 14px;
    }
    
    .start-btn {
        padding: 12px 25px;
        font-size: 16px;
        width: 100%;
    }
    
    .question-text {
        font-size: 20px;
    }
    
    .option {
        padding: 15px 20px;
    }
    
    .option-text {
        font-size: 14px;
    }
    .telegram-btn{
        text-align: center;
        width: 100%;
        margin-top: 10px;
        display: inline-block;
    }
}

/* Футер */
.site-footer {
    background: linear-gradient(135deg, #2A2A2A 0%, #1A1A1A 100%);
    color: #D4CFCB;
    padding: 40px 0 20px;
    border-top: 1px solid rgba(102, 204, 51, 0.2);
    margin-top: auto;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.footer-section h3 {
    color: #66CC33;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.company-details p {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.6;
}

.company-details strong {
    color: #66CC33;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: #D4CFCB;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 20px;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #66CC33;
    font-weight: bold;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #66CC33;
    transform: translateX(5px);
}

.footer-links a:hover::before {
    transform: translateX(3px);
}

.contact-info p {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.6;
}

.contact-info a {
    color: #66CC33;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-info a:hover {
    color: #4CAF50;
    text-shadow: 0 0 10px rgba(102, 204, 51, 0.5);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(102, 204, 51, 0.1);
    color: #8A857F;
    font-size: 14px;
}

/* Куки-окошко */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #2A2A2A 0%, #1A1A1A 100%);
    border-top: 2px solid #66CC33;
    padding: 20px;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.5s ease-in-out;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-text h4 {
    color: #66CC33;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.cookie-text p {
    color: #D4CFCB;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.cookie-text a {
    color: #66CC33;
    text-decoration: none;
    font-weight: 600;
}

.cookie-text a:hover {
    color: #4CAF50;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
}

.accept-btn {
    background: linear-gradient(135deg, #66CC33, #4CAF50);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 204, 51, 0.3);
}

.accept-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 204, 51, 0.4);
}

.reject-btn {
    background: rgba(255, 255, 255, 0.1);
    color: #D4CFCB;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.reject-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.settings-btn {
    background: rgba(102, 204, 51, 0.1);
    color: #66CC33;
    border: 1px solid rgba(102, 204, 51, 0.3);
}

.settings-btn:hover {
    background: rgba(102, 204, 51, 0.2);
    transform: translateY(-2px);
}

/* Модальное окно настроек cookie */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1001;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background: linear-gradient(135deg, #2A2A2A 0%, #1A1A1A 100%);
    border-radius: 15px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(102, 204, 51, 0.2);
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 1px solid rgba(102, 204, 51, 0.2);
}

.cookie-modal-header h3 {
    color: #66CC33;
    font-size: 24px;
    font-weight: 600;
    margin: 0;
}

.close-btn {
    background: none;
    border: none;
    color: #D4CFCB;
    font-size: 30px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #66CC33;
}

.cookie-modal-body {
    padding: 30px;
}

.cookie-category {
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(102, 204, 51, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(102, 204, 51, 0.1);
}

.cookie-category-header {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.cookie-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
    flex-shrink: 0;
}

.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.2);
    transition: 0.3s;
    border-radius: 24px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #66CC33;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

input:disabled + .slider {
    background-color: #66CC33;
    opacity: 0.6;
    cursor: not-allowed;
}

.cookie-category-info h4 {
    color: #D4CFCB;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 8px 0;
}

.cookie-category-info p {
    color: #B8B3AD;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.cookie-modal-footer {
    padding: 25px 30px;
    border-top: 1px solid rgba(102, 204, 51, 0.2);
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.accept-all-btn {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #2A2A2A;
    font-weight: 600;
}

.accept-all-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

/* Адаптивность для футера и куки */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .cookie-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .cookie-btn {
        min-width: 100px;
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .cookie-modal-content {
        margin: 10px;
        max-height: 90vh;
    }
    
    .cookie-modal-header {
        padding: 20px;
    }
    
    .cookie-modal-header h3 {
        font-size: 20px;
    }
    
    .cookie-modal-body {
        padding: 20px;
    }
    
    .cookie-modal-footer {
        padding: 20px;
        flex-direction: column;
    }
    
    .cookie-category-header {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .site-footer {
        padding: 30px 0 15px;
    }
    
    .footer-content {
        gap: 25px;
    }
    
    .footer-section h3 {
        font-size: 18px;
    }
    
    .cookie-banner {
        padding: 15px;
    }
    
    .cookie-text h4 {
        font-size: 16px;
    }
    
    .cookie-text p {
        font-size: 13px;
    }
    
    .cookie-btn {
        padding: 8px 12px;
        font-size: 12px;
        min-width: 80px;
    }
}
