/* R'lyeh Depths - Underwater Cthulhu Theme */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    background: #000a1a;
    color: #a0d8f0;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Night Sky Background */
.night-sky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 40vh;
    background: linear-gradient(
        to bottom,
        #0a0a2a 0%,
        #1a1a4a 30%,
        #2a2a6a 60%,
        #1a3a5a 100%
    );
    z-index: -3;
}

/* Moon */
.moon {
    position: absolute;
    top: 10%;
    right: 15%;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle at 35% 30%, #ffffff 0%, #f8f8f8 15%, #f0f0f0 30%, #e8e8e8 50%, #d8d8d8 70%, #c0c0c0 100%);
    border-radius: 50%;
    box-shadow: 
        0 0 100px rgba(255, 255, 255, 0.8),
        0 0 150px rgba(255, 255, 255, 0.5),
        0 0 200px rgba(255, 255, 255, 0.3),
        inset -12px -12px 25px rgba(180, 180, 180, 0.4);
    animation: moon-glow 6s ease-in-out infinite alternate;
}

.moon::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 40%;
    width: 15px;
    height: 15px;
    background: rgba(180, 180, 180, 0.4);
    border-radius: 50%;
    box-shadow: 
        -20px 10px 0 -3px rgba(180, 180, 180, 0.3),
        10px 15px 0 -5px rgba(180, 180, 180, 0.2),
        -10px -8px 0 -2px rgba(180, 180, 180, 0.25);
}

.moon::after {
    content: '';
    position: absolute;
    top: 60%;
    left: 25%;
    width: 12px;
    height: 12px;
    background: rgba(160, 160, 160, 0.3);
    border-radius: 50%;
    box-shadow: 
        15px -10px 0 -2px rgba(160, 160, 160, 0.25),
        -8px 12px 0 -3px rgba(160, 160, 160, 0.2);
}

@keyframes moon-glow {
    0% { 
        box-shadow: 
            0 0 100px rgba(255, 255, 255, 0.8),
            0 0 150px rgba(255, 255, 255, 0.5),
            0 0 200px rgba(255, 255, 255, 0.3),
            inset -12px -12px 25px rgba(180, 180, 180, 0.4);
        transform: scale(1);
        filter: brightness(1);
    }
    100% { 
        box-shadow: 
            0 0 140px rgba(255, 255, 255, 1),
            0 0 200px rgba(255, 255, 255, 0.7),
            0 0 250px rgba(255, 255, 255, 0.4),
            inset -12px -12px 25px rgba(180, 180, 180, 0.5);
        transform: scale(1.08);
        filter: brightness(1.2);
    }
}

/* Stars */
.stars {
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(2px 2px at 20px 30px, #fff, transparent),
        radial-gradient(2px 2px at 40px 70px, #fff, transparent),
        radial-gradient(1px 1px at 90px 40px, #fff, transparent),
        radial-gradient(1px 1px at 130px 80px, #fff, transparent),
        radial-gradient(2px 2px at 160px 30px, #fff, transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: stars-twinkle 3s ease-in-out infinite alternate;
}

@keyframes stars-twinkle {
    0% { opacity: 0.8; }
    100% { opacity: 1; }
}

/* Water Surface */
.water-surface {
    position: fixed;
    top: 40vh;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: -2;
    overflow: hidden;
}

.wave {
    position: absolute;
    width: 200%;
    height: 100px;
    background: linear-gradient(
        to bottom,
        rgba(32, 64, 96, 0.8) 0%,
        rgba(16, 48, 80, 0.9) 50%,
        rgba(8, 32, 64, 1) 100%
    );
}

.wave1 {
    animation: wave-animation 6s ease-in-out infinite;
}

.wave2 {
    animation: wave-animation 8s ease-in-out infinite reverse;
    opacity: 0.8;
}

.wave3 {
    animation: wave-animation 10s ease-in-out infinite;
    opacity: 0.6;
}

@keyframes wave-animation {
    0% { 
        transform: translateX(-50%) scaleY(1) rotateZ(0deg); 
        border-radius: 50% 50% 0 0;
    }
    25% { 
        transform: translateX(-45%) scaleY(1.1) rotateZ(0.5deg); 
        border-radius: 60% 40% 0 0;
    }
    50% { 
        transform: translateX(-40%) scaleY(1.2) rotateZ(0deg); 
        border-radius: 40% 60% 0 0;
    }
    75% { 
        transform: translateX(-45%) scaleY(1.1) rotateZ(-0.5deg); 
        border-radius: 60% 40% 0 0;
    }
    100% { 
        transform: translateX(-50%) scaleY(1) rotateZ(0deg); 
        border-radius: 50% 50% 0 0;
    }
}

/* Underwater Environment */
.underwater-container {
    position: fixed;
    top: 40vh;
    left: 0;
    width: 100%;
    height: 60vh;
    background: linear-gradient(
        to bottom,
        rgba(8, 32, 64, 0.9) 0%,
        rgba(4, 20, 40, 0.95) 30%,
        rgba(2, 12, 28, 0.98) 60%,
        rgba(0, 8, 20, 1) 100%
    );
    z-index: -1;
    overflow: hidden;
}

/* Swimming Fish */
.fish {
    position: absolute;
    width: 30px;
    height: 20px;
    background: linear-gradient(45deg, #4a9eff 0%, #007acc 100%);
    border-radius: 50% 10px 50% 10px;
    animation: swim 15s linear infinite;
}

.fish::before {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid #4a9eff;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

.fish::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 3px;
    width: 4px;
    height: 4px;
    background: #000;
    border-radius: 50%;
}

@keyframes swim {
    0% {
        transform: translateX(-100px) translateY(0px);
    }
    25% {
        transform: translateX(25vw) translateY(-20px);
    }
    50% {
        transform: translateX(50vw) translateY(10px);
    }
    75% {
        transform: translateX(75vw) translateY(-15px);
    }
    100% {
        transform: translateX(100vw) translateY(5px);
    }
}

/* Cthulhu Silhouette */
.cthulhu-silhouette {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 300px;
    background: radial-gradient(
        ellipse at center,
        rgba(0, 20, 40, 0.8) 0%,
        rgba(0, 10, 20, 0.9) 50%,
        transparent 70%
    );
    border-radius: 50% 50% 20% 20%;
    animation: cthulhu-breathing 8s ease-in-out infinite;
}

.cthulhu-silhouette::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 80px;
    background: rgba(20, 40, 60, 0.6);
    border-radius: 50%;
}

@keyframes cthulhu-breathing {
    0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.6; }
    50% { transform: translateX(-50%) scale(1.05); opacity: 0.8; }
}

/* Tentacles */
.tentacles {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 100px;
}

.tentacles::before,
.tentacles::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 80px;
    background: rgba(30, 50, 70, 0.5);
    border-radius: 50% 50% 20% 20%;
    animation: tentacle-sway 6s ease-in-out infinite;
}

.tentacles::before {
    left: 20%;
    animation-delay: -1s;
}

.tentacles::after {
    right: 20%;
    animation-delay: -3s;
}

@keyframes tentacle-sway {
    0%, 100% { transform: rotate(-10deg); }
    50% { transform: rotate(10deg); }
}

/* Underwater Particles */
.underwater-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(1px 1px at 10% 20%, rgba(160, 216, 240, 0.3), transparent),
        radial-gradient(1px 1px at 30% 60%, rgba(160, 216, 240, 0.2), transparent),
        radial-gradient(2px 2px at 50% 30%, rgba(160, 216, 240, 0.4), transparent),
        radial-gradient(1px 1px at 70% 80%, rgba(160, 216, 240, 0.3), transparent),
        radial-gradient(1px 1px at 90% 40%, rgba(160, 216, 240, 0.2), transparent);
    background-size: 300px 200px;
    animation: particles-float 10s ease-in-out infinite;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, rgba(10, 30, 50, 0.95), rgba(20, 40, 60, 0.95));
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Metal Mania', cursive;
    font-size: 1.8rem;
    color: #ff6b6b;
    text-shadow: 0 0 20px rgba(255, 107, 107, 0.8);
    animation: rainbow-glow 3s ease-in-out infinite;
}

.nav-logo i.rainbow-skull {
    font-size: 2rem;
    color: #ff6b6b;
    animation: rainbow-skull-glow 4s ease-in-out infinite;
    filter: drop-shadow(0 0 8px rgba(255, 107, 107, 0.8));
}

@keyframes rainbow-glow {
    0% { 
        color: #ff6b6b; 
        text-shadow: 0 0 20px rgba(255, 107, 107, 0.8);
    }
    16% { 
        color: #feca57; 
        text-shadow: 0 0 20px rgba(254, 202, 87, 0.8);
    }
    33% { 
        color: #48dbfb; 
        text-shadow: 0 0 20px rgba(72, 219, 251, 0.8);
    }
    50% { 
        color: #0abde3; 
        text-shadow: 0 0 20px rgba(10, 189, 227, 0.8);
    }
    66% { 
        color: #00d2d3; 
        text-shadow: 0 0 20px rgba(0, 210, 211, 0.8);
    }
    83% { 
        color: #ff9ff3; 
        text-shadow: 0 0 20px rgba(255, 159, 243, 0.8);
    }
    100% { 
        color: #ff6b6b; 
        text-shadow: 0 0 20px rgba(255, 107, 107, 0.8);
    }
}

@keyframes rainbow-skull-glow {
    0% { 
        color: #ff6b6b;
        filter: drop-shadow(0 0 8px rgba(255, 107, 107, 0.8));
    }
    20% { 
        color: #feca57;
        filter: drop-shadow(0 0 8px rgba(254, 202, 87, 0.8));
    }
    40% { 
        color: #48dbfb;
        filter: drop-shadow(0 0 8px rgba(72, 219, 251, 0.8));
    }
    60% { 
        color: #00d2d3;
        filter: drop-shadow(0 0 8px rgba(0, 210, 211, 0.8));
    }
    80% { 
        color: #ff9ff3;
        filter: drop-shadow(0 0 8px rgba(255, 159, 243, 0.8));
    }
    100% { 
        color: #ff6b6b;
        filter: drop-shadow(0 0 8px rgba(255, 107, 107, 0.8));
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: #a0d8f0;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #6dd5fa;
    text-shadow: 0 0 8px rgba(109, 213, 250, 0.6);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #6dd5fa, #2980b9);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background: #a0d8f0;
    margin: 3px 0;
    transition: 0.3s;
}

/* Main Content */
main {
    position: relative;
    z-index: 1;
    padding-top: 80px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 820px;
    padding: 50px 30px;
    background: radial-gradient(ellipse at center, rgba(10, 25, 45, 0.55) 0%, rgba(10, 25, 45, 0.25) 60%, transparent 100%);
    border-radius: 30px;
    backdrop-filter: blur(2px);
}

.hero-logo i.fa-coffee {
    font-size: 2.2rem;
    color: #6dd5fa;
    text-shadow: 0 0 20px rgba(109, 213, 250, 0.7);
    margin-bottom: 10px;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

.hero-title {
    font-family: 'Metal Mania', cursive;
    font-size: 5rem;
    background: linear-gradient(45deg, #ff6b6b, #feca57, #48dbfb, #0abde3, #00d2d3, #ff9ff3);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    animation: rainbow-flow 4s ease-in-out infinite, title-pulse 4s ease-in-out infinite;
    letter-spacing: 2px;
    line-height: 1.1;
    filter: drop-shadow(0 0 20px rgba(109, 213, 250, 0.4));
}

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

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

.hero-tagline {
    font-size: 1.6rem;
    color: #d4eef8;
    margin-bottom: 30px;
    text-shadow: 0 0 10px rgba(160, 216, 240, 0.5);
    font-weight: 300;
    letter-spacing: 1px;
}

.hero-subtitle {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(109, 213, 250, 0.2);
}

.hero-subtitle p {
    font-size: 1.1rem;
    color: #8fb8d6;
    margin-bottom: 8px;
    font-style: italic;
}

.hero-decorations {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 20px 0;
}

.hero-decorations i {
    font-size: 2rem;
    color: #4a9eff;
    animation: float 3s ease-in-out infinite;
}

.hero-decorations i:nth-child(2) {
    animation-delay: -1s;
}

.hero-decorations i:nth-child(3) {
    animation-delay: -2s;
}

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

/* CTA Button */
.cta-button {
    background: linear-gradient(135deg, #1a5f8b 0%, #2980b9 50%, #6dd5fa 100%);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 18px 45px;
    font-size: 1.15rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 35px;
    box-shadow: 
        0 10px 30px rgba(109, 213, 250, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.6s ease;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 18px 45px rgba(109, 213, 250, 0.55),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.cta-button:hover::before {
    left: 100%;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Massive Skeleton with glowing red eyes */
.massive-skeleton {
    position: fixed;
    bottom: 0;
    left: 5%;
    width: 280px;
    height: 700px;
    max-height: 92vh;
    z-index: 0;
    pointer-events: none;
    animation: skeleton-looming 12s ease-in-out infinite;
    filter: drop-shadow(0 14px 30px rgba(0, 0, 0, 0.7))
            drop-shadow(0 0 50px rgba(255, 60, 50, 0.35));
}

/* Soft moon-lit aura behind the skull */
.massive-skeleton::before {
    content: '';
    position: absolute;
    top: -6%;
    left: 50%;
    transform: translateX(-50%);
    width: 320px;
    height: 320px;
    background:
        radial-gradient(circle at center,
            rgba(170, 200, 230, 0.18) 0%,
            rgba(120, 160, 200, 0.10) 40%,
            transparent 72%);
    border-radius: 50%;
    z-index: -2;
    filter: blur(6px);
    animation: skeleton-aura 7s ease-in-out infinite;
}

/* Burning red eye-glow halo */
.massive-skeleton::after {
    content: '';
    position: absolute;
    top: 18%;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 120px;
    background: radial-gradient(ellipse at center,
        rgba(255, 60, 40, 0.55) 0%,
        rgba(255, 50, 30, 0.20) 35%,
        transparent 70%);
    border-radius: 50%;
    z-index: -1;
    filter: blur(10px);
    animation: skeleton-eye-aura 4s ease-in-out infinite;
}

@keyframes skeleton-aura {
    0%, 100% { opacity: 0.55; transform: translateX(-50%) scale(1); }
    50% { opacity: 0.95; transform: translateX(-50%) scale(1.08); }
}

@keyframes skeleton-eye-aura {
    0%, 100% { opacity: 0.55; transform: translateX(-50%) scale(0.9); }
    50% { opacity: 1; transform: translateX(-50%) scale(1.18); }
}

/* Skull */
.skull {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 280px;
    background: radial-gradient(
        ellipse at 38% 28%,
        #f4ecd6 0%,
        #ddd2b4 28%,
        #b8aa86 58%,
        #6f6248 92%,
        #3a3225 100%
    );
    border-radius: 48% 48% 42% 42% / 56% 56% 44% 44%;
    box-shadow:
        inset -16px -22px 40px rgba(0, 0, 0, 0.55),
        inset 14px 16px 30px rgba(255, 245, 220, 0.18),
        inset 0 -8px 18px rgba(80, 60, 40, 0.4);
    animation: skull-bob 8s ease-in-out infinite;
}

/* Cheek bones (shadowed cavities under the eye sockets) */
.cheek {
    position: absolute;
    top: 50%;
    width: 36px;
    height: 50px;
    background: radial-gradient(ellipse at center,
        rgba(40, 25, 15, 0.7) 0%,
        rgba(40, 25, 15, 0.35) 50%,
        transparent 80%);
    border-radius: 50%;
    filter: blur(3px);
}
.cheek.left { left: 8%; transform: rotate(-12deg); }
.cheek.right { right: 8%; transform: rotate(12deg); }

/* Deep eye sockets */
.eye-socket {
    position: absolute;
    top: 30%;
    width: 56px;
    height: 60px;
    background:
        radial-gradient(ellipse at 50% 35%,
            #050505 0%,
            #0a0505 45%,
            #1a0e08 80%,
            rgba(40, 20, 12, 0.9) 100%);
    border-radius: 60% 60% 55% 55% / 70% 70% 50% 50%;
    box-shadow:
        inset 0 6px 14px rgba(0, 0, 0, 0.95),
        inset 0 -4px 10px rgba(80, 40, 20, 0.5),
        0 2px 4px rgba(255, 240, 210, 0.15);
    overflow: visible;
}
.eye-socket.left { left: 15%; transform: rotate(-6deg); }
.eye-socket.right { right: 15%; transform: rotate(6deg); }

/* Glowing red eye inside socket */
.glow-eye {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 22px;
    height: 22px;
    background: radial-gradient(circle at 38% 35%,
        #fff5b8 0%,
        #ffb060 14%,
        #ff4030 35%,
        #b00000 65%,
        #3a0000 100%);
    border-radius: 50%;
    animation: eye-burn 3.5s ease-in-out infinite;
}

/* Outer red glow leaking from each socket */
.glow-eye::before {
    content: '';
    position: absolute;
    top: -85%;
    left: -85%;
    width: 270%;
    height: 270%;
    background: radial-gradient(circle at center,
        rgba(255, 80, 50, 0.7) 0%,
        rgba(255, 60, 40, 0.3) 35%,
        transparent 65%);
    border-radius: 50%;
    z-index: -1;
    filter: blur(2px);
    animation: eye-halo 3.5s ease-in-out infinite;
}

/* Bright pupil glint */
.glow-eye::after {
    content: '';
    position: absolute;
    top: 22%;
    left: 24%;
    width: 7px;
    height: 7px;
    background: rgba(255, 250, 220, 0.95);
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(255, 240, 200, 0.9);
}

@keyframes eye-burn {
    0%, 100% {
        box-shadow:
            0 0 16px rgba(255, 70, 50, 0.95),
            0 0 36px rgba(255, 50, 30, 0.7),
            0 0 60px rgba(255, 30, 20, 0.4);
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        box-shadow:
            0 0 28px rgba(255, 120, 80, 1),
            0 0 60px rgba(255, 70, 40, 0.95),
            0 0 100px rgba(255, 40, 25, 0.6);
        transform: translate(-50%, -50%) scale(1.18);
    }
}

@keyframes eye-halo {
    0%, 100% { opacity: 0.5; transform: scale(0.85); }
    50% { opacity: 1; transform: scale(1.25); }
}

/* Triangular nasal cavity */
.nasal-cavity {
    position: absolute;
    top: 52%;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 13px solid transparent;
    border-right: 13px solid transparent;
    border-bottom: 26px solid #050505;
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.9))
            drop-shadow(0 -1px 1px rgba(255, 240, 210, 0.2));
}

.nasal-cavity::after {
    content: '';
    position: absolute;
    top: 8px;
    left: -4px;
    width: 8px;
    height: 12px;
    background: radial-gradient(ellipse at center, #1a0e08, #050505);
    border-radius: 50%;
    box-shadow: 6px 0 0 -1px #050505;
}

/* Upper teeth row */
.upper-teeth {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translateX(-50%);
    width: 130px;
    height: 22px;
    display: flex;
    justify-content: center;
    gap: 1px;
    padding: 0 4px;
}

.upper-teeth span {
    flex: 1;
    height: 100%;
    background: linear-gradient(to bottom,
        #f4ecd6 0%,
        #ddd2b4 60%,
        #a8997a 100%);
    border-radius: 2px 2px 30% 30%;
    box-shadow:
        inset -1px -1px 2px rgba(0, 0, 0, 0.4),
        inset 1px 0 1px rgba(255, 250, 230, 0.4),
        0 1px 2px rgba(0, 0, 0, 0.6);
}

/* Jaw */
.jaw {
    position: absolute;
    top: 78%;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 70px;
    background: radial-gradient(
        ellipse at 50% 20%,
        #ddd2b4 0%,
        #b8aa86 55%,
        #6f6248 100%);
    border-radius: 30% 30% 50% 50% / 20% 20% 100% 100%;
    box-shadow:
        inset -8px -10px 18px rgba(0, 0, 0, 0.55),
        inset 6px 6px 14px rgba(255, 245, 220, 0.15),
        0 6px 14px rgba(0, 0, 0, 0.5);
    transform-origin: 50% 0;
    animation: jaw-chatter 5s ease-in-out infinite;
}

/* Lower teeth row */
.lower-teeth {
    position: absolute;
    top: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 18px;
    display: flex;
    justify-content: center;
    gap: 1px;
    padding: 0 3px;
}

.lower-teeth span {
    flex: 1;
    height: 100%;
    background: linear-gradient(to top,
        #d8cba8 0%,
        #c5b794 60%,
        #9a8a6a 100%);
    border-radius: 30% 30% 2px 2px;
    box-shadow:
        inset -1px 1px 2px rgba(0, 0, 0, 0.4),
        inset 1px 0 1px rgba(255, 250, 230, 0.3),
        0 -1px 2px rgba(0, 0, 0, 0.6);
}

/* Cracks across the cranium for character */
.skull-crack {
    position: absolute;
    background: linear-gradient(to bottom, transparent, rgba(20, 10, 5, 0.65), transparent);
    border-radius: 50%;
    filter: blur(0.5px);
    pointer-events: none;
}

.skull-crack.c1 {
    top: 8%;
    left: 30%;
    width: 2px;
    height: 50px;
    transform: rotate(18deg);
}

.skull-crack.c2 {
    top: 14%;
    right: 26%;
    width: 1.5px;
    height: 38px;
    transform: rotate(-22deg);
}

@keyframes skull-bob {
    0%, 100% { transform: translateX(-50%) rotate(0deg) scale(1); }
    25% { transform: translateX(-50%) rotate(-1.5deg) scale(1.01); }
    50% { transform: translateX(-50%) rotate(0deg) scale(1.03); }
    75% { transform: translateX(-50%) rotate(1.5deg) scale(1.01); }
}

@keyframes jaw-chatter {
    0%, 90%, 100% { transform: translateX(-50%) translateY(0) rotate(0deg); }
    93% { transform: translateX(-50%) translateY(4px) rotate(-1deg); }
    96% { transform: translateX(-50%) translateY(0) rotate(1deg); }
}

@keyframes skeleton-looming {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.9;
    }
    50% {
        transform: translateY(-12px) scale(1.02);
        opacity: 1;
    }
}

/* ===== Skeleton body parts ===== */

/* Spine connecting skull to ribcage */
.spine {
    position: absolute;
    top: 270px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 50px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    z-index: 1;
}

.vertebra {
    flex: 1;
    background: linear-gradient(to right,
        #6f6248 0%,
        #ddd2b4 28%,
        #f4ecd6 50%,
        #ddd2b4 72%,
        #6f6248 100%);
    border-radius: 40% 40% 30% 30% / 60% 60% 40% 40%;
    box-shadow:
        inset -2px -1px 3px rgba(0, 0, 0, 0.5),
        inset 1px 1px 2px rgba(255, 250, 230, 0.4),
        0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Ribcage */
.ribcage {
    position: absolute;
    top: 310px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 150px;
}

.sternum {
    position: absolute;
    top: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 14px;
    height: 92%;
    background: linear-gradient(to right,
        #6f6248 0%,
        #ddd2b4 28%,
        #f4ecd6 50%,
        #ddd2b4 72%,
        #6f6248 100%);
    border-radius: 30% 30% 50% 50% / 10% 10% 30% 30%;
    box-shadow:
        inset -2px 0 3px rgba(0, 0, 0, 0.45),
        inset 1px 0 2px rgba(255, 250, 230, 0.4),
        0 2px 4px rgba(0, 0, 0, 0.45);
    z-index: 2;
}

.rib {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid #ddd2b4;
    border-top-color: transparent;
    border-radius: 50%;
    background: transparent;
    box-shadow:
        inset 0 -3px 5px rgba(0, 0, 0, 0.35),
        0 2px 3px rgba(0, 0, 0, 0.5);
    border-left-color: #c5b794;
    border-right-color: #c5b794;
    border-bottom-color: #b8aa86;
}

.rib.r1 { top: 6px;  width: 175px; height: 38px; }
.rib.r2 { top: 28px; width: 185px; height: 46px; }
.rib.r3 { top: 52px; width: 195px; height: 54px; }
.rib.r4 { top: 78px; width: 188px; height: 56px; }
.rib.r5 { top: 104px; width: 175px; height: 52px; }

/* Pelvis */
.pelvis {
    position: absolute;
    top: 460px;
    left: 50%;
    transform: translateX(-50%);
    width: 170px;
    height: 70px;
    background: radial-gradient(ellipse at 50% 25%,
        #f4ecd6 0%,
        #ddd2b4 30%,
        #b8aa86 65%,
        #6f6248 100%);
    border-radius: 30% 30% 50% 50% / 25% 25% 90% 90%;
    box-shadow:
        inset -10px -12px 20px rgba(0, 0, 0, 0.55),
        inset 10px 10px 18px rgba(255, 245, 220, 0.18),
        0 6px 14px rgba(0, 0, 0, 0.5);
}

/* Pelvic socket holes */
.pelvis::before,
.pelvis::after {
    content: '';
    position: absolute;
    bottom: 8px;
    width: 28px;
    height: 32px;
    background:
        radial-gradient(ellipse at 50% 30%,
            #050505 0%,
            #0a0505 50%,
            rgba(40, 20, 12, 0.9) 100%);
    border-radius: 50%;
    box-shadow:
        inset 0 4px 8px rgba(0, 0, 0, 0.95),
        inset 0 -2px 4px rgba(80, 40, 20, 0.4);
}
.pelvis::before { left: 22px; }
.pelvis::after { right: 22px; }

/* ===== Arms ===== */
.arm {
    position: absolute;
    top: 305px;
    width: 22px;
    height: 230px;
    transform-origin: 50% 8px;
    z-index: 0;
}

.arm.left {
    left: 26px;
    animation: arm-sway-left 6s ease-in-out infinite;
}

.arm.right {
    right: 26px;
    animation: arm-sway-right 6s ease-in-out infinite;
}

.upper-arm {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 14px;
    height: 100px;
    background: linear-gradient(to right,
        #6f6248 0%,
        #ddd2b4 28%,
        #f4ecd6 50%,
        #ddd2b4 72%,
        #6f6248 100%);
    border-radius: 50% 50% 40% 40% / 8% 8% 12% 12%;
    box-shadow:
        inset -3px 0 4px rgba(0, 0, 0, 0.5),
        inset 2px 0 3px rgba(255, 250, 230, 0.35),
        0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Shoulder ball joint */
.upper-arm::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    background: radial-gradient(circle at 35% 30%,
        #f4ecd6 0%,
        #ddd2b4 45%,
        #6f6248 100%);
    border-radius: 50%;
    box-shadow:
        inset -3px -3px 5px rgba(0, 0, 0, 0.5),
        0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Elbow joint */
.upper-arm::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 18px;
    height: 16px;
    background: radial-gradient(circle at 35% 30%,
        #f4ecd6 0%,
        #ddd2b4 45%,
        #6f6248 100%);
    border-radius: 50%;
    box-shadow: inset -2px -2px 4px rgba(0, 0, 0, 0.5);
}

.forearm {
    position: absolute;
    top: 108px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 95px;
    background: linear-gradient(to right,
        #6f6248 0%,
        #ddd2b4 28%,
        #f4ecd6 50%,
        #ddd2b4 72%,
        #6f6248 100%);
    border-radius: 40% 40% 30% 30% / 8% 8% 12% 12%;
    box-shadow:
        inset -3px 0 4px rgba(0, 0, 0, 0.5),
        inset 2px 0 3px rgba(255, 250, 230, 0.35),
        0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Wrist */
.forearm::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 14px;
    height: 8px;
    background: radial-gradient(circle at 35% 30%, #f4ecd6, #b8aa86);
    border-radius: 50%;
}

.hand {
    position: absolute;
    top: 205px;
    left: 50%;
    transform: translateX(-50%);
    width: 22px;
    height: 28px;
    background: radial-gradient(ellipse at 35% 30%,
        #f4ecd6 0%,
        #ddd2b4 50%,
        #6f6248 100%);
    border-radius: 30% 30% 50% 50% / 35% 35% 70% 70%;
    box-shadow:
        inset -3px -3px 5px rgba(0, 0, 0, 0.5),
        0 3px 5px rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    gap: 1.5px;
    padding-top: 16px;
    padding-bottom: 0;
}

.hand span {
    width: 3px;
    height: 14px;
    background: linear-gradient(to bottom,
        #ddd2b4 0%,
        #b8aa86 60%,
        #6f6248 100%);
    border-radius: 30% 30% 50% 50%;
    box-shadow:
        inset -1px 0 1px rgba(0, 0, 0, 0.4),
        0 1px 1px rgba(0, 0, 0, 0.5);
}

/* ===== Legs ===== */
.leg {
    position: absolute;
    top: 510px;
    width: 32px;
    height: 200px;
    transform-origin: 50% 10px;
    z-index: 0;
}

.leg.left {
    left: 88px;
    animation: leg-sway-left 7s ease-in-out infinite;
}

.leg.right {
    right: 88px;
    animation: leg-sway-right 7s ease-in-out infinite;
}

.thigh {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 22px;
    height: 95px;
    background: linear-gradient(to right,
        #6f6248 0%,
        #ddd2b4 28%,
        #f4ecd6 50%,
        #ddd2b4 72%,
        #6f6248 100%);
    border-radius: 45% 45% 35% 35% / 8% 8% 12% 12%;
    box-shadow:
        inset -3px 0 5px rgba(0, 0, 0, 0.5),
        inset 2px 0 3px rgba(255, 250, 230, 0.35),
        0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Hip joint */
.thigh::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 26px;
    height: 24px;
    background: radial-gradient(circle at 35% 30%,
        #f4ecd6 0%,
        #ddd2b4 45%,
        #6f6248 100%);
    border-radius: 50%;
    box-shadow: inset -3px -3px 5px rgba(0, 0, 0, 0.5);
}

/* Kneecap */
.thigh::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 22px;
    height: 18px;
    background: radial-gradient(circle at 35% 30%,
        #f4ecd6 0%,
        #ddd2b4 45%,
        #6f6248 100%);
    border-radius: 50%;
    box-shadow:
        inset -3px -3px 5px rgba(0, 0, 0, 0.5),
        0 2px 4px rgba(0, 0, 0, 0.5);
}

.shin {
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    width: 18px;
    height: 90px;
    background: linear-gradient(to right,
        #6f6248 0%,
        #ddd2b4 28%,
        #f4ecd6 50%,
        #ddd2b4 72%,
        #6f6248 100%);
    border-radius: 40% 40% 30% 30% / 8% 8% 10% 10%;
    box-shadow:
        inset -3px 0 5px rgba(0, 0, 0, 0.5),
        inset 2px 0 3px rgba(255, 250, 230, 0.35),
        0 2px 4px rgba(0, 0, 0, 0.5);
}

.foot {
    position: absolute;
    top: 188px;
    left: 50%;
    transform: translateX(-58%);
    width: 40px;
    height: 16px;
    background: radial-gradient(ellipse at 30% 30%,
        #f4ecd6 0%,
        #ddd2b4 50%,
        #6f6248 100%);
    border-radius: 35% 65% 50% 50% / 60% 60% 40% 40%;
    box-shadow:
        inset -3px -3px 5px rgba(0, 0, 0, 0.5),
        0 4px 6px rgba(0, 0, 0, 0.6);
}

.leg.right .foot {
    transform: translateX(-42%);
    border-radius: 65% 35% 50% 50% / 60% 60% 40% 40%;
}

@keyframes arm-sway-left {
    0%, 100% { transform: rotate(8deg); }
    50% { transform: rotate(14deg); }
}

@keyframes arm-sway-right {
    0%, 100% { transform: rotate(-8deg); }
    50% { transform: rotate(-14deg); }
}

@keyframes leg-sway-left {
    0%, 100% { transform: rotate(2deg); }
    50% { transform: rotate(-1deg); }
}

@keyframes leg-sway-right {
    0%, 100% { transform: rotate(-2deg); }
    50% { transform: rotate(1deg); }
}

/* Section Titles */
.section-title {
    font-family: 'Creepster', cursive;
    font-size: 3.2rem;
    color: #6dd5fa;
    text-align: center;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    text-shadow: 0 0 15px rgba(109, 213, 250, 0.6);
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 25px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #6dd5fa, transparent);
    box-shadow: 0 0 10px rgba(109, 213, 250, 0.6);
}

.section-title i {
    font-size: 2.2rem;
    color: #4a9eff;
    filter: drop-shadow(0 0 10px rgba(74, 158, 255, 0.5));
}

/* Menu Section */
.menu-section {
    padding: 120px 0;
    background: 
        linear-gradient(180deg, rgba(5, 20, 40, 0.5) 0%, rgba(10, 30, 50, 0.7) 50%, rgba(5, 20, 40, 0.5) 100%);
    backdrop-filter: blur(8px);
    position: relative;
}

.menu-section::before,
.menu-section::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(109, 213, 250, 0.4), transparent);
}

.menu-section::before { top: 0; }
.menu-section::after { bottom: 0; }

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.menu-category {
    background: linear-gradient(135deg, rgba(20, 40, 60, 0.85), rgba(15, 30, 50, 0.9));
    border-radius: 18px;
    padding: 35px 30px;
    border: 1px solid rgba(109, 213, 250, 0.25);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.menu-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #6dd5fa, transparent);
    opacity: 0.6;
}

.menu-category:hover {
    transform: translateY(-8px);
    border-color: rgba(109, 213, 250, 0.55);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(109, 213, 250, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.category-title {
    font-family: 'Creepster', cursive;
    font-size: 2rem;
    color: #6dd5fa;
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    border-bottom: 1px solid rgba(109, 213, 250, 0.2);
    letter-spacing: 1.5px;
    text-shadow: 0 0 10px rgba(109, 213, 250, 0.4);
}

.category-title i {
    color: #ff9e6b;
    filter: drop-shadow(0 0 8px rgba(255, 158, 107, 0.5));
}

.menu-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.menu-item {
    background: rgba(8, 22, 40, 0.55);
    padding: 22px 24px;
    border-radius: 12px;
    border-left: 3px solid #4a9eff;
    transition: all 0.3s ease;
    position: relative;
}

.menu-item:hover {
    background: rgba(20, 45, 70, 0.75);
    border-left-color: #6dd5fa;
    transform: translateX(4px);
    box-shadow: -3px 0 15px rgba(109, 213, 250, 0.2);
}

.menu-item h4 {
    color: #c8e8f8;
    font-size: 1.25rem;
    margin-bottom: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.item-prices {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.price {
    color: #6dd5fa;
    font-weight: 600;
    font-size: 0.9rem;
    background: rgba(109, 213, 250, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid rgba(109, 213, 250, 0.25);
    white-space: nowrap;
}

.item-description {
    color: #a0d8f0;
    line-height: 1.5;
    margin-top: 10px;
    font-size: 0.9rem;
    font-style: italic;
}

/* Daily Special Button */
.daily-special-container {
    text-align: center;
    margin-bottom: 40px;
}

.daily-special-btn {
    background: linear-gradient(135deg, #4a0e4e 0%, #81347d 50%, #b85cb0 100%);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 18px 42px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 
        0 10px 30px rgba(129, 52, 125, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.daily-special-btn:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 18px 45px rgba(129, 52, 125, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

/* About Section */
.about-section {
    padding: 120px 0;
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.about-text h3 {
    font-family: 'Creepster', cursive;
    color: #6dd5fa;
    font-size: 1.6rem;
    margin: 25px 0 15px;
    letter-spacing: 1.5px;
    text-shadow: 0 0 10px rgba(109, 213, 250, 0.4);
}

.about-text h3:first-child { margin-top: 0; }

.about-text p {
    color: #b8d4e8;
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 15px;
}

.awards {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 35px;
    padding-top: 30px;
    border-top: 1px solid rgba(109, 213, 250, 0.2);
}

.award {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(109, 213, 250, 0.08);
    border: 1px solid rgba(109, 213, 250, 0.25);
    padding: 12px 18px;
    border-radius: 30px;
    color: #c8e8f8;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.award:hover {
    background: rgba(109, 213, 250, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(109, 213, 250, 0.2);
}

.award i {
    color: #ff9e6b;
    filter: drop-shadow(0 0 6px rgba(255, 158, 107, 0.5));
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(109, 213, 250, 0.15);
    border: 1px solid rgba(109, 213, 250, 0.3);
}

.about-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
    filter: brightness(0.9) saturate(1.1);
}

.about-image:hover .about-img {
    transform: scale(1.05);
}

.about-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 30, 50, 0.3) 0%, transparent 50%, rgba(10, 30, 50, 0.4) 100%);
    pointer-events: none;
    z-index: 1;
}

/* Contact Section */
.contact-section {
    padding: 120px 0;
    background: 
        linear-gradient(180deg, rgba(5, 20, 40, 0.5) 0%, rgba(10, 30, 50, 0.7) 50%, rgba(5, 20, 40, 0.5) 100%);
    backdrop-filter: blur(8px);
    position: relative;
}

.contact-section::before,
.contact-section::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(109, 213, 250, 0.4), transparent);
}

.contact-section::before { top: 0; }
.contact-section::after { bottom: 0; }

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-block {
    background: linear-gradient(135deg, rgba(20, 40, 60, 0.7), rgba(15, 30, 50, 0.8));
    border: 1px solid rgba(109, 213, 250, 0.2);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.info-block:hover {
    border-color: rgba(109, 213, 250, 0.45);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.info-block h3 {
    font-family: 'Creepster', cursive;
    color: #6dd5fa;
    font-size: 1.4rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: 1.5px;
}

.info-block h3 i {
    color: #ff9e6b;
    filter: drop-shadow(0 0 6px rgba(255, 158, 107, 0.5));
}

.info-block p {
    color: #b8d4e8;
    line-height: 1.7;
    font-size: 1rem;
}

.info-block a {
    color: #6dd5fa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-block a:hover {
    color: #ffffff;
    text-shadow: 0 0 8px rgba(109, 213, 250, 0.7);
}

.hours p {
    margin-bottom: 8px;
}

.amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 5px;
}

.amenity {
    background: rgba(109, 213, 250, 0.1);
    border: 1px solid rgba(109, 213, 250, 0.25);
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #c8e8f8;
    transition: all 0.3s ease;
}

.amenity:hover {
    background: rgba(109, 213, 250, 0.2);
    transform: translateY(-2px);
}

.social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 5px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(41, 128, 185, 0.3), rgba(109, 213, 250, 0.2));
    border: 1px solid rgba(109, 213, 250, 0.35);
    padding: 10px 18px;
    border-radius: 25px;
    color: #d4eef8;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: linear-gradient(135deg, rgba(41, 128, 185, 0.6), rgba(109, 213, 250, 0.4));
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(109, 213, 250, 0.3);
    color: #ffffff;
}

/* Contact Form */
.contact-form-container {
    background: linear-gradient(135deg, rgba(20, 40, 60, 0.8), rgba(15, 30, 50, 0.9));
    border: 1px solid rgba(109, 213, 250, 0.25);
    border-radius: 18px;
    padding: 35px;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    height: fit-content;
}

.contact-form-container h3 {
    font-family: 'Creepster', cursive;
    color: #6dd5fa;
    font-size: 1.7rem;
    margin-bottom: 25px;
    text-align: center;
    letter-spacing: 1.5px;
    text-shadow: 0 0 10px rgba(109, 213, 250, 0.4);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #c8e8f8;
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: rgba(8, 22, 40, 0.7);
    border: 1px solid rgba(109, 213, 250, 0.3);
    border-radius: 10px;
    padding: 12px 16px;
    color: #ffffff;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6dd5fa;
    background: rgba(15, 35, 60, 0.85);
    box-shadow: 0 0 0 3px rgba(109, 213, 250, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #1a5f8b 0%, #2980b9 50%, #6dd5fa 100%);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 16px 30px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 10px;
    box-shadow: 
        0 10px 25px rgba(109, 213, 250, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 15px 35px rgba(109, 213, 250, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

/* Map Container */
.map-container {
    margin-top: 60px;
    text-align: center;
}

.map-container h3 {
    font-family: 'Creepster', cursive;
    color: #6dd5fa;
    font-size: 1.8rem;
    margin-bottom: 25px;
    letter-spacing: 1.5px;
    text-shadow: 0 0 10px rgba(109, 213, 250, 0.4);
}

.map-container iframe {
    border-radius: 18px;
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(109, 213, 250, 0.15);
    border: 1px solid rgba(109, 213, 250, 0.3);
    filter: hue-rotate(180deg) invert(0.92);
}

/* Footer */
.footer {
    background: linear-gradient(180deg, rgba(5, 15, 30, 0.95), rgba(2, 8, 18, 1));
    padding: 50px 0 30px;
    border-top: 1px solid rgba(109, 213, 250, 0.2);
    position: relative;
    z-index: 10;
}

.footer-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Metal Mania', cursive;
    font-size: 1.8rem;
    color: #6dd5fa;
    text-shadow: 0 0 15px rgba(109, 213, 250, 0.6);
}

.footer-logo i {
    color: #ff9e6b;
    filter: drop-shadow(0 0 8px rgba(255, 158, 107, 0.5));
}

.footer-content p {
    color: #8fb8d6;
    font-size: 0.95rem;
    font-style: italic;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    color: #6b8fa8;
    font-size: 0.9rem;
}

.footer-links a {
    color: #6dd5fa;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
    text-shadow: 0 0 8px rgba(109, 213, 250, 0.7);
}

.footer-links span {
    color: rgba(109, 213, 250, 0.4);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 5, 15, 0.85);
    backdrop-filter: blur(8px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: modal-fade-in 0.3s ease;
}

.modal.active {
    display: flex;
}

@keyframes modal-fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: linear-gradient(135deg, rgba(30, 50, 80, 0.98), rgba(15, 30, 50, 0.98));
    border: 1px solid rgba(109, 213, 250, 0.4);
    border-radius: 20px;
    padding: 40px;
    max-width: 550px;
    width: 100%;
    position: relative;
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.6),
        0 0 60px rgba(109, 213, 250, 0.2);
    animation: modal-slide-in 0.4s ease;
}

@keyframes modal-slide-in {
    from { transform: translateY(-30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #6dd5fa;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    transition: all 0.3s ease;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close:hover {
    color: #ffffff;
    background: rgba(109, 213, 250, 0.15);
    transform: rotate(90deg);
}

.modal-header h2 {
    font-family: 'Creepster', cursive;
    color: #ff9e6b;
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-shadow: 0 0 15px rgba(255, 158, 107, 0.5);
}

.modal-body h3 {
    font-family: 'Creepster', cursive;
    color: #6dd5fa;
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 15px;
    letter-spacing: 1.5px;
}

.special-price {
    text-align: center;
    color: #ffd166;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(255, 209, 102, 0.5);
}

.special-description {
    color: #c8e8f8;
    line-height: 1.7;
    text-align: center;
    margin-bottom: 25px;
    font-size: 1rem;
}

.special-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(109, 213, 250, 0.2);
}

.special-features span {
    color: #b8d4e8;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: linear-gradient(135deg, rgba(10, 30, 50, 0.98), rgba(20, 40, 60, 0.98));
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 20px 0;
        backdrop-filter: blur(10px);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        margin: 15px 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-tagline {
        font-size: 1.4rem;
    }
    
    .section-title {
        font-size: 2rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .massive-skeleton {
        left: 2%;
        width: 200px;
        height: 500px;
        bottom: 0;
        transform: scale(0.7);
        transform-origin: bottom left;
    }
    
    .moon {
        width: 90px;
        height: 90px;
    }
    
    .fish {
        width: 20px;
        height: 15px;
    }
    
    .cthulhu-silhouette {
        width: 150px;
        height: 200px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-tagline {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .menu-category {
        padding: 20px;
    }
    
    .massive-skeleton {
        display: none;
    }
}