* {
    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: #000;
    color: #00ff00;
    font-family: 'Courier New', Courier, monospace;
    min-height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    cursor: none;
    position: relative;
    /* 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;
}

.matrix-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.breach-container {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.glitch-wrapper {
    text-align: center;
    margin-bottom: 30px;
}

.skull-animation {
    font-size: 100px;
    animation: rotate 3s linear infinite, colorChange 1s infinite;
    display: inline-block;
    margin: 20px 0;
}

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

@keyframes colorChange {
    0%, 100% { filter: hue-rotate(0deg); }
    50% { filter: hue-rotate(180deg); }
}

.glitch {
    font-size: 4rem;
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
    color: #ff0000;
    text-shadow: 
        2px 2px #00ff00,
        -2px -2px #0000ff;
    animation: glitch 1s infinite;
}

@keyframes glitch {
    0% {
        text-shadow: 2px 2px #00ff00, -2px -2px #0000ff;
    }
    25% {
        text-shadow: -2px -2px #00ff00, 2px 2px #0000ff;
    }
    50% {
        text-shadow: 2px -2px #00ff00, -2px 2px #0000ff;
    }
    75% {
        text-shadow: -2px 2px #00ff00, 2px -2px #0000ff;
    }
    100% {
        text-shadow: 2px 2px #00ff00, -2px -2px #0000ff;
    }
}

.alert-box {
    background: rgba(0, 0, 0, 0.9);
    border: 3px solid #ff0000;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 0 50px rgba(255, 0, 0, 0.5);
}

.alert-header {
    text-align: center;
    font-size: 2rem;
    color: #ff0000;
    margin-bottom: 20px;
}

.blink {
    animation: blink 0.5s infinite;
}

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

.breach-message {
    background: rgba(255, 0, 0, 0.1);
    border-left: 4px solid #ff0000;
    padding: 20px;
    margin: 20px 0;
    min-height: 100px;
}

.typing-effect {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #00ff00;
}

.threat-level {
    margin: 30px 0;
    text-align: center;
}

.threat-label {
    color: #ff0000;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.threat-bar {
    background: #333;
    height: 40px;
    border-radius: 20px;
    overflow: hidden;
    margin: 10px 0;
    border: 2px solid #ff0000;
}

.threat-fill {
    background: linear-gradient(90deg, #ff0000, #ff6600, #ff0000);
    height: 100%;
    width: 0%;
    animation: fillThreat 3s ease-in-out forwards;
}

@keyframes fillThreat {
    to { width: 100%; }
}

.threat-text {
    color: #ff0000;
    font-size: 2rem;
    font-weight: bold;
    animation: pulse 1s infinite;
}

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

.system-status {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 30px 0;
}

.status-item {
    background: rgba(0, 255, 0, 0.1);
    padding: 15px;
    border: 1px solid #00ff00;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
}

.status-label {
    color: #00ff00;
}

.status-value.disabled {
    color: #ff0000;
    font-weight: bold;
}

.status-value.active {
    color: #ff6600;
    font-weight: bold;
    animation: blink 1s infinite;
}

.hacker-message {
    background: rgba(255, 0, 0, 0.1);
    border: 2px solid #ff0000;
    padding: 25px;
    margin: 30px 0;
    border-radius: 10px;
}

.hacker-message h2 {
    color: #ff0000;
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.hacker-text {
    color: #00ff00;
    line-height: 1.8;
    font-size: 1.1rem;
}

.amount {
    color: #ffff00;
    font-size: 1.3rem;
    font-weight: bold;
}

.wallet {
    color: #00ffff;
    background: #000;
    padding: 5px 10px;
    border-radius: 5px;
    display: inline-block;
}

.countdown-text {
    color: #ff0000;
    font-size: 1.3rem;
    font-weight: bold;
}

.dramatic {
    color: #ff0000;
    font-weight: bold;
    font-size: 1.2rem;
}

.access-denied {
    margin-top: 30px;
    text-align: center;
}

.denied-text {
    font-size: 3rem;
    color: #ff0000;
    font-weight: bold;
    opacity: 0;
    animation: fadeInOut 2s infinite;
}

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

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

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

@media (max-width: 768px) {
    .glitch {
        font-size: 2rem;
    }
    
    .skull-animation {
        font-size: 60px;
    }
    
    .system-status {
        grid-template-columns: 1fr;
    }
    
    .denied-text {
        font-size: 2rem;
    }
}
