/* Reset and Base Styles */
* {
    box-sizing: border-box;
}

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
}

body {
    /* Using a dark background to contrast with the white logo frame */
    background: radial-gradient(circle at center, #2d2d2d 0%, #111111 100%);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative; /* For footer positioning */
}

/* Background Canvas */
#background-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* Main Container */
.splash-container {
    text-align: center;
    padding: 20px;
    animation: fadeIn 1.5s ease-in-out;
    position: relative;
    z-index: 1;
}

/* The Circular Frame Logic */
.logo-frame {
    background-color: #ffffff; /* White background as requested */
    width: 200px;              /* Adjust size as needed */
    height: 200px;             /* Must match width for a perfect circle */
    border-radius: 50%;        /* Makes the div circular */
    border: 8px solid rgba(255, 255, 255, 0.1); /* The Frame */
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 2rem auto;  /* Centers the circle and adds bottom spacing */
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.5); /* Adds deeper depth/glow */
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    animation: pulse 3s infinite ease-in-out;
}

.logo-frame:hover {
    transform: scale(1.02);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.6);
}

/* Logo Image Styling */
.logo {
    max-width: 80%;            /* Ensures logo fits comfortably inside the circle */
    height: auto;
    display: block;
}

/* Typography */
h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
    font-weight: 200;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

p {
    font-size: 1.1rem;
    color: #aaaaaa;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.footer {
    position: absolute;
    bottom: 20px;
    font-size: 0.75rem;
    color: #444444;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 1;
}

/* Simple Fade In Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Pulse Animation */
@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 40px rgba(0, 0, 0, 0.5); }
    50% { transform: scale(1.05); box-shadow: 0 0 60px rgba(255, 255, 255, 0.15); }
    100% { transform: scale(1); box-shadow: 0 0 40px rgba(0, 0, 0, 0.5); }
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
    .logo-frame {
        width: 150px;
        height: 150px;
    }
    
    h1 {
        font-size: 1.8rem;
    }
}
