﻿body {
    background-color: #1a1a1a;
    color: #e0e0e0;
    font-family: 'Inter', sans-serif; /* A slightly more modern look */
    margin: 0;
    height: 100vh; /* Lock the height to the viewport */
    display: flex;
    flex-direction: column;
    overflow: hidden; /* Prevents accidental scrolling */
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 1; /* Takes up all available space */
    padding: 20px;
    box-sizing: border-box;
    width: 100%;
}

.main-image {
    max-width: 100%;
    /* This is the magic part: it leaves room for buttons/text */
    max-height: 60vh;
    object-fit: contain; /* Ensures the image isn't distorted */
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.7);
    margin-bottom: 20px;
    border: 1px solid #333;
}

/* The "Solid and Detached" Button Look */
.btn {
    background: #2a2a2a; /* Slightly lighter than the background */
    color: #ffffff;
    padding: 14px 28px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    display: inline-block;
    margin: 8px;
    /* This creates the "detached" depth effect */
    box-shadow: 0 4px 0px #000,
    0 6px 15px rgba(0,0,0,0.4);
    transition: transform 0.1s, box-shadow 0.1s;
}

.btn:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 6px 0px #000,
    0 8px 20px rgba(0,0,0,0.5);
}

.btn:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0px #000;
}

.button-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 10px;
}

input {
    background: #111;
    color: #fff;
    border: 1px solid #333;
    padding: 12px;
    border-radius: 6px;
    outline: none;
    width: 250px;
}