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

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 25%, #16213e 50%, #0f3460 75%, #533483 100%);
    overflow: hidden;
    height: 100vh;
    color: #ffffff;
}

.container {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

/* Particles Background */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.particle {
    position: absolute;
    background: radial-gradient(circle, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0.1) 80%, transparent 100%);
    border-radius: 50%;
    pointer-events: none;
    transition: transform 0.1s ease-out;
    box-shadow: 0 0 8px rgba(255,255,255,0.3);
    backdrop-filter: blur(1px);
}

/* Remove the float animation since we're using physics now */

/* Geometric Shapes */
.geometric-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.shape {
    position: absolute;
    border: 2px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(45deg, rgba(255,255,255,0.05), rgba(255,255,255,0.1));
    backdrop-filter: blur(10px);
    border-radius: 50%;
    animation: morph 8s ease-in-out infinite;
}

.shape-1 {
    width: 120px;
    height: 120px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 80px;
    height: 80px;
    top: 60%;
    right: 15%;
    animation-delay: 1.5s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: 3s;
}

.shape-4 {
    width: 60px;
    height: 60px;
    top: 30%;
    right: 30%;
    animation-delay: 4.5s;
}

.shape-5 {
    width: 90px;
    height: 90px;
    bottom: 40%;
    right: 10%;
    animation-delay: 6s;
}

@keyframes morph {
    0%, 100% {
        border-radius: 50%;
        transform: rotate(0deg) scale(1);
        background: linear-gradient(45deg, rgba(255,255,255,0.05), rgba(255,255,255,0.1));
    }
    25% {
        border-radius: 30%;
        transform: rotate(90deg) scale(1.1);
        background: linear-gradient(45deg, rgba(100,200,255,0.1), rgba(255,100,200,0.1));
    }
    50% {
        border-radius: 10%;
        transform: rotate(180deg) scale(0.9);
        background: linear-gradient(45deg, rgba(200,255,100,0.1), rgba(255,200,100,0.1));
    }
    75% {
        border-radius: 40%;
        transform: rotate(270deg) scale(1.05);
        background: linear-gradient(45deg, rgba(255,100,255,0.1), rgba(100,255,255,0.1));
    }
}

/* Wave Animations */
.waves {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 100px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    border-radius: 50% 50% 0 0;
    animation: waveMove 10s linear infinite;
}

.wave-1 {
    animation-delay: 0s;
    opacity: 0.3;
    height: 80px;
}

.wave-2 {
    animation-delay: 2s;
    opacity: 0.2;
    height: 60px;
}

.wave-3 {
    animation-delay: 4s;
    opacity: 0.1;
    height: 40px;
}

@keyframes waveMove {
    0% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(0%) translateY(-10px); }
    100% { transform: translateX(-50%) translateY(0); }
}

/* Orbiting Elements */
.orbit-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
}

.center-orb {
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, #ffffff, #64b5f6);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(100, 181, 246, 0.8);
    animation: pulse 3s ease-in-out infinite;
}

.orbiting-element {
    position: absolute;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, #ffffff, #81c784);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(129, 199, 132, 0.6);
}

.orb-1 {
    animation: orbit 8s linear infinite;
    top: -40px;
    left: -4px;
}

.orb-2 {
    animation: orbit 8s linear infinite reverse;
    top: -4px;
    right: -40px;
}

.orb-3 {
    animation: orbit 8s linear infinite;
    bottom: -40px;
    left: -4px;
}

@keyframes orbit {
    0% { transform: rotate(0deg) translateX(40px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(40px) rotate(-360deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

/* Main Content */
.content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    pointer-events: none;
}

/* Interactive Area */
.interactive-area {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 6;
    pointer-events: auto;
}

/* Gradient Overlay */
.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, rgba(100, 181, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 70%, rgba(129, 199, 132, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(255, 183, 77, 0.05) 0%, transparent 50%);
    z-index: 7;
    pointer-events: none;
}

/* Burger Menu */
.burger-menu {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    pointer-events: auto;
}

.burger-icon {
    width: 30px;
    height: 30px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.burger-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.burger-icon span {
    width: 20px;
    height: 2px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 1px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.burger-icon.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger-icon.active span:nth-child(2) {
    opacity: 0;
}

.burger-icon.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.menu-content {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 8px;
    padding: 8px 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    min-width: 120px;
}

.menu-content.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.menu-link {
    display: block;
    padding: 10px 16px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
    border-radius: 4px;
    margin: 0 4px;
}

.menu-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 1);
    transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .shape-1, .shape-2, .shape-3, .shape-4, .shape-5 {
        width: 60px;
        height: 60px;
    }
}
