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

/* Base Styles */
body {
    background-color: #ff0000; /* Pure Red */
    color: #000000; /* Black Text */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 40px 20px;
}

/* Layout Container */
.container {
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Logo Styling */
.logo {
    width: 100%;        /* Allows image to scale down on small screens */
    max-width: 500px;   /* Your desired maximum size for the logo */
    height: auto !important; /* Forces aspect ratio preservation */
    display: block;
    border: 4px solid #000000;
    margin-bottom: 25px;
}

/* Heading */
h1 {
    font-size: 1.8rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

/* Link Group */
.links {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Button Styling */
.link-btn {
    display: block;
    width: 100%;
    padding: 16px;
    color: #000000;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    border: 3px solid #000000;
    transition: all 0.2s ease;
    background: transparent;
}

/* Hover Effects */
.link-btn:hover {
    background-color: #000000;
    color: #ff0000;
}

/* Active State */
.link-btn:active {
    transform: scale(0.97);
}

/* Responsive Font Adjustment */
@media (max-width: 480px) {
    h1 {
        font-size: 1.5rem;
    }
    
    .logo {
        width: 100px;
        height: 100px;
    }
}
