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

:root {
    --cor1: #ff0000;
    --cor2: #d4af37;
    --cor3: #1a1a1a;
    --white: #ffffff;
    --shadow: rgba(0, 0, 0, 0.5);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
    background: 
        linear-gradient(135deg, rgba(26, 26, 26, 0.85) 0%, rgba(45, 10, 10, 0.9) 50%, rgba(26, 26, 26, 0.85) 100%),
        url('attached_assets/stock_images/hookah_lounge_smoke__bff0d7a3.jpg') center/cover no-repeat fixed;
    overflow-x: hidden;
    position: relative;
}

.club-lights-top,
.club-lights-bottom,
.club-lights-left,
.club-lights-right {
    position: fixed;
    z-index: 999;
    pointer-events: none;
}

.club-lights-top {
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, 
        #ff0000 0%, 
        #d4af37 10%, 
        #ff0000 20%, 
        #00ffff 30%, 
        #d4af37 40%, 
        #ff00ff 50%, 
        #d4af37 60%, 
        #00ffff 70%, 
        #ff0000 80%, 
        #d4af37 90%, 
        #ff0000 100%);
    background-size: 200% 100%;
    animation: clubLightsHorizontal 3s linear infinite;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.8), 0 0 40px rgba(212, 175, 55, 0.6);
}

.club-lights-bottom {
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, 
        #d4af37 0%, 
        #ff0000 10%, 
        #00ffff 20%, 
        #d4af37 30%, 
        #ff00ff 40%, 
        #ff0000 50%, 
        #d4af37 60%, 
        #00ffff 70%, 
        #ff0000 80%, 
        #d4af37 90%, 
        #ff0000 100%);
    background-size: 200% 100%;
    animation: clubLightsHorizontal 3s linear infinite reverse;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.8), 0 0 40px rgba(255, 0, 0, 0.6);
}

.club-lights-left {
    top: 0;
    left: 0;
    width: 8px;
    height: 100%;
    background: linear-gradient(180deg, 
        #ff0000 0%, 
        #d4af37 10%, 
        #ff0000 20%, 
        #00ffff 30%, 
        #d4af37 40%, 
        #ff00ff 50%, 
        #d4af37 60%, 
        #00ffff 70%, 
        #ff0000 80%, 
        #d4af37 90%, 
        #ff0000 100%);
    background-size: 100% 200%;
    animation: clubLightsVertical 4s linear infinite;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.8), 0 0 40px rgba(212, 175, 55, 0.6);
}

.club-lights-right {
    top: 0;
    right: 0;
    width: 8px;
    height: 100%;
    background: linear-gradient(180deg, 
        #d4af37 0%, 
        #ff0000 10%, 
        #00ffff 20%, 
        #d4af37 30%, 
        #ff00ff 40%, 
        #ff0000 50%, 
        #d4af37 60%, 
        #00ffff 70%, 
        #ff0000 80%, 
        #d4af37 90%, 
        #ff0000 100%);
    background-size: 100% 200%;
    animation: clubLightsVertical 4s linear infinite reverse;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.8), 0 0 40px rgba(255, 0, 0, 0.6);
}

@keyframes clubLightsHorizontal {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 200% 0%;
    }
}

@keyframes clubLightsVertical {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 0% 200%;
    }
}

.opening-hours-banner {
    position: fixed;
    top: 8px;
    left: 8px;
    right: 8px;
    width: calc(100% - 16px);
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.95) 0%, rgba(255, 0, 0, 0.9) 50%, rgba(212, 175, 55, 0.95) 100%);
    padding: 12px 0;
    z-index: 1000;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.marquee-content {
    display: inline-flex;
    animation: scroll-infinite 25s linear infinite;
    will-change: transform;
}

.marquee-content span {
    display: inline-block;
    padding: 0 60px;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    letter-spacing: 2px;
    flex-shrink: 0;
}

.marquee-content i {
    margin-right: 8px;
    animation: clockPulse 1.5s ease-in-out infinite;
}

@keyframes scroll-infinite {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

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

.floating-bg {
    position: fixed;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.floating-bg-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.08) 0%, transparent 70%);
    animation: float 15s ease-in-out infinite reverse;
    top: 60%;
    right: -100px;
}

.floating-bg-3 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    animation: float 25s ease-in-out infinite;
    top: 20%;
    left: -150px;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(100px, -50px) rotate(120deg);
    }
    66% {
        transform: translate(-50px, 100px) rotate(240deg);
    }
}

.container {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
    padding: 90px 20px 50px 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.logo-wrapper {
    cursor: pointer;
    animation: floatLogo 3s ease-in-out infinite;
}

.logo-wrapper:nth-child(2) {
    animation-delay: 0.5s;
}

.logo {
    max-width: 280px;
    height: auto;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo-thiago {
    filter: drop-shadow(0 0 10px rgba(255, 0, 0, 0.4));
    animation: pulse-glow-red 2s ease-in-out infinite;
}

.logo-royal {
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.4));
    animation: pulse-glow-gold 2s ease-in-out infinite;
    animation-delay: 1s;
}

.logo-wrapper:hover .logo,
.logo-wrapper:active .logo {
    animation: shake 0.5s ease-in-out;
}

.logo-wrapper:hover .logo-thiago,
.logo-wrapper:active .logo-thiago {
    filter: drop-shadow(0 0 35px rgba(255, 0, 0, 0.9)) 
            drop-shadow(0 0 50px rgba(255, 0, 0, 0.7))
            drop-shadow(0 0 70px rgba(255, 0, 0, 0.5)) !important;
}

.logo-wrapper:hover .logo-royal,
.logo-wrapper:active .logo-royal {
    filter: drop-shadow(0 0 35px rgba(212, 175, 55, 0.9)) 
            drop-shadow(0 0 50px rgba(212, 175, 55, 0.7))
            drop-shadow(0 0 70px rgba(212, 175, 55, 0.5)) !important;
}

@keyframes floatLogo {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse-glow-red {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(255, 0, 0, 0.4));
    }
    50% {
        filter: drop-shadow(0 0 30px rgba(255, 0, 0, 0.8)) drop-shadow(0 0 40px rgba(255, 0, 0, 0.6));
    }
}

@keyframes pulse-glow-gold {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.4));
    }
    50% {
        filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.8)) drop-shadow(0 0 40px rgba(212, 175, 55, 0.6));
    }
}

@keyframes shake {
    0%, 100% { transform: scale(1.15) rotate(0deg) translateY(0); }
    25% { transform: scale(1.2) rotate(-10deg) translateY(-5px); }
    50% { transform: scale(1.18) rotate(10deg) translateY(-10px); }
    75% { transform: scale(1.22) rotate(-8deg) translateY(-5px); }
}


.links-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.link-button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 18px 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: var(--white);
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    overflow: hidden;
    animation: buttonPulse 3s ease-in-out infinite;
}

.link-button i {
    font-size: 24px;
    transition: all 0.4s ease;
    animation: iconFloat 2s ease-in-out infinite;
}

.button-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.link-button:hover .button-glow {
    transform: translateX(100%);
}

.link-button:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.link-button:hover i {
    transform: rotate(360deg) scale(1.2);
}

.link-button:active {
    transform: translateY(-4px) scale(1.02);
}

@keyframes buttonPulse {
    0%, 100% {
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.2), 0 0 30px rgba(255, 255, 255, 0.1);
    }
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-3px) rotate(5deg);
    }
}

.whatsapp {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.2) 0%, rgba(37, 211, 102, 0.05) 100%);
    border-color: rgba(37, 211, 102, 0.3);
    animation-delay: 0s;
}

.whatsapp i {
    animation-delay: 0s;
}

.whatsapp:hover,
.whatsapp:active {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.4) 0%, rgba(37, 211, 102, 0.2) 100%);
    border-color: #25d366;
    box-shadow: 0 20px 40px rgba(37, 211, 102, 0.4), 0 0 30px rgba(37, 211, 102, 0.3);
    animation: none;
}

.location {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.2) 0%, rgba(255, 0, 0, 0.05) 100%);
    border-color: rgba(255, 0, 0, 0.3);
    animation-delay: 0.5s;
}

.location i {
    animation-delay: 0.5s;
}

.location:hover,
.location:active {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.4) 0%, rgba(255, 0, 0, 0.2) 100%);
    border-color: var(--cor1);
    box-shadow: 0 20px 40px rgba(255, 0, 0, 0.4), 0 0 30px rgba(255, 0, 0, 0.3);
    animation: none;
}

.menu {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-color: rgba(212, 175, 55, 0.3);
    animation-delay: 1s;
}

.menu i {
    animation-delay: 1s;
}

.menu:hover,
.menu:active {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.4) 0%, rgba(212, 175, 55, 0.2) 100%);
    border-color: var(--cor2);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.4), 0 0 30px rgba(212, 175, 55, 0.3);
    animation: none;
}

.instagram {
    background: linear-gradient(135deg, rgba(193, 53, 132, 0.2) 0%, rgba(131, 58, 180, 0.05) 100%);
    border-color: rgba(193, 53, 132, 0.3);
    animation-delay: 1.5s;
}

.instagram i {
    animation-delay: 1.5s;
}

.instagram:hover,
.instagram:active {
    background: linear-gradient(135deg, rgba(193, 53, 132, 0.4) 0%, rgba(131, 58, 180, 0.2) 100%);
    border-color: #c13584;
    box-shadow: 0 20px 40px rgba(193, 53, 132, 0.4), 0 0 30px rgba(193, 53, 132, 0.3);
    animation: none;
}

@media (max-width: 768px) {
    .container {
        padding: 30px 15px;
    }
    
    .logo-container {
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .logo {
        max-width: 220px;
    }
    
    .link-button {
        padding: 16px 25px;
        font-size: 16px;
    }
    
    .link-button i {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .logo-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .logo {
        max-width: 240px;
    }
    
    .link-button {
        padding: 14px 20px;
        font-size: 15px;
        gap: 12px;
    }
    
    .link-button i {
        font-size: 18px;
    }
    
    .floating-bg,
    .floating-bg-2,
    .floating-bg-3 {
        width: 200px;
        height: 200px;
    }
}

@media (min-width: 769px) {
    .link-button {
        max-width: 500px;
        margin: 0 auto;
    }
}
