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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #e2e8f0;
}

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

header {
    text-align: center;
    margin-bottom: 40px;
    padding: 40px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.fuck-ice-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.middle-finger {
    font-size: 12rem;
    animation: bounce 2s infinite;
    line-height: 1;
    text-shadow: 4px 4px 8px rgba(0,0,0,0.5);
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.3));
}

.fuck-ice-title {
    font-size: 4rem;
    font-weight: 900;
    color: #ff4444;
    text-shadow: 3px 3px 0px #000, -1px -1px 0px #000, 1px -1px 0px #000, -1px 1px 0px #000;
    letter-spacing: 3px;
    margin: 0;
}

header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

header h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: white;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

header .subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.language-toggle {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.lang-btn {
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.3);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
}

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

.lang-btn.active {
    background: white;
    color: #667eea;
    border-color: white;
}

main {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.content {
    display: none;
}

.content.active {
    display: block;
}

.important-notice {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px rgba(238, 90, 36, 0.3);
}

.important-notice h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.important-notice ul {
    list-style: none;
    padding: 0;
}

.important-notice li {
    background: rgba(255,255,255,0.1);
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 8px;
    border-left: 4px solid rgba(255,255,255,0.3);
}

.scenario {
    margin-bottom: 40px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 5px solid #667eea;
}

.scenario h2 {
    color: #667eea;
    margin-bottom: 20px;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.steps {
    display: grid;
    gap: 20px;
}

.step {
    background: white;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #667eea;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.step h3 {
    color: #667eea;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.step p {
    color: #666;
    line-height: 1.5;
}

.rights {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.rights h2 {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.rights p {
    margin-bottom: 15px;
    opacity: 0.9;
}

.rights ul {
    list-style: none;
    padding: 0;
}

.rights li {
    background: rgba(255,255,255,0.1);
    padding: 12px;
    margin-bottom: 8px;
    border-radius: 6px;
    border-left: 4px solid rgba(255,255,255,0.3);
}

.emergency {
    background: linear-gradient(135deg, #ff9800, #f57c00);
    color: white;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
}

.emergency h2 {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.emergency p {
    margin-bottom: 15px;
    opacity: 0.9;
}

.emergency ul {
    list-style: none;
    padding: 0;
}

.emergency li {
    background: rgba(255,255,255,0.1);
    padding: 12px;
    margin-bottom: 8px;
    border-radius: 6px;
    border-left: 4px solid rgba(255,255,255,0.3);
}

.scenario ul {
    list-style: none;
    padding: 0;
}

.scenario li {
    background: white;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 6px;
    border-left: 4px solid #667eea;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

footer {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    color: #666;
}

footer p {
    margin-bottom: 10px;
}

.disclaimer {
    font-style: italic;
    opacity: 0.8;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .container {
        padding: 10px;
    }
    
    .fuck-ice-header {
        flex-direction: column;
        gap: 10px;
    }
    
    .middle-finger {
        font-size: 8rem;
    }
    
    .fuck-ice-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    
    header h1 {
        font-size: 2rem;
    }
    
    header h2 {
        font-size: 1.5rem;
    }
    
    header .subtitle {
        font-size: 1rem;
    }
    
    main {
        padding: 20px;
    }
    
    .important-notice,
    .scenario,
    .rights,
    .emergency {
        padding: 20px;
    }
    
    .step {
        padding: 15px;
    }
    
    .language-toggle {
        flex-direction: column;
        align-items: center;
    }
    
    .lang-btn {
        width: 120px;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 1.8rem;
    }
    
    main {
        padding: 15px;
    }
    
    .important-notice,
    .scenario,
    .rights,
    .emergency {
        padding: 15px;
    }
}