/* Import fonts */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Roboto:wght@300;400;700&display=swap');

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0033 50%, #000000 100%);
    color: #ffffff;
    line-height: 1.6;
    min-height: 100vh;
}

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

/* Neon text effect */
.neon-text {
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    color: #ff006e;
    text-shadow: 
        0 0 5px #ff006e,
        0 0 10px #ff006e,
        0 0 15px #ff006e,
        0 0 20px #ff006e,
        0 0 25px #ff006e;
    animation: flicker 2s infinite alternate;
}

@keyframes flicker {
    0%, 18%, 22%, 25%, 53%, 57%, 100% {
        text-shadow: 
            0 0 5px #ff006e,
            0 0 10px #ff006e,
            0 0 15px #ff006e,
            0 0 20px #ff006e,
            0 0 25px #ff006e;
    }
    20%, 24%, 55% {
        text-shadow: none;
    }
}

/* Header */
.header {
    text-align: center;
    padding: 40px 0;
    border-bottom: 2px solid #ff006e;
    margin-bottom: 40px;
}

.header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.tagline {
    font-size: 1.2rem;
    color: #ffbe0b;
    font-style: italic;
    text-shadow: 0 0 10px #ffbe0b;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 60px 0;
    background: linear-gradient(45deg, #8b00ff, #ff006e);
    border-radius: 20px;
    margin-bottom: 40px;
    box-shadow: 0 0 30px rgba(255, 0, 110, 0.5);
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.pulsing-text {
    font-size: 1.1rem;
    color: #ffbe0b;
    animation: pulse 1.5s ease-in-out infinite alternate;
}

@keyframes pulse {
    from { opacity: 0.6; }
    to { opacity: 1; }
}

/* Club Info Section */
.club-info {
    margin: 60px 0;
}

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

.info-card {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid #ff006e;
    text-align: center;
    box-shadow: 0 5px 20px rgba(255, 0, 110, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 0, 110, 0.5);
}

.info-card h3 {
    color: #ffbe0b;
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-shadow: 0 0 10px #ffbe0b;
}

.info-card small {
    color: #ff006e;
    font-style: italic;
}

/* Section Titles */
.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.2rem;
    text-align: center;
    margin: 50px 0 30px 0;
    color: #ffbe0b;
    text-shadow: 0 0 15px #ffbe0b;
}

/* Menu Section */
.menu {
    margin: 60px 0;
}

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

.menu-item {
    background: linear-gradient(135deg, #2d1b69, #11998e);
    padding: 25px;
    border-radius: 10px;
    border-left: 5px solid #ff006e;
    position: relative;
    transition: transform 0.3s ease;
}

.menu-item:hover {
    transform: scale(1.05);
}

.menu-item h4 {
    color: #ffbe0b;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.menu-item p {
    margin-bottom: 15px;
    opacity: 0.9;
}

.price {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #ff006e;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Events Section */
.events {
    margin: 60px 0;
}

.events-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.event {
    display: flex;
    background: linear-gradient(90deg, #ff006e, #8b00ff);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(255, 0, 110, 0.4);
    transition: transform 0.3s ease;
}

.event:hover {
    transform: translateX(10px);
}

.event-date {
    background: rgba(0, 0, 0, 0.7);
    padding: 30px 25px;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 1.2rem;
    text-align: center;
    min-width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-details {
    padding: 25px 30px;
    flex: 1;
}

.event-details h4 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #ffbe0b;
}

/* VIP Section */
.vip {
    margin: 60px 0;
    padding: 40px 0;
}

.vip-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.vip-tier {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    padding: 40px 30px;
    border-radius: 20px;
    border: 2px solid #8b00ff;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.vip-tier.featured {
    border-color: #ff006e;
    box-shadow: 0 0 30px rgba(255, 0, 110, 0.5);
    transform: scale(1.05);
}

.vip-tier:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(139, 0, 255, 0.4);
}

.vip-tier.featured:hover {
    box-shadow: 0 15px 40px rgba(255, 0, 110, 0.6);
}

.vip-tier h3 {
    color: #ffbe0b;
    font-size: 1.6rem;
    margin-bottom: 25px;
    text-shadow: 0 0 10px #ffbe0b;
}

.vip-tier ul {
    list-style: none;
    margin-bottom: 30px;
}

.vip-tier li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 190, 11, 0.2);
}

.vip-tier li:last-child {
    border-bottom: none;
}

.vip-tier .price {
    position: static;
    background: linear-gradient(45deg, #ff006e, #8b00ff);
    padding: 15px 25px;
    border-radius: 25px;
    font-size: 1.3rem;
    font-weight: bold;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
    margin-top: 80px;
    padding: 40px 0 20px 0;
    border-top: 2px solid #ff006e;
    text-align: center;
}

.footer-content p {
    margin-bottom: 15px;
}

.disclaimer {
    font-size: 0.9rem;
    opacity: 0.7;
    font-style: italic;
}

.social-links {
    margin-top: 20px;
    color: #ffbe0b;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header h1 {
        font-size: 2rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .container {
        padding: 15px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .vip-tiers {
        grid-template-columns: 1fr;
    }
    
    .vip-tier.featured {
        transform: none;
    }
    
    .event {
        flex-direction: column;
    }
    
    .event-date {
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .header h1 {
        font-size: 1.5rem;
    }
    
    .hero-title {
        font-size: 1.6rem;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .menu-item {
        min-width: auto;
    }
}

/* Fun hover effects */
.info-card:hover h3,
.menu-item:hover h4,
.vip-tier:hover h3 {
    animation: bounce 0.6s ease;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}