* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #fff0e6;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    padding: 20px;
}

.container {
    max-width: 600px;
}

.logo {
    max-width: 150px;
    margin-bottom: 20px;
}

h1 {
    color: #d82c2c;
    font-size: 2rem;
    margin-bottom: 10px;
}

p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.loader {
    border: 6px solid #f3f3f3;
    border-top: 6px solid #d82c2c;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    margin: 0 auto 20px;
    animation: spin 1s linear infinite;
}

footer {
    font-size: 0.9rem;
    color: #888;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}