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

:root {
    --primary: #00f0ff;
    --secondary: #ff00ff;
    --accent: #ffff00;
    --dark: #0a0a0f;
    --darker: #050508;
    --light: #e0e0e8;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    background: var(--dark);
    color: var(--light);
    overflow-x: hidden;
    min-height: 100svh;
    position: relative;
    padding-bottom: env(safe-area-inset-bottom);
}

/* Animated Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(247, 83, 148, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(0, 240, 255, 0.15) 0%, transparent 50%);
    animation: gradientShift 15s ease infinite;
    z-index: 0;
}

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

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

.container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Hero Section */
.hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 3rem 0;
    min-height: 50vh;
}

.glitch-wrapper {
    position: relative;
    padding: 0.5rem 1rem;
}

.title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(3rem, 12vw, 8rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientFlow 8s ease infinite;
    position: relative;
    text-transform: uppercase;
    margin-bottom: 1rem;
    line-height: 1.1;
    padding: 0.2em 0;
}

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

.title::before,
.title::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.title:hover::before {
    animation: glitch-1 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) both infinite;
    color: var(--primary);
    z-index: -1;
}

.title:hover::after {
    animation: glitch-2 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) reverse both infinite;
    color: var(--secondary);
    z-index: -2;
}

@keyframes glitch-1 {
    0%, 100% { transform: translate(0); opacity: 0.8; }
    33% { transform: translate(-2px, 2px); opacity: 0.8; }
    66% { transform: translate(2px, -2px); opacity: 0.8; }
}

@keyframes glitch-2 {
    0%, 100% { transform: translate(0); opacity: 0.8; }
    33% { transform: translate(2px, -2px); opacity: 0.8; }
    66% { transform: translate(-2px, 2px); opacity: 0.8; }
}

.tagline {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--light);
    margin-top: 0.5rem;
    display: flex;
    justify-content: center;
    gap: 0.1em;
}

.tagline .char {
    display: inline-block;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.tagline .char:nth-child(1) { animation-delay: 0.1s; }
.tagline .char:nth-child(2) { animation-delay: 0.15s; }
.tagline .char:nth-child(3) { animation-delay: 0.2s; }
.tagline .char:nth-child(4) { animation-delay: 0.25s; }
.tagline .char:nth-child(5) { animation-delay: 0.3s; }
.tagline .char:nth-child(6) { animation-delay: 0.35s; }
.tagline .char:nth-child(7) { animation-delay: 0.4s; }
.tagline .char:nth-child(8) { animation-delay: 0.45s; }
.tagline .char:nth-child(9) { animation-delay: 0.5s; }
.tagline .char:nth-child(10) { animation-delay: 0.55s; }
.tagline .char:nth-child(11) { animation-delay: 0.6s; }
.tagline .char:nth-child(12) { animation-delay: 0.65s; }
.tagline .char:nth-child(13) { animation-delay: 0.7s; }
.tagline .char:nth-child(14) { animation-delay: 0.75s; }
.tagline .char:nth-child(15) { animation-delay: 0.8s; }
.tagline .char:nth-child(16) { animation-delay: 0.85s; }
.tagline .char:nth-child(17) { animation-delay: 0.9s; }
.tagline .char:nth-child(18) { animation-delay: 0.95s; }
.tagline .char:nth-child(19) { animation-delay: 1s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Content Section */
.content {
    flex: 1;
    padding: 2rem 0 4rem;
}

.description {
    max-width: 1200px;
    margin: 0 auto 6rem;
    text-align: center;
}

.description-boxes {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: stretch;
}

.description-text {
    flex: 1;
    max-width: 500px;
    padding: 2rem;
    border: 1px solid rgba(0, 240, 255, 0.15);
    border-radius: 1rem;
    background: rgba(10, 10, 15, 0.5);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 20;
}

.description-text p {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 0;
    color: rgba(224, 224, 232, 0.75);
    font-weight: 300;
    letter-spacing: 0.02em;
}

/* Locations */
.locations {
    margin: 6rem 0;
}

.location-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}

.location-item {
    text-align: center;
    position: relative;
}

.location-marker {
    width: 20px;
    height: 20px;
    background: var(--primary);
    border-radius: 50%;
    margin: 0 auto 1rem;
    position: relative;
    animation: pulse 2s ease-in-out infinite;
}

.location-marker::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: var(--primary);
    border-radius: 50%;
    animation: ripple 2s ease-out infinite;
}

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

@keyframes ripple {
    0% {
        width: 100%;
        height: 100%;
        opacity: 0.8;
    }
    100% {
        width: 300%;
        height: 300%;
        opacity: 0;
    }
}

.location-item h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--light);
}

.coordinates {
    font-size: 0.9rem;
    color: rgba(224, 224, 232, 0.6);
    font-family: 'Courier New', monospace;
    letter-spacing: 0.05em;
}

.location-divider {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--primary), transparent);
}

/* Ethos Section */
.ethos {
    margin: 6rem 0;
}

.ethos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.ethos-item {
    text-align: center;
    padding: 2rem;
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 1rem;
    background: rgba(10, 10, 15, 0.5);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ethos-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.ethos-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 40px rgba(0, 240, 255, 0.2);
}

.ethos-item:hover::before {
    left: 100%;
}

.ethos-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ethos-item h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--light);
    font-weight: 600;
}

.ethos-item p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(224, 224, 232, 0.7);
    font-weight: 400;
}

/* Galleries Section */
.galleries-section {
    max-width: 800px;
    margin: 0 auto 4rem;
    padding: 3rem 2rem;
    text-align: center;
}

.galleries-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 600;
    letter-spacing: 0.15em;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.gallery-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.gallery-link {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
    max-width: 600px;
    padding: 1rem;
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 1rem;
    background: rgba(10, 10, 15, 0.5);
    backdrop-filter: blur(10px);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.gallery-preview {
    height: 100px;
    width: auto;
    max-width: 100px;
    object-fit: contain;
    border-radius: 0.5rem;
    border: 1px solid rgba(0, 240, 255, 0.3);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.gallery-link:hover .gallery-preview {
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
    transform: scale(1.05);
}

.gallery-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.gallery-link:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 40px rgba(0, 240, 255, 0.2);
}

.gallery-link:hover::before {
    left: 100%;
}

.gallery-link-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: rgba(224, 224, 232, 0.9);
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
    flex: 1;
}

.gallery-link:hover .gallery-link-text {
    color: var(--light);
}

/* Footer */
.footer {
    padding: 0.5rem 0 2rem;
    text-align: center;
    margin-top: auto;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.domain {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--light);
    letter-spacing: 0.05em;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.link-hover {
    color: rgba(224, 224, 232, 0.6);
    text-decoration: none;
    font-size: 1.05rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 400;
    letter-spacing: 0.05em;
    padding: 0.65rem 1.75rem;
    border: 1px solid rgba(0, 240, 255, 0.15);
    border-radius: 0.5rem;
    background: rgba(10, 10, 15, 0.3);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: inline-block;
}

.link-hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.link-hover:hover {
    color: var(--light);
    border-color: rgba(0, 240, 255, 0.4);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.2);
    transform: translateY(-2px);
}

.link-hover:hover::before {
    left: 100%;
}

/* Orbiting Globe */
.orbiting-globe {
    position: fixed;
    text-decoration: none;
    opacity: 0.2;
    z-index: 10;
    cursor: pointer;
    transition: all 0.4s ease;
    animation: orbit 60s linear infinite;
    pointer-events: auto;
    color: rgba(0, 240, 255, 0.5);
}

.orbiting-globe svg {
    display: block;
    filter: drop-shadow(0 0 2px rgba(0, 240, 255, 0.3));
    transition: all 0.4s ease;
}

@keyframes orbit {
    0% {
        left: 50%;
        top: 20%;
        transform: translate(-50%, -50%) rotate(0deg);
    }
    25% {
        left: 80%;
        top: 50%;
        transform: translate(-50%, -50%) rotate(90deg);
    }
    50% {
        left: 50%;
        top: 80%;
        transform: translate(-50%, -50%) rotate(180deg);
    }
    75% {
        left: 20%;
        top: 50%;
        transform: translate(-50%, -50%) rotate(270deg);
    }
    100% {
        left: 50%;
        top: 20%;
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.orbiting-globe:hover {
    opacity: 1;
    color: rgba(0, 240, 255, 1);
    animation-play-state: paused;
}

.orbiting-globe:hover svg {
    filter: drop-shadow(0 0 8px rgba(0, 240, 255, 0.8))
            drop-shadow(0 0 15px rgba(0, 240, 255, 0.5));
    transform: scale(1.3);
}

/* Fade In Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px) translateZ(0);
    animation: fadeIn 1s ease forwards;
    will-change: opacity, transform;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
}

.fade-in.delay-1 { animation-delay: 0.2s; }
.fade-in.delay-2 { animation-delay: 0.4s; }
.fade-in.delay-3 { animation-delay: 0.6s; }
.fade-in.delay-4 { animation-delay: 0.8s; }
.fade-in.delay-5 { animation-delay: 1s; }

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

/* Hamburger Menu */
.hamburger {
    position: fixed;
    top: 2rem;
    left: 2rem;
    z-index: 1001 !important;
    width: 50px;
    height: 50px;
    background: rgba(10, 10, 15, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 240, 255, 0.15);
    border-radius: 0.5rem;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    padding: 0;
    transition: all 0.3s ease;
    pointer-events: auto;
}

.hamburger:hover {
    background: rgba(10, 10, 15, 0.6);
    border-color: rgba(0, 240, 255, 0.3);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.15);
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

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

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

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 998;
    display: none;
    background: rgba(5, 5, 8, 0.3);
    clip-path: circle(0% at 2rem 2rem);
}

.menu-overlay.active {
    display: flex;
    animation: expandBlur 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes expandBlur {
    0% {
        clip-path: circle(0% at 2rem 2rem);
        backdrop-filter: blur(0px);
    }
    100% {
        clip-path: circle(150% at 2rem 2rem);
        backdrop-filter: blur(20px);
    }
}

.menu-content {
    position: relative;
    margin-left: 2rem;
    margin-top: 5rem;
    padding: 3rem 4rem;
    text-align: left;
    max-width: 600px;
    animation: slideInDiagonal 0.6s ease 0.2s backwards;
}

@media (max-width: 768px) {
    .menu-content {
        margin-left: 1rem;
        margin-top: 3rem;
        padding: 2rem;
        max-width: 100%;
        text-align: center;
    }
}

@keyframes slideInDiagonal {
    from {
        opacity: 0;
        transform: translate(-100px, -100px) scale(0.85);
    }
    to {
        opacity: 1;
        transform: translate(0, 0) scale(1);
    }
}

.menu-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 600;
    letter-spacing: 0.1em;
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 3rem;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease 0.2s forwards;
}

.menu-nav {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
}

@media (max-width: 768px) {
    .menu-nav {
        align-items: center;
    }
}

.menu-link {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 400;
    color: rgba(224, 224, 232, 0.6);
    text-decoration: none;
    padding: 0;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.4s ease;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
}

.menu-link:nth-child(1) {
    animation: fadeInUp 0.6s ease 0.4s forwards;
}

.menu-link::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: width 0.4s ease;
}

.menu-link:hover {
    color: var(--primary);
    text-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
}

.menu-link:hover::before {
    width: 100%;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    .hamburger {
        top: 1rem;
        left: 1rem;
        width: 44px;
        height: 44px;
    }
    
    .hero {
        min-height: 40vh;
        padding: 1rem 0;
    }

    .tagline {
        font-size: 1rem;
        letter-spacing: 0.2em;
    }

    .description-boxes {
        flex-direction: column;
        gap: 1.5rem;
    }

    .description-text {
        max-width: 100%;
    }

    .galleries-section {
        padding: 2rem 1rem;
        margin-bottom: 2rem;
    }

    .gallery-link {
        padding: 0.75rem;
        gap: 1rem;
    }

    .gallery-preview {
        height: 70px;
        max-width: 70px;
    }

    .location-grid {
        gap: 2rem;
    }

    .location-divider {
        display: none;
    }

    .ethos-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 2.5rem;
    }

    .tagline {
        flex-wrap: wrap;
    }

    .hero {
        min-height: 35vh;
        padding: 0.5rem 0;
    }

    .content {
        padding: 1rem 0;
    }

    .container {
        padding: 0.5rem;
    }
}

/* Improve touch feedback on touch devices */
@media (hover: none) and (pointer: coarse) {
    /* Add smooth base transitions for all interactive elements */
    .ethos-item,
    .link-hover,
    .hamburger,
    .menu-link,
    .orbiting-globe,
    .gallery-link {
        transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1),
                    border-color 0.2s ease,
                    background 0.2s ease,
                    box-shadow 0.2s ease,
                    opacity 0.2s ease,
                    color 0.2s ease;
    }
    
    /* Pressed state */
    .ethos-item:active {
        transform: scale(0.96);
    }
    
    .link-hover:active {
        opacity: 0.7;
        transform: scale(0.96);
    }
    
    .hamburger:active {
        transform: scale(0.92);
    }
    
    .menu-link:active {
        opacity: 0.7;
        transform: scale(0.96);
    }
    
    .orbiting-globe:active {
        transform: scale(0.96);
    }
    
    .gallery-link:active {
        transform: scale(0.96);
    }
    
    /* Post-tap animations (triggered by JavaScript) */
    .ethos-item.tapped {
        animation: tapPulse 0.7s ease-out;
    }
    
    .gallery-link.tapped {
        animation: tapPulse 0.7s ease-out;
    }
    
    .link-hover.tapped {
        animation: tapFlash 0.6s ease-out;
    }
    
    .hamburger.tapped {
        animation: tapGlow 0.7s ease-out;
    }
    
    .menu-link.tapped {
        animation: tapFlash 0.6s ease-out;
    }
    
    .orbiting-globe.tapped {
        animation: tapPulse 0.7s ease-out;
    }
    
    .orbiting-globe.tapped svg {
        filter: drop-shadow(0 0 10px rgba(0, 240, 255, 0.4))
                drop-shadow(0 0 20px rgba(0, 240, 255, 0.2));
        transform: scale(1.25);
        transition: all 0.3s ease;
    }
    
    /* Post-click animation keyframes */
    @keyframes tapPulse {
        0% {
            transform: scale(1);
            box-shadow: 0 4px 20px rgba(0, 240, 255, 0.1);
        }
        40% {
            transform: scale(1.02);
            box-shadow: 0 8px 40px rgba(0, 240, 255, 0.3);
        }
        100% {
            transform: scale(1);
            box-shadow: 0 4px 20px rgba(0, 240, 255, 0.1);
        }
    }
    
    @keyframes tapFlash {
        0% {
            opacity: 1;
        }
        35% {
            opacity: 0.5;
            color: var(--primary);
            text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
        }
        100% {
            opacity: 1;
        }
    }
    
    @keyframes tapGlow {
        0% {
            box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
        }
        40% {
            box-shadow: 0 0 30px rgba(0, 240, 255, 0.5),
                        0 0 60px rgba(0, 240, 255, 0.3);
        }
        100% {
            box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
        }
    }
}

