/* --- Global Reset & Page Setup --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    background-color: #000000;
    color: #ffffff;
    overflow-x: hidden; /* Prevent horizontal scroll */

    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* --- Main Container (Fluid & Centered) --- */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    flex-grow: 1; /* This makes the main content fill available space */
}

/* --- Keyframes for the Fade-In Animation --- */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Logo Styling & Animation --- */
.logo {
    width: 100%;
    max-width: 350px;
    height: auto;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeIn 0.8s ease-out 0.2s forwards;
}

/* --- Social Links Container --- */
.social-links {
    display: flex;
    flex-wrap: wrap; /* Wraps buttons on small screens */
    justify-content: center;
    gap: 20px;
}

/* --- Individual Social Button Styling --- */
.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px; /* Large enough for touch targets */
    height: 60px;
    font-size: 26px;
    color: #ffffff;
    border: 2px solid #555555;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;

    opacity: 0;
    animation: fadeIn 0.5s ease-out forwards;
    animation-delay: calc(0.6s + var(--delay) * 0.15s);
}

.social-btn:hover {
    color: #d10000;
    border-color: #d10000;
    transform: scale(1.1);
}

/* --- Footer Styling (UPDATED) --- */
footer {
    flex-shrink: 0;
    padding: 20px;
    text-align: center;
    color: #a0a0a0; /* Softer gray, as seen in the example */
    font-size: 0.8rem; /* Smaller, as requested */
    font-weight: 400; /* Standard weight for "made by" */
}

footer strong {
    font-weight: 700; /* Bolder weight for the names */
    color: #c7c7c7; /* Slightly brighter for the names */
}

/* --- "Copied!" Pop-up Styling --- */
#copy-popup {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #4CAF50; /* Green for success */
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 1rem;
    z-index: 1000;
    opacity: 0; /* Start hidden */
    transition: opacity 0.5s ease;
    pointer-events: none; /* Can't be clicked */
}

#copy-popup.show {
    opacity: 1; /* Fade-in */
}