* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

body {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d0a0a 100%);
    color: #ffffff;
    font-family: Arial, sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    cursor: none;
    /* Hide scrollbar for IE, Edge and Firefox */
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Hide scrollbar for Chrome, Safari and Opera */
body::-webkit-scrollbar {
    display: none;
}

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

.header {
    text-align: center;
    padding: 40px 0 30px;
    border-bottom: 3px solid #cc0000;
}

.lock-icon {
    font-size: 80px;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

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

.header h1 {
    color: #ff3333;
    font-size: 2.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.content {
    padding: 30px 0;
}

.warning-box {
    background: rgba(255, 51, 51, 0.1);
    border: 2px solid #cc0000;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 30px;
}

.warning-box h2 {
    color: #ff3333;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.warning-box p {
    line-height: 1.6;
    margin-bottom: 10px;
}

.timer-section {
    text-align: center;
    margin-bottom: 30px;
    background: rgba(0, 0, 0, 0.3);
    padding: 30px;
    border-radius: 10px;
}

.timer-section h2 {
    color: #ff3333;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.time-block {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time-value {
    background: #cc0000;
    color: white;
    font-size: 3rem;
    font-weight: bold;
    padding: 15px 25px;
    border-radius: 8px;
    min-width: 100px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.time-label {
    margin-top: 8px;
    font-size: 0.9rem;
    color: #ccc;
}

.time-separator {
    font-size: 3rem;
    color: #ff3333;
    font-weight: bold;
}

.payment-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.payment-section h2 {
    color: #ff9933;
    margin-bottom: 15px;
}

.payment-section ol {
    margin-left: 20px;
    line-height: 2;
}

.bitcoin-address {
    background: #000;
    padding: 8px 12px;
    border-radius: 5px;
    font-family: 'Courier New', monospace;
    color: #00ff00;
    display: inline-block;
    margin: 5px 0;
    word-break: break-all;
}

.price-info {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #555;
}

.price-warning {
    color: #ff3333;
    font-weight: bold;
    margin-top: 10px;
}

.warning-section {
    background: rgba(204, 0, 0, 0.2);
    border: 2px solid #cc0000;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.warning-section h2 {
    color: #ff3333;
    margin-bottom: 15px;
    text-align: center;
}

.warning-section ul {
    margin-left: 20px;
    line-height: 2;
}

.support-section {
    text-align: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

.contact-email {
    color: #00ccff;
    font-family: 'Courier New', monospace;
}

.victim-id {
    margin-top: 15px;
    color: #999;
}

.id-code {
    font-family: 'Courier New', monospace;
    color: #ff9933;
    font-weight: bold;
}

@media (max-width: 768px) {
    .header h1 {
        font-size: 1.8rem;
    }
    
    .time-value {
        font-size: 2rem;
        padding: 10px 15px;
        min-width: 70px;
    }
    
    .time-separator {
        font-size: 2rem;
    }
}
