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

body {
    min-height: 100vh;
    font-family: 'Arial', sans-serif;
    overflow-x: hidden;
    background: linear-gradient(135deg, #0a0a23 0%, #1a0033 25%, #2d1b69 50%, #0f0f23 75%, #000000 100%);
    color: white;
    cursor: none;
}

.stars-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Enhanced Shooting Stars */
.shooting-stars-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.shooting-star-trail {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1), 0 0 20px rgba(255, 255, 255, 0.3), 0 0 40px rgba(255, 255, 255, 0.2);
    animation: shootingStar 3s linear infinite;
    opacity: 0;
}

.shooting-star-trail::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 300px;
    height: 1px;
    background: linear-gradient(90deg, currentColor, transparent);
}

@keyframes shootingStar {
    0% {
        transform: rotate(-45deg) translateX(0);
        opacity: inherit;
    }
    10% {
        opacity: inherit;
    }
    70% {
        opacity: inherit;
    }
    100% {
        transform: rotate(-45deg) translateX(-1000px);
        opacity: 0;
    }
}

/* Mouse Trail Effect - Back to Original Style */
.mouse-trail {
    position: fixed;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1000;
    opacity: 0;
    animation: trailFade 1s ease-out forwards;
}

@keyframes trailFade {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(0.3);
    }
}

/* Sparkle trail particles - using CSS mask for sparkle shape */
.trail-sparkle {
    position: fixed;
    width: 10px;
    height: 10px;
    pointer-events: none;
    animation: sparkleAnim 1s ease-out forwards;
    z-index: 1000;
    background: currentColor;
    -webkit-mask: 
        linear-gradient(45deg, transparent 40%, #000 50%, transparent 60%),
        linear-gradient(-45deg, transparent 40%, #000 50%, transparent 60%);
    -webkit-mask-composite: intersect;
    mask: 
        linear-gradient(45deg, transparent 40%, #000 50%, transparent 60%),
        linear-gradient(-45deg, transparent 40%, #000 50%, transparent 60%);
    mask-composite: intersect;
}

/* Custom Cursor */
.custom-cursor {
    position: fixed;
    width: 24px;
    height: 24px;
    background: radial-gradient(circle, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0.2) 50%, transparent 70%);
    border: 2px solid rgba(255,255,255,0.6);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1001;
    transition: transform 0.1s ease;
    box-shadow: 0 0 15px rgba(255,255,255,0.3);
}

.star {
    position: absolute;
    border-radius: 50%;
    animation: twinkle 2s infinite alternate;
}

.star.xlarge {
    width: 4px;
    height: 4px;
    animation: twinkle 4s infinite alternate;
}

.star.large {
    width: 3px;
    height: 3px;
    animation: twinkle 3s infinite alternate;
}

.star.medium {
    width: 2px;
    height: 2px;
    animation: twinkle 2.5s infinite alternate;
}

.star.small {
    width: 1.5px;
    height: 1.5px;
    animation: twinkle 1.5s infinite alternate;
}

.star.tiny {
    width: 1px;
    height: 1px;
    animation: twinkle 1s infinite alternate;
}

@keyframes twinkle {
    0% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
    100% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

.content {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.hero {
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #ffd93d, #ff9ff3);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient 4s ease infinite;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.tagline {
    font-size: clamp(1.2rem, 3vw, 2rem);
    margin-bottom: 3rem;
    opacity: 0.9;
    font-weight: 300;
    letter-spacing: 1px;
}

/* Enhanced dropdown positioning */
.dropdowns-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8rem;
    margin-bottom: 3rem;
    width: 100%;
    max-width: 1600px;
    padding: 0 6rem;
    position: relative;
}

.dropdown-container {
    position: relative;
    flex: 0 0 auto;
}

.dropdown-container.left {
    min-width: 220px;
}

.dropdown-container.right {
    min-width: 220px;
}

.dropdown-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    font-weight: 500;
    text-align: center;
}

.dropdown-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease, opacity 0.5s ease;
    margin-top: 1rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 300px;
    z-index: 10;
    opacity: 0;
}

.dropdown-content.show {
    max-height: 300px;
    padding: 1.5rem;
    opacity: 1;
}

.dropdown-item {
    margin-bottom: 1.5rem;
    text-align: center;
}

.dropdown-item:last-child {
    margin-bottom: 0;
}

.dropdown-item h3 {
    color: #ffd93d;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.dropdown-item p {
    opacity: 0.8;
    line-height: 1.5;
    font-size: 1rem;
}

.contact {
    margin-bottom: 2rem;
}

.email-link {
    display: inline-block;
    color: white;
    text-decoration: none;
    padding: 1rem 2.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.email-link:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

footer {
    margin-top: auto;
    padding: 2rem 0;
    text-align: center;
    opacity: 0.6;
    font-size: 0.9rem;
}

.sparkle {
    position: fixed;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    pointer-events: none;
    animation: sparkleAnim 1s ease-out forwards;
    z-index: 1000;
}

@keyframes sparkleAnim {
    0% {
        opacity: 1;
        transform: scale(0) rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: scale(1.5) rotate(180deg);
    }
    100% {
        opacity: 0;
        transform: scale(0) rotate(360deg);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-15px) translateX(10px) rotate(90deg);
    }
    50% {
        transform: translateY(-8px) translateX(-8px) rotate(180deg);
    }
    75% {
        transform: translateY(-20px) translateX(15px) rotate(270deg);
    }
}

@media (max-width: 768px) {
    .content {
        padding: 1rem;
    }
    
    .dropdowns-row {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        padding: 0 1rem;
        max-width: 400px;
    }
    
    .dropdown-container.left,
    .dropdown-container.right {
        margin: 0;
        width: 100%;
        max-width: 300px;
    }
    
    .dropdown-content {
        width: 280px;
    }
    
    .dropdown-item {
        text-align: center;
    }
    
    .dropdown-btn,
    .email-link {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .dropdowns-row {
        padding: 0 0.5rem;
        max-width: 350px;
    }
    
    .dropdown-content {
        width: 260px;
    }
}

@media (min-width: 1200px) {
    .dropdowns-row {
        max-width: 1800px;
        padding: 0 8rem;
        gap: 12rem;
    }
}

@media (min-width: 1400px) {
    .dropdowns-row {
        max-width: 2000px;
        padding: 0 10rem;
        gap: 16rem;
    }
}