/* Additional Styles for Login Icon */
.login-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.login-icon svg {
    transition: all 0.3s ease-in-out;
}

.login-icon:hover svg {
    stroke: var(--secondary-color);
    transform: scale(1.1);
}

/* Unicorn Studio Background Integration & Luxurious Centered Intro Layout */

.welcome-modal {
    background-color: transparent !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Subtle overlay for better text contrast/readability against the 3D scene */
.welcome-modal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: -1;
    pointer-events: none;
}

/* Container for the centered content */
.welcome-content.centered-intro {
    width: 100%;
    max-width: 800px;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

/* Luxurious Glassmorphism Card - MODIFIED: Removed Border/Box */
.intro-card {
    background: transparent !important;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none !important;
    box-shadow: none !important;
    padding: 3.5rem;
    text-align: center;
    position: relative;
    overflow: visible;
    /* Changed from hidden to visible */
    transition: transform 0.3s ease;
}

.intro-card:hover {
    transform: translateY(-5px);
    /* No border or shadow on hover either */
}

/* Elegant Typography */
.intro-card h3 {
    color: #ffffff !important;
    font-family: 'Oswald', sans-serif;
    font-size: 2.2rem;
    font-weight: 400;
    letter-spacing: 3px;
    margin-bottom: 25px;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Decorative Divider */
.divider-line {
    width: 60px;
    height: 2px;
    background: var(--secondary-color, #64ffda);
    margin: 0 auto 30px;
    box-shadow: 0 0 10px rgba(100, 255, 218, 0.5);
}

.intro-card p {
    color: rgba(255, 255, 255, 0.9) !important;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 40px;
    min-height: 80px;
    /* Preserve space for typing text */
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Refined Button */
#enter-site-btn {
    background: transparent;
    color: var(--secondary-color, #64ffda);
    border: 1px solid var(--secondary-color, #64ffda);
    padding: 12px 35px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 2px;
}

#enter-site-btn:hover {
    background: rgba(100, 255, 218, 0.1);
    box-shadow: 0 0 20px rgba(100, 255, 218, 0.3);
    transform: translateY(-2px);
}

/* Shine effect animation for the card border or background could be added here for extra luxury */

/* Hide Unicorn Studio Badge/Icon */
a[href*="unicorn.studio"] {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

/* NUCLEAR OPTION: Scale the background container to crop out the badge */
/* Zooms in 15% and ensures the content (and badge at the edge) is pushed off-screen */
/* MODIFIED: Slight zoom (105%) to crop out the bottom badge while keeping most content visible */
.unicorn-background {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    /* Centered */
    width: 100% !important;
    height: 100% !important;
    transform: translate(-50%, -50%) scale(1.05) !important;
    /* 105% scale to crop bottom badge */
    transform-origin: center center !important;
    pointer-events: none;
    /* Prevent interacting with the bg */
    object-fit: cover;
}

/* Ensure the zoomed background doesn't create scrollbars */
.welcome-modal {
    background-color: transparent !important;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden !important;
}