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

body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1810 50%, #1a1a1a 100%);
    color: #f5f5f5;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
}

.container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    max-width: 800px;
    width: 100%;
}

.logo h1 {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(3rem, 10vw, 6rem);
    letter-spacing: 8px;
    color: #d4a574;
    text-shadow:
        0 0 10px rgba(212, 165, 116, 0.5),
        0 0 20px rgba(212, 165, 116, 0.3),
        0 0 30px rgba(212, 165, 116, 0.2);
    margin-bottom: 10px;
    animation: glow 2s ease-in-out infinite alternate;
}

.subtitle {
    font-family: 'Roboto', sans-serif;
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    letter-spacing: 4px;
    color: #b8956a;
    font-weight: 300;
    margin-bottom: 60px;
}

.construction {
    margin: 40px 0;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(212, 165, 116, 0.3);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.beer-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: bounce 2s ease-in-out infinite;
}

.construction h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(2rem, 5vw, 3rem);
    color: #d4a574;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.construction p {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: #ccc;
    font-weight: 300;
    margin-bottom: 30px;
}

.dots {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.dot {
    width: 12px;
    height: 12px;
    background: #d4a574;
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
}

.dot:nth-child(2) {
    animation-delay: 0.3s;
}

.dot:nth-child(3) {
    animation-delay: 0.6s;
}

.info {
    margin-top: 40px;
}

.info p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #b8956a;
    margin: 10px 0;
    font-weight: 300;
}

.tagline {
    font-style: italic;
    color: #8a7456 !important;
    font-size: clamp(0.9rem, 1.8vw, 1.1rem) !important;
}

footer {
    padding: 20px;
    color: #666;
    font-size: 0.9rem;
    text-align: center;
}

/* Animaciones */
@keyframes glow {
    from {
        text-shadow:
            0 0 10px rgba(212, 165, 116, 0.5),
            0 0 20px rgba(212, 165, 116, 0.3),
            0 0 30px rgba(212, 165, 116, 0.2);
    }
    to {
        text-shadow:
            0 0 20px rgba(212, 165, 116, 0.8),
            0 0 30px rgba(212, 165, 116, 0.5),
            0 0 40px rgba(212, 165, 116, 0.3);
    }
}

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

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

/* Responsive */
@media (max-width: 768px) {
    .construction {
        padding: 30px 20px;
    }

    .logo h1 {
        letter-spacing: 4px;
    }

    .subtitle {
        letter-spacing: 2px;
    }
}