@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Oswald:wght@400;700&family=Black+Ops+One&display=swap');

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

body {
    font-family: 'Oswald', sans-serif;
    background-color: #000;
    color: #fff;
    min-height: 100vh;
    background-image: 
        repeating-linear-gradient(
            45deg,
            #000,
            #000 10px,
            #1a0000 10px,
            #1a0000 20px
        );
    position: relative;
    overflow-x: hidden;
}

/* Штампы секретности */
.top-secret-stamp {
    position: fixed;
    top: 20px;
    right: -50px;
    background: #ff0000;
    color: #000;
    padding: 10px 60px;
    transform: rotate(45deg);
    font-weight: bold;
    font-size: 18px;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(255,0,0,0.5);
    border: 3px solid #ffcc00;
    font-family: 'Black Ops One', cursive;
}

.top-secret-stamp-2 {
    position: fixed;
    top: 20px;
    left: -50px;
    background: #ffcc00;
    color: #000;
    padding: 10px 60px;
    transform: rotate(-45deg);
    font-weight: bold;
    font-size: 18px;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(255,204,0,0.5);
    border: 3px solid #ff0000;
    font-family: 'Black Ops One', cursive;
}

/* Предупреждение о слежке */
.surveillance-warning {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #ff0000;
    color: #000;
    text-align: center;
    padding: 5px;
    font-weight: bold;
    z-index: 999;
    font-size: 14px;
}

.blink {
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

header {
    background: linear-gradient(135deg, #1a0000 0%, #000 50%, #1a0000 100%);
    padding: 40px 0;
    border-bottom: 10px solid #ff0000;
    box-shadow: 0 10px 30px rgba(255,0,0,0.7);
    margin-top: 30px;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 0 20px;
}

.logo {
    width: 120px;
    height: 120px;
    filter: drop-shadow(0 0 20px rgba(255,0,0,0.8));
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Глитч эффект для заголовка */
.glitch {
    font-family: 'Black Ops One', cursive;
    font-size: 96px;
    letter-spacing: 5px;
    color: #ffcc00;
    text-shadow: 
        3px 3px 0 #ff0000,
        -3px -3px 0 #ff0000,
        5px 5px 20px rgba(255,0,0,0.8);
    position: relative;
    animation: glitch 2s infinite;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    animation: glitch-1 0.5s infinite;
    color: #ff0000;
    z-index: -1;
}

.glitch::after {
    animation: glitch-2 0.5s infinite;
    color: #ffcc00;
    z-index: -2;
}

@keyframes glitch {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
}

@keyframes glitch-1 {
    0%, 100% { clip-path: inset(0 0 0 0); }
    25% { clip-path: inset(0 0 50% 0); }
    50% { clip-path: inset(50% 0 0 0); }
    75% { clip-path: inset(0 0 30% 0); }
}

@keyframes glitch-2 {
    0%, 100% { transform: translate(0); }
    25% { transform: translate(3px, -3px); }
    50% { transform: translate(-3px, 3px); }
    75% { transform: translate(3px, 3px); }
}

.subtitle {
    font-size: 32px;
    letter-spacing: 5px;
    color: #ff0000;
    text-shadow: 2px 2px 0 #000, 0 0 10px rgba(255,0,0,0.8);
    font-family: 'Black Ops One', cursive;
}

.motto {
    font-style: italic;
    color: #ffcc00;
    margin-top: 10px;
    font-size: 20px;
    text-shadow: 2px 2px 0 #000;
}

/* Баннер пропаганды */
.propaganda-banner {
    background: #ffcc00;
    color: #000;
    padding: 10px 0;
    font-size: 24px;
    font-weight: bold;
    font-family: 'Black Ops One', cursive;
    border-top: 5px solid #ff0000;
    border-bottom: 5px solid #ff0000;
}

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.recruitment-poster {
    background: linear-gradient(135deg, #1a0000 0%, #000 100%);
    border: 10px solid #ff0000;
    padding: 40px;
    margin-bottom: 40px;
    position: relative;
    box-shadow: 
        0 0 50px rgba(255,0,0,0.8),
        inset 0 0 50px rgba(255,204,0,0.2);
}

/* Полосы опасности */
.danger-stripes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 20px;
    background: repeating-linear-gradient(
        45deg,
        #ffcc00,
        #ffcc00 10px,
        #000 10px,
        #000 20px
    );
}

.recruitment-poster .danger-stripes {
    bottom: auto;
}

.contract-section .danger-stripes {
    top: auto;
    bottom: 0;
}

.poster-title {
    font-family: 'Black Ops One', cursive;
    font-size: 72px;
    text-align: center;
    margin: 40px 0 10px;
    color: #ffcc00;
    text-shadow: 
        5px 5px 0 #ff0000,
        10px 10px 0 #000;
}

.highlight {
    color: #ff0000;
    font-size: 96px;
    display: block;
    animation: pulse-aggressive 1s infinite;
    text-shadow: 
        0 0 20px rgba(255,0,0,0.8),
        0 0 40px rgba(255,0,0,0.6),
        0 0 60px rgba(255,0,0,0.4);
}

@keyframes pulse-aggressive {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.poster-subtitle {
    text-align: center;
    font-size: 32px;
    margin-bottom: 30px;
    color: #ff0000;
    letter-spacing: 3px;
    font-family: 'Black Ops One', cursive;
}

/* Коробка предупреждения */
.warning-box {
    background: #ffcc00;
    color: #000;
    padding: 20px;
    margin: 30px 0;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    border: 5px solid #ff0000;
    animation: flash 2s infinite;
}

@keyframes flash {
    0%, 100% { background: #ffcc00; }
    50% { background: #ff0000; color: #fff; }
}

.benefits, .requirements {
    background: rgba(255,0,0,0.1);
    padding: 30px;
    margin-bottom: 30px;
    border-left: 10px solid #ffcc00;
    border-right: 10px solid #ffcc00;
}

.benefits h3, .requirements h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #ff0000;
    letter-spacing: 2px;
    font-family: 'Black Ops One', cursive;
}

.benefits-list, .requirements-list {
    list-style: none;
}

.benefits-list li, .requirements-list li {
    font-size: 22px;
    margin-bottom: 20px;
    padding-left: 10px;
    position: relative;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.benefits-list li:hover, .requirements-list li:hover {
    transform: translateX(20px);
    color: #ffcc00;
    border-bottom: 2px solid #ff0000;
    text-shadow: 0 0 10px rgba(255,204,0,0.8);
}

.icon {
    font-size: 28px;
    margin-right: 15px;
}

.disclaimer {
    font-size: 14px;
    color: #ffcc00;
    margin-top: 20px;
    text-align: center;
    font-style: italic;
    animation: blink 3s infinite;
}

/* Измеритель угрозы */
.threat-level {
    margin-top: 40px;
    padding: 20px;
    background: #000;
    border: 3px solid #ff0000;
}

.threat-level h3 {
    color: #ffcc00;
    font-size: 28px;
    margin-bottom: 20px;
    font-family: 'Black Ops One', cursive;
}

.threat-meter {
    width: 100%;
    height: 40px;
    background: #1a0000;
    border: 3px solid #ffcc00;
    position: relative;
    overflow: hidden;
}

.threat-bar {
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #ffcc00 0%, #ff0000 50%, #ffcc00 100%);
    animation: threat-pulse 2s ease-in-out infinite;
}

@keyframes threat-pulse {
    0%, 100% { transform: scaleX(0.95); }
    50% { transform: scaleX(1); }
}

.threat-text {
    text-align: center;
    font-size: 24px;
    color: #ff0000;
    margin-top: 10px;
    font-family: 'Black Ops One', cursive;
    animation: flash-text 1s infinite;
}

@keyframes flash-text {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Секция контракта */
.contract-section {
    background: #000;
    border: 10px solid #ff0000;
    padding: 40px;
    position: relative;
    box-shadow: 
        0 0 50px rgba(255,0,0,0.8),
        inset 0 0 50px rgba(255,204,0,0.2);
}

.contract-title {
    font-family: 'Black Ops One', cursive;
    font-size: 56px;
    text-align: center;
    margin: 40px 0 30px;
    color: #ff0000;
    text-shadow: 
        3px 3px 0 #ffcc00,
        6px 6px 0 #000;
}

.contract-intro {
    text-align: center;
    font-size: 20px;
    margin-bottom: 30px;
    line-height: 1.6;
    color: #ffcc00;
    font-weight: bold;
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    font-size: 24px;
    margin-bottom: 10px;
    color: #ff0000;
    letter-spacing: 1px;
    font-family: 'Black Ops One', cursive;
}

.form-group input[type="text"] {
    width: 100%;
    padding: 20px;
    font-size: 20px;
    background: #1a0000;
    border: 4px solid #ffcc00;
    color: #fff;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.form-group input[type="text"]:focus {
    outline: none;
    box-shadow: 0 0 20px rgba(255,0,0,0.8);
    border-color: #ff0000;
}

#signatureCanvas {
    width: 100%;
    height: 200px;
    background: #fff;
    border: 4px solid #ff0000;
    cursor: crosshair;
    display: block;
    margin-bottom: 10px;
    box-shadow: 0 0 20px rgba(255,0,0,0.5);
}

.clear-btn {
    background: #ff0000;
    color: #000;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    cursor: pointer;
    font-family: 'Black Ops One', cursive;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.clear-btn:hover {
    background: #ffcc00;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255,204,0,0.8);
}

.checkbox-group {
    margin: 30px 0;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 18px;
    cursor: pointer;
    color: #ffcc00;
    transition: all 0.3s ease;
}

.checkbox-group label:hover {
    color: #ff0000;
    transform: translateX(10px);
}

.checkbox-group input[type="checkbox"] {
    width: 24px;
    height: 24px;
    margin-right: 15px;
    cursor: pointer;
    accent-color: #ff0000;
}

.submit-btn {
    width: 100%;
    padding: 30px;
    font-family: 'Black Ops One', cursive;
    background: linear-gradient(135deg, #ff0000 0%, #ffcc00 50%, #ff0000 100%);
    color: #000;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.submit-text {
    display: block;
    font-size: 32px;
    letter-spacing: 3px;
}

.submit-subtext {
    display: block;
    font-size: 16px;
    margin-top: 5px;
}

.submit-btn:hover {
    transform: scale(1.05);
    box-shadow: 
        0 10px 40px rgba(255,0,0,0.8),
        0 0 60px rgba(255,204,0,0.6);
}

.submit-btn:active {
    transform: scale(0.95);
}

footer {
    background: #000;
    text-align: center;
    padding: 40px;
    border-top: 10px solid #ff0000;
    color: #ffcc00;
}

footer .small {
    font-size: 14px;
    margin-top: 10px;
    color: #ff0000;
}

footer .tiny {
    font-size: 10px;
    margin-top: 5px;
    color: #666;
}

/* Эффект сканлайнов */
body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            0deg,
            rgba(255,0,0,0.03),
            rgba(255,0,0,0.03) 1px,
            transparent 1px,
            transparent 2px
        );
    pointer-events: none;
    z-index: 1;
}

/* Адаптивность */
@media (max-width: 768px) {
    .glitch {
        font-size: 48px;
    }
    
    .poster-title {
        font-size: 42px;
    }
    
    .highlight {
        font-size: 56px;
    }
    
    .benefits-list li, .requirements-list li {
        font-size: 18px;
    }
    
    .header-content {
        flex-direction: column;
    }
    
    .logo {
        width: 80px;
        height: 80px;
    }
} 