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

html {
    overflow-x: hidden;
}

body {
    font-family: 'Inter', 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
}

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

/* Общие стили для экранов */


.screen-bg {
    background-image: url('1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.screen-bg-2 {
    background-image: url('2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100vh;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(100px);
}

.screen.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    overflow-y: auto;
    overflow-x: hidden;
}

/* Стартовый экран */
.start-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.icon-container {
    margin-bottom: 2rem;
    animation: float 3s ease-in-out infinite;
}

.team-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.icon-svg {
    width: 50px;
    height: 50px;
}

.main-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    background-clip: text;
    margin-bottom: 2rem;
    text-shadow: 0px 0px 11px rgba(0,0,0,0.91);
    letter-spacing: -0.5px;
    line-height: 1.1;
    position: relative;
}

.main-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #FFD700, transparent);
    border-radius: 2px;
}

/* Прозрачная капсула для текста */
.text-capsule {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 15px 20px;
    margin: 2rem 0;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    max-width: 900px;
    width: 100%;
}

.text-capsule::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 215, 0, 0.05) 0%, 
        rgba(255, 165, 0, 0.03) 50%, 
        rgba(255, 215, 0, 0.05) 100%);
    border-radius: 30px;
    pointer-events: none;
}

.text-capsule::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        rgba(255, 215, 0, 0.3), 
        rgba(255, 165, 0, 0.2), 
        rgba(255, 215, 0, 0.3));
    border-radius: 20px;
    z-index: -1;
    opacity: 0.6;
}

.content-text {
    position: relative;
    z-index: 1;
    line-height: 1.8;
}

.content-text p {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: 400;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.3px;
}

.content-text h5{
    font-weight: 400;
}

.content-text p:last-child {
    margin-bottom: 0;
}

/* CTA капсула */
.cta-capsule {
    background: rgba(255, 215, 0, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 25px;
    padding: 15px 20px;
    margin: 2rem 0;
    box-shadow: 
        0 15px 30px rgba(255, 215, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    max-width: 600px;
    width: 100%;
}

.cta-capsule::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 215, 0, 0.05) 0%, 
        rgba(255, 165, 0, 0.03) 50%, 
        rgba(255, 215, 0, 0.05) 100%);
    border-radius: 30px;
    pointer-events: none;
}

.cta-capsule::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        rgba(255, 215, 0, 0.3), 
        rgba(255, 165, 0, 0.2), 
        rgba(255, 215, 0, 0.3));
    border-radius: 20px;
    z-index: -1;
    opacity: 0.6;
}

.workspace-image {
    margin: 3rem 0;
    width: 100%;
    max-width: 600px;
}

.workspace-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-placeholder {
    background: linear-gradient(135deg, #3a3a3a, #2a2a2a);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 215, 0, 0.1) 50%, transparent 70%);
    animation: shimmer 3s infinite;
}

.desk-setup {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    position: relative;
    height: 200px;
}

.laptop {
    width: 80px;
    height: 50px;
    background: linear-gradient(135deg, #c0c0c0, #a0a0a0);
    border-radius: 8px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.laptop::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 2px;
    background: #666;
    border-radius: 2px;
}

.plant {
    width: 20px;
    height: 40px;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    position: relative;
}

.plant-left {
    background: linear-gradient(135deg, #4a7c59, #2d5a3d);
}

.plant-right {
    background: linear-gradient(135deg, #FFD700, #FFA500);
}

.plant::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 20px;
    background: linear-gradient(135deg, #4a7c59, #2d5a3d);
    border-radius: 50%;
}

.notebook {
    width: 60px;
    height: 80px;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.bottom-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.subtitle {
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}

.privacy-link {
    color: #888;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.privacy-link:hover {
    color: #FFD700;
}

.start-btn {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #1a1a1a;
    border: none;
    padding: 1.2rem 3.5rem;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 15px 35px rgba(255, 215, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    margin-top: 0.5rem;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.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(-4px) scale(1.05);
    box-shadow: 
        0 20px 45px rgba(255, 215, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

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

/* Экран загрузки */
.loading-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
}

.loading-spinner {
    margin-bottom: 2rem;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 215, 0, 0.2);
    border-top: 4px solid #FFD700;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loading-content h2 {
    font-size: 2rem;
    color: #FFD700;
    margin-bottom: 1rem;
}

.loading-content p {
    color: #b0b0b0;
    font-size: 1.1rem;
}

/* Финальный экран */
.final-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.crypto-branding {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.crypto-logo {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.bitcoin-icon {
    font-size: 2rem;
    font-weight: bold;
    color: #1a1a1a;
}

.crypto-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.trading-image {
    margin: 3rem 0;
    width: 100%;
    max-width: 500px;
}

.monitors-setup {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding: 2rem;
    background: linear-gradient(135deg, #3a3a3a, #2a2a2a);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.monitor {
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border: 2px solid #FFD700;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #FFD700;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

.monitor:nth-child(4) {
    grid-column: 1 / 3;
}

.monitor:nth-child(5) {
    grid-column: 3;
}

.congratulations {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #FFD700, #FFA500, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    text-shadow: 0 0 40px rgba(255, 215, 0, 0.6);
    letter-spacing: -0.5px;
    line-height: 1.1;
    position: relative;
}

.congratulations::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #FFD700, transparent);
    border-radius: 2px;
}

/* Информационные блоки с иконками */
.info-blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
    max-width: 1000px;
    width: 100%;
}

.info-block {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.info-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 215, 0, 0.05) 0%, 
        rgba(255, 165, 0, 0.03) 50%, 
        rgba(255, 215, 0, 0.05) 100%);
    border-radius: 20px;
    pointer-events: none;
}

.info-block::after {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(45deg, 
        rgba(255, 215, 0, 0.2), 
        rgba(255, 165, 0, 0.1), 
        rgba(255, 215, 0, 0.2));
    border-radius: 21px;
    z-index: -1;
    opacity: 0.6;
}

.info-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.info-block-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.info-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.info-icon.target {
    background: linear-gradient(135deg, #ff4757, #ff3742);
    color: white;
}

.info-icon.diamond {
    background: linear-gradient(135deg, #3742fa, #2f3542);
    color: white;
}

.info-icon.rocket {
    background: linear-gradient(135deg, #2ed573, #1e90ff);
    color: white;
}

.info-icon.lightning {
    background: linear-gradient(135deg, #ffa502, #ff6348);
    color: white;
}

.info-text {
    font-size: 1.1rem;
    color: #ffffff;
    line-height: 1.6;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.final-text {
    max-width: 800px;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.final-text p {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 1.5rem;
}

.apply-btn {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #1a1a1a;
    border: none;
    padding: 1.4rem 3.5rem;
    font-size: 1.4rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 15px 35px rgba(255, 215, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}

.apply-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;
}

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

.apply-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 
        0 20px 45px rgba(255, 215, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.apply-btn:active {
    transform: translateY(-2px) scale(1.02);
}

/* Контейнер для вопросов квиза */
.quiz-questions {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100vh;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-100px);
}

.quiz-questions.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.question-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.question-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #FFD700;
    margin-bottom: 3rem;
    line-height: 1.3;
}

.options-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    width: 100%;
    margin-bottom: 3rem;
}

.option {
    background: linear-gradient(135deg, #3a3a3a, #2a2a2a);
    border: 2px solid transparent;
    border-radius: 15px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.option::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: left 0.5s ease;
}

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

.option:hover {
    border-color: #FFD700;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.option.selected {
    border-color: #FFD700;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 165, 0, 0.1));
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.option-text {
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: 500;
}

.quiz-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: auto;
}

.progress-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.progress-text {
    color: #FFD700;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.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, #FFD700, #FFA500);
    border-radius: 3px;
    transition: width 0.5s ease;
}

.branding-text {
    color: #888;
    font-size: 0.9rem;
}

.navigation {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-btn {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.back-btn {
    background: rgba(255, 255, 255, 0.1);
    color: #888;
}

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

.next-btn {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #1a1a1a;
    padding: 0.8rem 2rem;
    width: auto;
    font-weight: 600;
    border-radius: 25px;
}

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

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

.enter-hint {
    color: #888;
    font-size: 0.8rem;
    margin-top: 0.5rem;
    text-align: center;
}

/* Анимации */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

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

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

/* Адаптивность */
@media (max-width: 768px) {
    .main-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    .text-capsule {
        padding: 2rem;
        margin: 1.5rem 0;
        border-radius: 20px;
    }
    
    .cta-capsule {
        padding: 1.5rem;
        margin: 1.5rem 0;
        border-radius: 20px;
    }
    
    .content-text p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .start-btn {
        padding: 1rem 2.5rem;
        font-size: 1.1rem;
    }
    
    .question-title {
        font-size: 1.8rem;
    }
    
    .options-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .quiz-footer {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .progress-section {
        align-items: center;
    }
    
    .crypto-title {
        font-size: 2rem;
    }
    
    .congratulations {
        font-size: 2.5rem;
    }
    
    .info-blocks {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 2rem 0;
    }
    
    .info-block {
        padding: 1.5rem;
    }
    
    .info-text {
        font-size: 1rem;
    }
    
    .monitors-setup {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .monitor:nth-child(4) {
        grid-column: 1;
    }
    
    .monitor:nth-child(5) {
        grid-column: 2;
    }

    .enter-hint{
        display: none;
    }

    .option{
        padding: 10px;
    }
    .final-text p{
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2rem;
    }
    
    .text-capsule {
        padding: 1.5rem;
        border-radius: 15px;
    }
    
    .cta-capsule {
        padding: 1.2rem;
        border-radius: 15px;
    }
    
    .content-text p {
        font-size: 0.95rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .start-btn {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }
    
    .congratulations {
        font-size: 2rem;
    }
    
    .info-blocks {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        margin: 1.5rem 0;
    }
    
    .info-block {
        padding: 1.2rem;
        border-radius: 15px;
    }
    
    .info-text {
        font-size: 0.95rem;
    }
    
    .apply-btn {
        padding: 1.2rem 2.5rem;
        font-size: 1.2rem;
    }
}

/* Стили для контактной информации */
.company-info {
    margin: 2rem 0;
    width: 100%;
}

.info-card {
    background: rgba(0, 0, 0, 0.5);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between; 
}

.info-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 2rem;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    gap: 10px;
}

.info-item:hover {
    background: rgba(255, 215, 0, 0.05);
    border-radius: 10px;
    padding-left: 1rem;
    padding-right: 1rem;
}

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

.info-label {
    font-weight: 500;
    color: #ffffff;
    font-size: 1.1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.info-value {
    font-weight: 600;
    color: #FFD700;
    font-size: 1.1rem;
    text-align: right;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Адаптивность для контактной информации */
@media (max-width: 768px) {
    .info-card {
        padding: 1.5rem;
    }
    
    .info-card h3 {
        font-size: 1.3rem;
    }
    
    .info-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .info-value {
        text-align: left;
    }
    .info-card{
        flex-direction: column;
        align-items: start;
    }
    .screen-bg{
        background-image: url(3.jpg);
        background-position: center center;
    }
}

/* Стили для футера */
.site-footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    padding: 3rem 0 1rem;
    margin-top: auto;
    position: relative;
    z-index: 10;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #00ff88;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 255, 136, 0.3);
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.footer-label {
    font-weight: 600;
    color: #00ff88;
    font-size: 1rem;
}

.footer-value {
    color: #b0b0b0;
    font-size: 1rem;
    line-height: 1.4;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-link {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 1.2rem;
}

.footer-link::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #00ff88;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.footer-link:hover {
    color: #00ff88;
    transform: translateX(5px);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-copyright {
    color: #888;
    font-size: 0.9rem;
    margin: 0;
}

/* Стили для куки-окошка */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-top: 2px solid #00ff88;
    padding: 1.5rem 2rem;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
}

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

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

.cookie-text h4 {
    color: #00ff88;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.cookie-text p {
    color: #b0b0b0;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.cookie-link {
    color: #00ff88;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.cookie-link:hover {
    color: #ffffff;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cookie-accept {
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: #1a1a1a;
}

.cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.3);
}

.cookie-decline {
    background: transparent;
    color: #b0b0b0;
    border: 1px solid #444;
}

.cookie-decline:hover {
    background: #444;
    color: #ffffff;
}

.cookie-settings {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #1a1a1a;
}

.cookie-settings:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

/* Стили для модального окна настроек cookie */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

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

.cookie-modal-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-modal-header h3 {
    color: #00ff88;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.cookie-modal-close {
    background: none;
    border: none;
    color: #b0b0b0;
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-modal-close:hover {
    color: #ffffff;
}

.cookie-modal-body {
    padding: 2rem;
}

.cookie-category {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.cookie-category:last-child {
    margin-bottom: 0;
}

.cookie-category-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

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

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

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #444;
    transition: 0.3s;
    border-radius: 24px;
}

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

input:checked + .cookie-slider {
    background-color: #00ff88;
}

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

input:disabled + .cookie-slider {
    background-color: #666;
    cursor: not-allowed;
}

.cookie-category-info h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.cookie-category-info p {
    color: #b0b0b0;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.cookie-modal-footer {
    padding: 1rem 2rem 2rem;
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.cookie-save {
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: #1a1a1a;
}

.cookie-save:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.3);
}

.cookie-accept-all {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #1a1a1a;
}

.cookie-accept-all:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

/* Адаптивность для футера и куки */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .footer-title {
        font-size: 1.2rem;
    }
    
    .cookie-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .cookie-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .cookie-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .cookie-modal-content {
        margin: 1rem;
        max-height: 90vh;
    }
    
    .cookie-modal-header,
    .cookie-modal-body,
    .cookie-modal-footer {
        padding: 1.5rem;
    }
    
    .cookie-modal-footer {
        flex-direction: column;
    }
    
    .cookie-category-header {
        flex-direction: column;
        gap: 0.8rem;
    }
}

@media (max-width: 480px) {
    .site-footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        padding: 0 0.5rem;
    }
    
    .cookie-banner {
        padding: 1rem;
    }
    
    .cookie-text h4 {
        font-size: 1.1rem;
    }
    
    .cookie-text p {
        font-size: 0.9rem;
    }
    
    .cookie-btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
    .content-text p{
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 10px;
    }
    .content-text h5{
        font-size: 12px;
        line-height: 14px;
    }
    .main-title{
        font-size: 45px;
    }
    .text-capsule{
        margin-bottom: 0;
    }
}