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

:root {
    --neon-pink: #FF006E;
    --neon-magenta: #FF10F0;
    --hot-pink: #FF44FF;
    --electric-blue: #00FFFF;
    --neon-yellow: #FFFF00;
    --deep-purple: #8B00FF;
    --white: #FFFFFF;
    --off-white: #F8F8F8;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--white);
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 40px,
            var(--neon-magenta) 40px,
            var(--neon-magenta) 41px
        );
    background-size: 100px 100px;
    background-position: 0 0;
    color: var(--neon-pink);
    overflow: hidden;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    z-index: 1;
    pointer-events: none;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(255, 0, 110, 0.1) 2px, rgba(255, 0, 110, 0.1) 4px);
}

.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 16, 240, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 0, 110, 0.1) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.circular-container {
    position: relative;
    width: 600px;
    height: 600px;
    z-index: 2;
}

.center-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border: 5px solid var(--neon-magenta);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 
        0 0 30px var(--neon-magenta),
        inset 0 0 30px var(--neon-magenta),
        inset 0 0 50px rgba(255, 16, 240, 0.5);
    overflow: hidden;
}

.logo {
    width: 80%;
    height: 80%;
    object-fit: contain;
}

.circular-text-container {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 250px;
    height: 250px;
    margin-top: -125px;
    margin-left: -125px;
    animation: rotate 10s linear infinite;
    z-index: 11;
}

.circular-text-container svg {
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 50px;
    animation: wobble 1s ease-in-out infinite;
}

@keyframes wobble {
    0%, 100% {
        transform: translateX(-50%) translateY(0) rotate(0deg);
    }
    25% {
        transform: translateX(-50%) translateY(-1px) rotate(-1deg);
    }
    75% {
        transform: translateX(-50%) translateY(1px) rotate(1deg);
    }
}

.circular-text-container text {
    fill: var(--hot-pink);
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

.orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 2px dashed rgba(255, 16, 240, 0.2);
    border-radius: 50%;
    animation: rotate 30s linear infinite;
}

.orbit-1 {
    width: 300px;
    height: 300px;
    margin-top: -150px;
    margin-left: -150px;
}

.orbit-2 {
    width: 450px;
    height: 450px;
    margin-top: -225px;
    margin-left: -225px;
    animation-direction: reverse;
    animation-duration: 40s;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.orbital-item {
    position: absolute;
    width: 80px;
    height: 80px;
    background: transparent;
    border: 3px solid var(--neon-magenta);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    animation: counter-rotate 30s linear infinite;
    transition: all 0.3s ease;
}

.orbital-item:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px var(--neon-magenta);
}

.orbital-item.year {
    top: -40px;
    left: 50%;
    margin-left: -40px;
    color: var(--neon-magenta);
}

.orbital-item.social {
    width: 60px;
    height: 60px;
}

.orbital-item.instagram {
    top: 50%;
    right: -30px;
    margin-top: -30px;
}

.orbital-item.twitter {
    bottom: -30px;
    left: 50%;
    margin-left: -30px;
}

.orbital-item.spotify {
    top: 50%;
    left: -30px;
    margin-top: -30px;
}

@keyframes counter-rotate {
    from { transform: rotate(360deg); }
    to { transform: rotate(0deg); }
}

.social-icon {
    color: var(--neon-magenta);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon:hover {
    color: var(--hot-pink);
}

.social-icon svg {
    width: 24px;
    height: 24px;
}

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

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(20px);
    opacity: 0.3;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--neon-magenta), transparent);
    top: -200px;
    left: -200px;
    animation-duration: 25s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--neon-magenta), transparent);
    bottom: -150px;
    right: -150px;
    animation-duration: 30s;
    animation-delay: -5s;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, var(--neon-yellow), transparent);
    top: 50%;
    right: 10%;
    animation-duration: 35s;
    animation-delay: -10s;
}

.shape-4 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, var(--hot-pink), transparent);
    bottom: 20%;
    left: 5%;
    animation-duration: 40s;
    animation-delay: -15s;
}

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

@media (max-width: 768px) {
    body {
        background-size: 80px 80px;
    }
    
    .circular-container { 
        width: 400px; 
        height: 400px; 
    }
    
    .center-circle { 
        width: 150px; 
        height: 150px; 
    }
    
    .logo {
        width: 80%;
        height: 80%;
    }
    
    .circular-text-container {
        width: 180px;
        height: 180px;
        margin-top: -90px;
        margin-left: -90px;
    }
    
    .circular-text-container svg {
        width: 110px;
        height: 40px;
    }
    
    .circular-text-container text {
        font-size: 13px;
    }
    
    .orbit-1 { 
        width: 250px; 
        height: 250px; 
        margin-top: -125px; 
        margin-left: -125px; 
    }
    
    .orbit-2 { 
        width: 350px; 
        height: 350px; 
        margin-top: -175px; 
        margin-left: -175px; 
    }
    
    .orbital-item { 
        width: 60px; 
        height: 60px; 
        font-size: 0.6rem; 
    }
    
    .orbital-item.social { 
        width: 50px; 
        height: 50px; 
    }
    
    .shape {
        filter: blur(30px);
    }
}