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

body {
    font-family: 'Roboto', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(180deg, #1a0a0a 0%, #2d1010 50%, #1a0a0a 100%);
    color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

.lights {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    pointer-events: none;
    z-index: 100;
}

.light {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: flash 1.5s ease-in-out infinite;
}

.l1 { left: 5%; top: 15px; background: #ff0000; animation-delay: 0s; }
.l2 { left: 15%; top: 25px; background: #ffff00; animation-delay: 0.2s; }
.l3 { left: 25%; top: 10px; background: #00ff00; animation-delay: 0.4s; }
.l4 { left: 35%; top: 20px; background: #ff0000; animation-delay: 0.6s; }
.l5 { left: 45%; top: 12px; background: #ffff00; animation-delay: 0.8s; }
.l6 { left: 55%; top: 22px; background: #00ff00; animation-delay: 1s; }

@keyframes flash {
    0%, 100% { opacity: 0.3; transform: scale(1); box-shadow: none; }
    50% { opacity: 1; transform: scale(1.5); box-shadow: 0 0 20px currentColor; }
}

.age-warning {
    background: linear-gradient(90deg, #b8860b, #ffd700, #b8860b);
    color: #1a0a0a;
    text-align: center;
    padding: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    position: relative;
    z-index: 101;
}

header {
    background: linear-gradient(180deg, #8b0000 0%, #cc0000 50%, #8b0000 100%);
    padding: 25px 20px;
    box-shadow: 0 4px 20px rgba(139, 0, 0, 0.5), 0 0 40px rgba(255, 215, 0, 0.2);
    border-bottom: 3px solid #ffd700;
}

.header-content {
    max-width: 900px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.slot-col {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.reel {
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid #ffd700;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 1.5rem;
    text-align: center;
    animation: spin 2s ease-in-out infinite;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5), 0 0 10px rgba(255, 215, 0, 0.3);
}

.reel:nth-child(1) { animation-delay: 0s; }
.reel:nth-child(2) { animation-delay: 0.3s; }
.reel:nth-child(3) { animation-delay: 0.6s; }

@keyframes spin {
    0%, 100% { transform: rotateX(0deg); }
    25% { transform: rotateX(10deg); }
    75% { transform: rotateX(-10deg); }
}

.logo-text {
    text-align: center;
}

.logo h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3rem;
    color: #ffd700;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 215, 0, 0.3);
    letter-spacing: 3px;
}

.subtitle {
    font-size: 1rem;
    color: #fff;
    letter-spacing: 4px;
    margin-top: 5px;
    opacity: 0.9;
}

.header-emoji {
    text-align: center;
    margin-top: 15px;
    font-size: 1.3rem;
    letter-spacing: 8px;
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); }
    50% { text-shadow: 0 0 30px rgba(255, 215, 0, 1), 0 0 50px rgba(255, 215, 0, 0.5); }
}

main {
    flex: 1;
    padding: 30px 20px;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

.hero {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.6) 0%, rgba(25, 25, 25, 0.8) 100%);
    border-radius: 20px;
    padding: 40px 30px;
    margin-bottom: 30px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '✨🍒🔔💰🍀🎰🍀💰🔔🍒✨';
    position: absolute;
    top: 10px;
    left: 0;
    right: 0;
    font-size: 1.2rem;
    opacity: 0.4;
    letter-spacing: 5px;
    animation: scrollText 20s linear infinite;
}

@keyframes scrollText {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-emoji-top {
    font-size: 1.5rem;
    margin-bottom: 15px;
    letter-spacing: 8px;
}

.hero-emoji-bottom {
    font-size: 1.3rem;
    margin-top: 20px;
    letter-spacing: 5px;
}

.hero h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.2rem;
    color: #ffd700;
    margin-bottom: 10px;
}

.tagline {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 25px;
}

.cta-phone {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.phone-label {
    font-size: 0.9rem;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.phone-number {
    background: linear-gradient(180deg, #ffd700 0%, #b8860b 100%);
    color: #1a0a0a;
    font-size: 1.8rem;
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
    animation: pulse 2s ease-in-out infinite;
}

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

.phone-number:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.6);
}

.info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.card {
    background: linear-gradient(180deg, rgba(30, 15, 15, 0.9) 0%, rgba(20, 10, 10, 0.95) 100%);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    display: flex;
    gap: 15px;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 0, 0, 0.3), 0 0 20px rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.5);
}

.card-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.card-content h3 {
    color: #ffd700;
    margin-bottom: 10px;
    font-size: 1.2rem;
    font-weight: 600;
}

.card-content p {
    color: #ddd;
    line-height: 1.6;
    font-size: 1rem;
}

.card-content a {
    color: #ffd700;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 500;
}

.card-content a:hover {
    text-decoration: underline;
}

.card-emoji {
    margin-top: 10px;
    font-size: 1.2rem;
}

.hours {
    list-style: none;
}

.day-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.95rem;
}

.day-row:last-child {
    border-bottom: none;
}

.day-row .day {
    color: #ccc;
}

.day-row .time {
    color: #fff;
    font-weight: 500;
}

.day-row.friday .time,
.day-row.saturday .time {
    color: #ffd700;
    font-weight: 700;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    padding: 25px;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    margin-bottom: 30px;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: transform 0.3s, border-color 0.3s;
}

.feature:hover {
    transform: scale(1.05);
    border-color: rgba(255, 215, 0, 0.5);
}

.feature-icon {
    font-size: 3rem;
}

.feature-text {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-emoji {
    font-size: 1rem;
    letter-spacing: 2px;
}

.cta-section {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(139, 0, 0, 0.3) 100%);
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.cta-content h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.8rem;
    color: #ffd700;
    margin-bottom: 10px;
}

.cta-content p {
    color: #ccc;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: transform 0.3s, box-shadow 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn:hover {
    transform: scale(1.05);
}

.btn-call {
    background: linear-gradient(180deg, #ffd700 0%, #b8860b 100%);
    color: #1a0a0a;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.btn-call:hover {
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.6);
}

.btn-map {
    background: linear-gradient(180deg, #cc0000 0%, #8b0000 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.4);
}

.btn-map:hover {
    box-shadow: 0 6px 25px rgba(139, 0, 0, 0.6);
}

footer {
    background: linear-gradient(180deg, #0d0505 0%, #1a0a0a 100%);
    padding: 25px 20px;
    border-top: 2px solid rgba(255, 215, 0, 0.2);
    margin-top: auto;
}

.footer-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.footer-emoji {
    font-size: 1.5rem;
    margin-bottom: 10px;
    letter-spacing: 5px;
}

.copyright {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.disclaimer {
    color: #666;
    font-size: 0.8rem;
}

.footer-emoji-bottom {
    margin-top: 15px;
    font-size: 1.2rem;
    letter-spacing: 3px;
}

@media (max-width: 600px) {
    .logo h1 {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    .reel {
        font-size: 1.2rem;
        padding: 5px 8px;
    }
    
    .slot-col {
        gap: 3px;
    }
    
    .hero h2 {
        font-size: 1.6rem;
    }
    
    .phone-number {
        font-size: 1.4rem;
        padding: 10px 25px;
    }
    
    .features {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 20px 15px;
    }
    
    .feature-icon {
        font-size: 2.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
}