:root {
    --primary: #ff4757;
    --secondary: #747d8c;
    --bg-dark: #0f0f0f;
    --text-glass: rgba(255, 255, 255, 0.9);
    --glass-bg: rgba(255, 255, 255, 0.1);
}

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

body {
    background-color: var(--bg-dark);
    color: white;
    font-family: 'Outfit', sans-serif;
    overflow: hidden;
    height: 100vh;
    width: 100vw;
}

/* Intro Screen */
#intro-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, #1a1a1a, #000);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: opacity 0.8s ease, visibility 0.8s;
}

.intro-content {
    text-align: center;
    background: var(--glass-bg);
    padding: 3rem;
    border-radius: 24px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

#start-button {
    background: var(--primary);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s;
    margin-top: 2rem;
}

#start-button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px var(--primary);
}

/* Main Content */
.hidden {
    opacity: 0;
    visibility: hidden;
}

#main-content {
    position: relative;
    width: 100%;
    height: 100%;
    transition: opacity 1s ease;
}

.overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-align: center;
    pointer-events: none;
}

.overlay-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
    background: linear-gradient(45deg, #ff4757, #ff6b81, #ffa502);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.05); opacity: 1; }
}

/* Floating Images */
.floating-img {
    position: absolute;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.5s ease-out;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.2);
}
