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

html, body {
    height: 100%;
    width: 100%;
    overflow: hidden;
    /* Font family still needed for subtitle */
    font-family: 'Poppins', sans-serif;
}

body {
    /* --- SET YOUR STATIC BACKGROUND IMAGE HERE --- */
    background-image: url('images/roland_charley_sergey_ichiro_and_itsuki_original_and_1_more_drawn_by_sky_guy_art__29a13ff3bb7d78d7c4707a8b62855049.jpg');

    background-color: #f4f4f4;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;

    color: #333333;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    perspective: 1000px;
    position: relative;
}

/* Animated Overlay */
#animated-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    background-image:
        radial-gradient(rgba(255, 165, 0, 0.1) 1px, transparent 1px),
        radial-gradient(rgba(255, 165, 0, 0.05) 1px, transparent 1px);
    background-size: 40px 40px, 60px 60px;
    background-position: 0 0, 30px 30px;
    animation: moveParticles 20s linear infinite;
    opacity: 0.6;
}

@keyframes moveParticles {
    from { background-position: 0 0, 30px 30px; }
    to { background-position: 400px 400px, 420px 420px; }
}


.container {
    position: relative;
    z-index: 1;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    border-radius: 30px;
    padding: 50px 40px; /* Adjusted padding slightly */
    max-width: 80%;
    /* max-width: 700px; */
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* --- STYLES FOR THE TITLE IMAGE --- */
.title-image {
    display: block; /* Allows margin auto for centering */
    margin: 0 auto; /* Horizontal centering */
    margin-top: 80px; /* Space above the image (below eyes) - ADJUST AS NEEDED */
    margin-bottom: 20px; /* Space below the image (above subtitle) - ADJUST AS NEEDED */
    max-width: 90%; /* Max width relative to container */
    /* Optional: Set a fixed max-width */
    /* max-width: 450px; */
    height: auto; /* Maintain aspect ratio */
    /* Optional: Add a subtle effect if desired */
    /* filter: drop-shadow(0 2px 5px rgba(0,0,0,0.2)); */
}

/* --- REMOVED .title (h1) styles like font-size, color, text-shadow, animation --- */
/* --- REMOVED @keyframes titleGlowOrange --- */


.subtitle {
    font-size: clamp(0.9rem, 2vw, 1.3rem);
    color: #555555;
    /* Removed margin-top, spacing now controlled by image margin-bottom */
    font-weight: 400; /* Need to re-import Poppins if using weight 400 */
    letter-spacing: 1px;
}

/* --- FILE HOST BUTTON STYLES --- */
.file-host-button {
    /* Positioning */
    position: fixed; /* Keep it in the viewport */
    bottom: 20px;    /* 20px from the bottom */
    left: 20px;      /* 20px from the left */
    z-index: 1000;   /* Ensure it sits above other content */

    /* Appearance */
    display: inline-block;
    padding: 12px 20px;
    
    /* Rounded corners */
    border-radius: 25px; 
    
    background-color: #ff99cc; /* A soft pink/femboy accent color */
    color: #333; /* Dark text for contrast */
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    
    /* Animation/Hover */
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.file-host-button:hover {
    background-color: #ffb3e0; /* Slightly lighter on hover */
    transform: translateY(-2px); /* Lift button slightly on hover */
}


.eyes-container {
    display: flex;
    justify-content: center;
    gap: 50px;
    /* margin-bottom needs adjustment based on image margin-top */
    margin-bottom: -50px; /* Keep overlap relative to container top */
    position: relative;
    z-index: 2;
    margin-top: -85px;
}

.eye {
    width: 90px;
    height: 90px;
    background: #ffffff;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    border: 5px solid #444444;
    box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.2), 0 0 10px rgba(0, 0, 0, 0.1);
}

.pupil {
    width: 35px;
    height: 35px;
    background: #222222;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 3px solid #000;
    transition: transform 0.1s linear;
}


.container:hover .eye {
    border-color: #FFA500;
    transition: border-color 0.3s ease;
}