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

body {
    font-family: 'Courier New', Courier, monospace; /* Terminal-like font */
    background-color: #000; /* Black background for a sleek, tech look */
    color: #f1f1f1;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 80%;
    margin: auto;
}

.logo {
    width: 450px; /* Increased logo size to 3 times larger */
    margin-bottom: 40px;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #e74c3c; /* Light red for heading */
    letter-spacing: 2px;
}

p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #bdc3c7;
}

.loader {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.spinner {
    border: 6px solid rgba(255, 255, 255, 0.1);
    border-left-color: #e74c3c; /* Red color for the spinner */
    border-radius: 50%;
    width: 80px;
    height: 80px;
    animation: rotate 1.2s linear infinite;
    box-shadow: 0 0 20px rgba(231, 76, 60, 0.6); /* Red glow effect */
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    p {
        font-size: 1rem;
    }

    .logo {
        width: 300px; /* Smaller logo size for mobile */
    }

    .spinner {
        width: 60px;
        height: 60px;
    }
}
