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

html, body {
    height: 100%;
    font-family: 'Inter', sans-serif;
    overflow: hidden;
}

body {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.1) 0%, transparent 50%);
    animation: gradientShift 8s ease-in-out infinite;
}

.container {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.content {
    text-align: center;
    animation: fadeInUp 1.5s ease-out;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: clamp(4rem, 12vw, 8rem);
    font-weight: 300;
    color: white;
    letter-spacing: 0.3em;
    margin-bottom: 1rem;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    animation: letterSpacing 3s ease-in-out infinite alternate;
    position: relative;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    animation: lineGlow 2s ease-in-out infinite alternate;
}

.subtitle {
    font-size: clamp(1rem, 3vw, 1.5rem);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    letter-spacing: 0.2em;
    margin-bottom: 3rem;
    animation: subtitleFade 2s ease-out 0.5s both;
}

.address {
    font-size: clamp(0.9rem, 2.5vw, 1.2rem);
    color: rgba(255, 255, 255, 0.8);
    font-weight: 200;
    letter-spacing: 0.1em;
    line-height: 1.6;
    animation: addressSlide 2s ease-out 1s both;
}

.address p {
    margin: 0.3rem 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes letterSpacing {
    0% {
        letter-spacing: 0.3em;
    }
    100% {
        letter-spacing: 0.4em;
    }
}

@keyframes lineGlow {
    0% {
        opacity: 0.5;
        width: 60%;
    }
    100% {
        opacity: 1;
        width: 80%;
    }
}

@keyframes subtitleFade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 0.9;
        transform: translateY(0);
    }
}

@keyframes addressSlide {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 0.8;
        transform: translateY(0);
    }
}

@keyframes gradientShift {
    0%, 100% {
        background: 
            radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.15) 0%, transparent 50%),
            radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.1) 0%, transparent 50%);
    }
    50% {
        background: 
            radial-gradient(circle at 80% 20%, rgba(120, 119, 198, 0.2) 0%, transparent 50%),
            radial-gradient(circle at 20% 80%, rgba(255, 119, 198, 0.2) 0%, transparent 50%),
            radial-gradient(circle at 60% 60%, rgba(120, 219, 255, 0.15) 0%, transparent 50%);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo {
        letter-spacing: 0.2em;
        margin-bottom: 0.5rem;
    }
    
    .subtitle {
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .content {
        padding: 0 1rem;
    }
    
    .logo {
        letter-spacing: 0.15em;
    }
    
    .address {
        font-size: 1rem;
    }
}