:root {
    --primary-color: #ff6b6b;
    --secondary-color: #4ecdc4;
    --dark-color: #2f2f2f;
}

body, html {
    height: 100%;
    margin: 0;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
    background-color: #f7f7f7;
}

.bg-gradient-custom {
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.content-box {
    text-align: center;
    z-index: 10;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

h1 {
    font-family: 'Pacifico', cursive;
    color: var(--primary-color);
    font-size: 4rem;
    margin-bottom: 1rem;
}

h2 {
    font-weight: 900;
    color: var(--dark-color);
    text-transform: uppercase;
    letter-spacing: 5px;
}

p {
    color: #666;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 1.5rem auto;
}

.floating-icon {
    position: absolute;
    font-size: 2rem;
    color: var(--secondary-color);
    opacity: 0.6;
    pointer-events: none;
}

.social-links a {
    font-size: 1.5rem;
    margin: 0 15px;
    color: var(--dark-color);
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color);
    transform: scale(1.2);
}

.cursor-follower {
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 999;
    opacity: 0.3;
    mix-blend-mode: multiply;
}

.click-particle {
    position: fixed;
    width: 10px;
    height: 10px;
    background: var(--secondary-color);
    border-radius: 50%;
    pointer-events: none;
    z-index: 998;
}

#airplane {
    position: absolute;
    font-size: 3rem;
    color: var(--primary-color);
    z-index: 5;
}

.badge-coming {
    background-color: var(--secondary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

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