/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000; /* Deep Black */
    color: #fff;
    font-family: 'Inter', sans-serif;
    height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Navbar */
.navbar {
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 40px;
}

.logo {
    max-height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

/* Main Content */
.content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.hero-text h2 {
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 6px;
    color: #666;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-text h1 {
    font-size: clamp(2rem, 8vw, 4.5rem);
    font-weight: 200;
    letter-spacing: -2px;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-text p {
    color: #999;
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 30px;
}

.divider {
    width: 40px;
    height: 1px;
    background: #444;
    margin: 0 auto 30px auto;
}

.url-link {
    color: #fff;
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 2px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.url-link:hover {
    opacity: 1;
}

/* Animations */
.fade-in {
    opacity: 0;
    animation: fadeInUp 1.5s forwards;
}

.delay { animation-delay: 0.5s; }
.delay-long { animation-delay: 1s; }

@keyframes fadeInUp {
    from { 
        opacity: 0; 
        transform: translateY(30px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

/* Footer */
.footer {
    padding: 30px;
    text-align: center;
    font-size: 0.7rem;
    color: #333;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Responsiveness */
@media (max-width: 768px) {
    .navbar { height: 100px; }
    .logo { max-height: 45px; }
}