:root {
    --bg-color: #0b0c10;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --text-main: #f8f9fa;
    --text-muted: #a0aab2;
    --accent-1: #667eea;
    --accent-2: #764ba2;
    --whatsapp-color: #25D366;
    --whatsapp-hover: #1ebd5a;
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

/* Dynamic Background Orbs */
.background-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: float 20s infinite alternate ease-in-out;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    top: -100px;
    left: -100px;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #ff0844, #ffb199);
    bottom: -50px;
    right: -50px;
    animation-delay: -5s;
}

.orb-3 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #13547a, #80d0c7);
    top: 40%;
    left: 60%;
    animation-delay: -10s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
    100% { transform: translate(0, 0) scale(1); }
}

/* Glassmorphism Container */
.glass-container {
    position: relative;
    z-index: 1;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem;
    max-width: 600px;
    width: 90%;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: fadeIn 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    transform: translateY(20px);
    opacity: 0;
}

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

/* Logo Animation (3 Horizontal Rotations) */
.header {
    margin-bottom: 2rem;
    perspective: 1000px; /* For 3D rotation effect */
}

.logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: contain;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    /* The 3 rotations animation */
    animation: rotate3Times 3s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

@keyframes rotate3Times {
    0% {
        transform: rotateY(0deg) scale(0.8);
        opacity: 0;
    }
    10% {
        opacity: 1;
        transform: rotateY(0deg) scale(1);
    }
    100% {
        /* 3 rotations = 3 * 360 = 1080 degrees */
        transform: rotateY(1080deg) scale(1);
        opacity: 1;
    }
}

/* Typography & Content */
.welcome-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #fff, #a0aab2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

.main-text {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.divider {
    height: 1px;
    width: 60%;
    background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
    margin: 2rem auto;
}

.contact-text {
    font-size: 1.05rem;
    color: #cbd5e1;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.gratitude {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-main);
}

/* Links & Buttons */
.link {
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 2px 6px;
    border-radius: 6px;
}

.highlight-link {
    color: #8bb4f7;
    background: rgba(139, 180, 247, 0.0);
}

.highlight-link:hover {
    color: #a8c7fa;
    background: rgba(139, 180, 247, 0.1);
    transform: translateY(-1px);
}

.whatsapp-link {
    color: var(--whatsapp-color);
    background: rgba(37, 211, 102, 0.05);
    padding: 4px 10px;
    border: 1px solid rgba(37, 211, 102, 0.1);
}

.whatsapp-link:hover {
    color: #fff;
    background: var(--whatsapp-hover);
    border-color: var(--whatsapp-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

.whatsapp-icon {
    margin-top: -2px;
}

/* Responsive */
@media (max-width: 480px) {
    .glass-container {
        padding: 2rem;
    }
    .welcome-title {
        font-size: 2rem;
    }
    .main-text {
        font-size: 1rem;
    }
}
