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

body {
    background-color: #1a0505;
    color: #fcebeb;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    overflow-x: hidden;
}

.container {
    max-width: 800px;
    padding: 2rem;
    background: linear-gradient(145deg, #4a0d0d, #8b0000);
    border: 4px solid #ff4500;
    border-radius: 15px;
    box-shadow: 0 0 20px #ff4500;
}

header h1 {
    font-size: 3rem;
    color: #ffcc00;
    text-shadow: 2px 2px 5px #000;
    margin-bottom: 0.5rem;
}

header p {
    font-style: italic;
    color: #ffa07a;
    margin-bottom: 2rem;
}

.image-container img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 0 15px #ff4500);
    transition: transform 0.3s ease;
}

.image-container img:hover {
    transform: scale(1.05);
}

.content h2 {
    font-size: 2rem;
    margin: 1.5rem 0 1rem;
    color: #ff6347;
}

.content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

button {
    background-color: #ff4500;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 5px 10px rgba(0,0,0,0.5);
    transition: background-color 0.2s, transform 0.1s;
}

button:hover {
    background-color: #e63e00;
}

button:active {
    transform: translateY(2px);
    box-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

footer {
    margin-top: 3rem;
    font-size: 0.9rem;
    color: #a9a9a9;
}

/* Earthquake Animation */
.shake {
    animation: shake 0.5s cubic-bezier(.36,.07,.19,.97) both;
}

@keyframes shake {
    10%, 90% { transform: translate3d(-2px, 2px, 0); }
    20%, 80% { transform: translate3d(4px, -4px, 0); }
    30%, 50%, 70% { transform: translate3d(-8px, 6px, 0); }
    40%, 60% { transform: translate3d(8px, -6px, 0); }
}