:root {
    --bg-color: #05050A;
    --text-color: #E0E0E0;
    --primary-color: #6C63FF;
    --secondary-color: #00D2FF;
    --accent-color: #FF2E93;
    --font-main: 'Outfit', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow: hidden;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Background Effects */
.background-globes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.globe {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
}

.globe-1 {
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--primary-color), transparent);
    top: -200px;
    left: -200px;
    animation: float 30s infinite alternate;
}

.globe-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--secondary-color), transparent);
    bottom: -150px;
    right: -150px;
    animation: float 35s infinite alternate-reverse;
}

@keyframes float {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

/* Header */
.minimal-header {
    position: absolute;
    top: 2rem;
    left: 2rem;
    z-index: 10;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    height: 32px;
    width: auto;
}

.logo-text {
    font-weight: 600;
    font-size: 1.2rem;
    letter-spacing: 0.5px;
    color: #fff;
    opacity: 0.9;
}

/* Main Content */
.content-wrapper {
    text-align: center;
    padding: 0 2rem;
    max-width: 900px;
    z-index: 1;
}

.quote {
    font-size: clamp(2rem, 5vw, 4.5rem);
    /* Responsive font size */
    font-weight: 300;
    line-height: 1.2;
    background: linear-gradient(135deg, #fff, #a0a0a0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    /* Start hidden for animation */
}

/* Contact Link */
.contact-link {
    display: inline-block;
    margin-top: 2rem;
    font-size: 1.1rem;
    color: var(--secondary-color);
    /* Make it distinct */
    text-decoration: underline;
    /* Standard link styling */
    text-underline-offset: 4px;
    opacity: 0;
    transition: color 0.3s ease, transform 0.3s ease;
}

.contact-link:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.delay-1 {
    animation-delay: 0.6s;
}

/* Animations */
.fade-in-up {
    animation: fadeInUp 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: 0.3s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .minimal-header {
        top: 1.5rem;
        left: 1.5rem;
    }
}