body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    font-family: 'NeuePlak-CompRegular', Arial, sans-serif;
    background: #CBCBCB;
    position: relative;
    overflow-x: hidden;
}
.background-blur {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: url('../img/Arte\ urboi.\ -\ funnynoiseclub\ VOL1.webp') center 45%/90vw no-repeat;
    filter: blur(8px) brightness(0.8);
    z-index: 1;
}
.background-blur::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(255,255,255,0.45);
    pointer-events: none;
}
.center-content {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: -2.5vw;
    padding-top: 40px;
}
.countdown-logo-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 0px;
    margin-left: 6vw;
}
.countdown-block {
    display: flex;
    align-items: center;
    min-width: 40vw;
}
.countdown-timer {
    display: flex;
    align-items: center;
    gap: 0;
}
.countdown-col {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.countdown-number {
    font-family: 'NeuePlak-CompBold', Arial, sans-serif;
    font-size: 7.5vw;
    color: #111;
    font-weight: bold;
    letter-spacing: 0px;
    text-align: center;
    line-height: 1;
}
.countdown-label {
    font-family: 'NeuePlak-CompBold', Arial, sans-serif;
    font-size: 1.2vw;
    color: #111;
    font-weight: bold;
    margin-top: 0;
    letter-spacing: 0px;
    text-align: center;
    text-transform: lowercase;
}
.countdown-sep {
    font-size: 5.5vw;
    color: #111;
    font-weight: bold;
    margin: 0 0.05vw;
    align-self: center;
    line-height: 1;
    position: relative;
    top: -1vw;
}
.logo-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: 0px;
    justify-content: center;
    flex-shrink: 0;
    margin-top: -1vw;
}
.logo-img {
    width: 140px;
    height: auto;
    margin-bottom: 0vw;
    animation: logoGlow 2.5s infinite cubic-bezier(.4,0,.2,1);
    filter: drop-shadow(0 0 8px #000) drop-shadow(0 0 16px #000) brightness(1.1);
    transition: filter 0.3s, box-shadow 0.3s;
}
.logo-text {
    font-family: 'NeuePlak-CompBold', Arial, sans-serif;
    font-size: 1.5vw;
    color: #111;
    font-weight: bold;
    letter-spacing: 0px;
    text-align: center;
    margin-top: 0.8vw;
}

@keyframes logoGlow {
    0% { filter: drop-shadow(0 0 0px #000) brightness(1); }
    50% { filter: drop-shadow(0 0 24px #000) brightness(1.15); }
    100% { filter: drop-shadow(0 0 0px #000) brightness(1); }
}


.button-group {
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin-bottom: 12px;
    align-items: center;
    margin-top: 60px;
}
.main-btn {
    background: #111;
    color: #fff;
    font-family: 'NeuePlak-CompBold', Arial, sans-serif;
    font-size: 1.4vw;
    font-weight: bold;
    border: none;
    border-radius: 40px;
    padding: 25px 0;
    cursor: pointer;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
    transition: background 0.2s, transform 0.2s;
    outline: none;
    text-decoration: none;
    display: block;
    width: 350px;
    max-width: 90vw;
    text-align: center;
    margin: 0 auto;
}
.main-btn:hover {
    background: #222;
    transform: scale(1.03);
}
.manifesto {
    color: #111;
    font-family: 'NeueHaasDisplayMediu', Arial, sans-serif;
    font-size: 1.2vw;
    font-weight: 900;
    max-width: 790px;
    margin: 0 auto;
    margin-top: 20px;
    text-align: center;
}
.manifesto strong {
    font-family: 'NeuePlak-CompBold', Arial, sans-serif;
    font-weight: bold;
}
.manifesto em {
    font-style: italic;
}
@media (max-width: 900px) {
    .countdown-number {
        font-size: 10.5vw;
    }
    .countdown-label {
        font-size: 1.8vw;
    }
    .countdown-sep {
        font-size: 8vw;
        top: -1.8vw;
    }
    .logo-img {
        width: 120px;
    }
    .logo-text {
        font-size: 3.3vw;
    }
    .main-btn {
        font-size: 1.4vw;
        padding: 22px 60px;
    }
    .manifesto {
        font-size: 2.2vw;
    }
}
@media (max-width: 600px) {
    .countdown-logo-row {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 10px;
        margin-top: 30px;
        position: relative;
        left: -10px;
    }
    .logo-block {
        display: flex !important;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 6px;
        margin-bottom: 6px;
        margin-top: 0;
        width: 100%;
    }
    .logo-img {
        display: block !important;
        width: 38px !important;
        height: 38px !important;
    }
    .logo-text {
        display: block !important;
        font-size: 1rem !important;
        font-family: 'NeuePlak-CompBold', Arial, sans-serif;
        margin-left: 4px;
        margin-top: 0 !important;
        letter-spacing: 1px;
    }
    .countdown-block {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 0;
    }
    .countdown-timer {
        display: flex;
        flex-direction: row;
        justify-content: center !important;
        align-items: center !important;
        font-size: 2.6rem;
        gap: 0px;
        width: max-content;
        margin: 0 auto;
        left: 50%;
        transform: translateX(0);
    }
    .countdown-col {
        margin: 0 0.5px !important;
        padding: 0 !important;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .countdown-number {
        font-size: 3.2rem !important;
        text-align: center;
        display: block;
    }
    .countdown-label {
        font-size: 0.7rem !important;
        text-align: center;
        letter-spacing: 1px;
        display: block;
    }
    .countdown-sep {
        font-size: 2.8rem !important;
        margin: 0 0.5px;
        display: block;
    }
    .button-group {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-top: 30px;
        margin-bottom: 20px;
    }
    .main-btn, .btn-invitado {
        width: 82vw !important;
        max-width: 290px;
        font-size: 1.3rem !important;
        padding: 20px 0 !important;
        border-radius: 40px !important;
        text-align: center !important;
        justify-content: center !important;
        align-items: center !important;
        display: flex !important;
    }
    a.btn-invitado {
        margin-top: -10px !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }
    .manifesto {
        font-size: 1.1rem;
        padding: 0 10px;
        text-align: center !important;
        margin: -18px auto 40px auto !important;
        max-width: 100vw;
        position: relative;
        top: 0 !important;
    }
    .manifesto p, .manifesto strong, .manifesto em, .manifesto br {
        text-align: center !important;
        display: block;
        width: 100%;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    .center-content {
        width: 100vw;
        min-height: 100vh;
        box-sizing: border-box;
        padding: 10px 0 0 0;
        justify-content: flex-start !important;
        padding-top: 20px !important;
        padding-bottom: 40px !important;
    }
    .main-btn {
        text-decoration: none !important;
        border-bottom: none !important;
        box-shadow: none !important;
    }
    .button-group a {
        text-decoration: none !important;
    }
}

.modal-registro {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.8); display: flex; align-items: center; justify-content: center; z-index: 9999;
    backdrop-filter: blur(5px);
}
.modal-content-registro {
    background: #111; color: #fff; padding: 50px 40px; border-radius: 20px; 
    min-width: 350px; max-width: 90vw; box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    position: relative; border: 1px solid #333;
}
.modal-content-registro h2 {
    font-family: 'NeuePlak-CompBold', sans-serif; font-size: 2rem; margin-bottom: 30px; text-align: center;
}
.close-registro {
    position: absolute; top: 20px; right: 25px; font-size: 2.5rem; cursor: pointer; color: #999;
    transition: color 0.3s ease;
}
.close-registro:hover { color: #fff; }
#registroForm input {
    display: block; width: 100%; margin-bottom: 20px; padding: 15px; font-size: 1rem; 
    border-radius: 10px; border: 2px solid #333; background: #222; color: #fff;
    font-family: 'NeueHaasDisplayMediu', sans-serif; transition: border-color 0.3s ease;
}
#registroForm input:focus {
    outline: none; border-color: #fff;
}
#registroForm input::placeholder { color: #999; }
#registroForm button {
    display: block; width: 100%; margin-bottom: 20px; padding: 15px; font-size: 1.1rem; 
    border-radius: 10px; background: #fff; color: #111; font-weight: bold; border: none; 
    cursor: pointer; font-family: 'NeuePlak-CompBold', sans-serif; transition: all 0.3s ease;
}
#registroForm button:hover { background: #f0f0f0; transform: translateY(-2px); }
#registroMensaje { 
    margin-top: 15px; font-weight: bold; text-align: center; padding: 10px; border-radius: 8px;
    font-family: 'NeueHaasDisplayMediu', sans-serif;
}

/* Estilos para la página de registro */
.registro-container {
    position: relative; z-index: 10; min-height: 100vh; display: flex; flex-direction: column;
    margin-top: 0 !important;
}
.registro-header {
    display: flex; justify-content: space-between; align-items: center; padding: 30px 50px;
}
.back-link {
    color: #111 !important;
    text-decoration: none;
    font-family: 'NeueHaasDisplayMediu', sans-serif;
    font-size: 1.1rem;
    transition: opacity 0.3s ease;
}
.back-link:hover { opacity: 0.7; }
.logo-registro {
    display: flex; align-items: center; gap: 15px;
}
.logo-img-registro {
    width: 50px; height: 50px;
    filter: brightness(0) invert(0) !important;
}
.logo-text-registro {
    font-family: 'NeuePlak-CompBold', sans-serif;
    font-size: 1.5rem;
    color: #111 !important;
}
.registro-form-container {
    flex: 1; display: flex; flex-direction: column; justify-content: flex-start; align-items: center;
    padding: 0 20px; max-width: 500px; margin: 15px auto 0 auto; width: 100%;
    margin-top: 60px !important;
}
.registro-form-container h1 {
    font-family: 'NeuePlak-CompBold', sans-serif;
    font-size: 3rem;
    color: #111 !important;
    margin-bottom: 10px;
    text-align: center;
}
.registro-subtitle {
    font-family: 'NeueHaasDisplayLight', sans-serif;
    font-size: 1.2rem;
    color: #fff !important;
    margin-bottom: 50px;
    text-align: center;
}
.registro-form {
    width: 100%; max-width: 420px; margin: 0 auto; background: rgba(0,0,0,0.3); padding: 40px; border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1); backdrop-filter: blur(10px); display: flex; flex-direction: column; align-items: center;
}
.form-group {
    width: 100%; display: flex; flex-direction: column; align-items: center; margin-bottom: 25px;
}
.form-group label {
    align-self: flex-start;
}
.form-group input {
    width: 100%; max-width: 100%; margin: 0 auto; padding: 15px; font-size: 1rem; border-radius: 10px;
    border: 2px solid rgba(255,255,255,0.2); background: #222; color: #fff; font-family: 'NeueHaasDisplayMediu', sans-serif; transition: all 0.3s ease;
    box-sizing: border-box;
}
.form-group input:focus {
    outline: none;
    border-color: #fff;
    background: #222;
}
.form-group input::placeholder {
    color: rgba(255,255,255,0.6);
}
.registro-btn {
    width: 100%; padding: 18px; font-size: 1.2rem; border-radius: 10px;
    background: #fff; color: #111; border: none; cursor: pointer;
    font-family: 'NeuePlak-CompBold', sans-serif; font-weight: bold;
    transition: all 0.3s ease; margin-top: 10px;
}
.registro-btn:hover {
    background: #f0f0f0; transform: translateY(-2px); box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}
.registro-mensaje {
    margin-top: 20px; padding: 15px; border-radius: 10px; text-align: center;
    font-family: 'NeueHaasDisplayMediu', sans-serif; font-weight: bold;
}
.registro-mensaje.success {
    background: rgba(0,255,0,0.1); border: 1px solid rgba(0,255,0,0.3); color: #90EE90;
}
.registro-mensaje.error {
    background: rgba(255,0,0,0.1); border: 1px solid rgba(255,0,0,0.3); color: #FFB6C1;
}
.registro-footer {
    margin-top: 30px; text-align: center;
}
.registro-footer p {
    font-family: 'NeueHaasDisplayLight', sans-serif;
    color: #fff !important;
    font-size: 1rem;
}
.login-link {
    color: #111 !important;
    text-decoration: none;
    font-family: 'NeueHaasDisplayMediu', sans-serif;
    transition: opacity 0.3s ease;
}
.login-link:hover { opacity: 0.7; }

@media (max-width: 768px) {
    .registro-header { padding: 20px; }
    .registro-form-container h1 { font-size: 2.5rem; }
    .registro-form { padding: 30px 20px; }
    .back-link { font-size: 1rem; }
}

.btn-invitado {
    background: none;
    color: #111;
    border: none;
    font-family: 'NeuePlak-CompRegular', Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    padding: 10px 0 0 0;
    cursor: pointer;
    text-decoration: underline transparent;
    transition: text-decoration-color 0.2s, color 0.2s;
    box-shadow: none;
    outline: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-invitado::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 1px;
    width: 100%;
    height: 2px;
    background: #000;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s cubic-bezier(.4,0,.2,1);
}

.btn-invitado:hover::after {
    transform: scaleX(1);
}

.btn-invitado:hover {
    color: #222;
    text-decoration-color: #111;
    text-decoration: underline;
}

/* Ocultar hamburguesa en escritorio, mostrar solo en móvil */
.hamburger {
  display: none !important;
}
@media (max-width: 800px) {
  .hamburger {
    display: flex !important;
  }
}

@media (max-width: 600px) {
  .registro-header {
    padding: 10px 10px !important;
  }
  .logo-img-registro {
    width: 32px !important;
    height: 32px !important;
  }
  .logo-text-registro {
    font-size: 1rem !important;
  }
  .registro-form-container {
    width: 100% !important;
    max-width: 98vw !important;
    margin: 10px auto 0 auto !important;
    padding: 0 2vw !important;
    box-sizing: border-box !important;
    margin-top: 40px !important;
  }
  .registro-form {
    width: 100% !important;
    max-width: 100% !important;
    padding: 24px 0 !important;
    border-radius: 10px !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }
  .form-group {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    box-sizing: border-box !important;
  }
  .form-group label {
    font-size: 1.02rem !important;
    width: 80% !important;
    margin: 0 auto 8px auto !important;
    text-align: left !important;
    box-sizing: border-box !important;
  }
  .form-group input {
    width: 80% !important;
    margin: 0 auto !important;
    height: 44px !important;
    font-size: 1.05rem !important;
    padding: 10px !important;
    border-radius: 6px !important;
    box-sizing: border-box !important;
  }
  .registro-btn {
    width: 80% !important;
    margin: 8px auto 0 auto !important;
    height: 48px !important;
    font-size: 1.08rem !important;
    padding: 12px !important;
    border-radius: 6px !important;
    box-sizing: border-box !important;
  }
  .registro-form-container h1 {
    font-size: 1.18rem !important;
    margin-bottom: 10px !important;
  }
  .registro-subtitle {
    font-size: 1.02rem !important;
    margin-bottom: 18px !important;
  }
  .background-blur {
    background-size: 200vw !important;
  }
  .registro-form-container.registro-form-container-registro {
    margin-top: 40px !important;
  }
  .registro-footer {
    margin-top: -10px !important;
    margin-bottom: 0 !important;
  }
  .main-btn {
    text-decoration: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
  }
  .button-group a {
    text-decoration: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
  }
}

.login-form-container {
    margin-top: 80px !important;
}

.registro-form-container-registro {
    margin-top: -80px !important;
}

@media (min-width: 601px) and (max-width: 1024px) {
    .main-btn, .btn-invitado, .button-group a {
        width: 48vw !important;
        max-width: 540px;
        font-size: 2.1rem !important;
        padding: 28px 0 !important;
        border-radius: 44px !important;
        text-align: center !important;
        justify-content: center !important;
        align-items: center !important;
        display: flex !important;
        text-decoration: none !important;
        border-bottom: none !important;
        box-shadow: none !important;
    }
    .main-btn::after, .btn-invitado::after, .button-group a::after {
        border-bottom: none !important;
        text-decoration: none !important;
        content: none !important;
        display: none !important;
    }
    .btn-invitado {
        font-size: 1.7rem !important;
        padding: 18px 0 0 0 !important;
        margin-top: 10px !important;
    }
    .button-group {
        gap: 12px !important;
    }
    .manifesto {
        font-size: 1.6rem !important;
        padding-left: 40px !important;
        padding-right: 40px !important;
    }
}

@media (min-width: 601px) and (max-width: 1024px) {
    .background-blur {
        background-size: 200vw !important;
    }
} 

/* Checklist horizontal para registro */
.checklist-horizontal {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    margin-left: 0;
    padding-left: 0;
}
.checklist-horizontal input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 0 8px 0 0 !important;
    vertical-align: middle;
    display: inline-block;
}
.checklist-horizontal label {
    margin: 0;
    font-size: 1.08rem;
    font-family: 'NeueHaasDisplayMediu', Arial, sans-serif;
    font-weight: 400;
    color: #111;
    width: auto;
    text-align: left;
    display: inline;
    white-space: normal;
    padding-left: 0;
} 

.form-group.checklist-horizontal {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    min-height: 32px;
    width: 100% !important;
    min-width: 320px;
    margin-left: -75px !important;
    max-width: 100%;
    position: relative;
    top: -10px;
    left: -5px;
}
.checklist-horizontal label {
    display: inline-block !important;
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    color: #111;
    font-size: 0.98rem;
    font-family: 'NeueHaasDisplayMediu', Arial, sans-serif;
    font-weight: 400;
    vertical-align: middle !important;
    line-height: 1.2;
    white-space: nowrap !important;
    position: relative;
    top: 7px;
    right: 50px;
} 
.form-group.checklist-horizontal.ajustar-izq {
    margin-left: -20px !important;
} 
.form-group.checklist-horizontal.ajustar-izq label {
    right: 30px !important;
} 

@media (max-width: 600px) {
    .main-btn {
        width: 90vw !important;
        max-width: 320px !important;
        font-size: 1rem !important;
        padding: 12px 0 !important;
        border-radius: 18px !important;
        display: block !important;
        margin: 0 auto 12px auto !important;
        text-align: center !important;
        box-shadow: none !important;
    }
    .button-group {
        gap: 12px !important;
        margin-top: 18px !important;
        margin-bottom: 0 !important;
        width: 100%;
    }
} 

.button-group a,
.button-group a:visited,
.button-group a:active,
.button-group a:focus,
.button-group a:hover {
    text-decoration: none !important;
    box-shadow: none !important;
    border-bottom: none !important;
} 

@media (min-width: 1600px) {
  .logo-block {
    margin-top: 0.5vw;
  }
  .logo-img {
    width: 155px;
  }
  .logo-text {
    font-size: 1.6vw;
  }
} 

@media (min-width: 1000px) and (max-width: 1599px) {
  .manifesto {
    font-size: 1.4vw;
  }
} 

@media (max-width: 600px) {
  .manifesto {
    margin-top: 10px !important;
  }
  .button-group {
    margin-top: -25px !important;
  }

  .btn-invitado::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 20px;
    height: 2px;
    width: 65%;
    background: #000;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s cubic-bezier(.4,0,.2,1);
    left: 50px;
}

.btn-invitado:hover::after {
    transform: scaleX(1);
}
} 

@media (max-width: 600px) {
    .center-content {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        min-height: 100vh !important;
        width: 100vw !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin: 0 !important;
    }
} 

@media (max-width: 600px) {
  .registro-form-container {
    padding: 20px 10px !important;
    margin: 0 5px !important;
  }
  .form-group {
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .form-group.checklist-horizontal {
    padding-left: 10px !important;
    padding-right: 10px !important;
    box-sizing: border-box;
    width: 100%;
  }
  .registro-form input[type="checkbox"] {
    margin-left: 0 !important;
  }
} 

@media (max-width: 600px) {
  .form-group.checklist-horizontal label {
    font-size: 13px !important;
    line-height: 1.2 !important;
    margin-left: 20px !important;
  }
  .form-group.checklist-horizontal input[type="checkbox"] {
    width: 20px !important;
    height: 20px !important;
  }
} 

.form-group.checklist-horizontal {
  padding-left: 30px !important;
} 

@media (max-width: 600px) {
  .form-group.checklist-horizontal.aviso-privacidad {
    padding-left: 58px !important;
  }

  .form-group.checklist-horizontal.aviso-privacidad label {
    margin-left: 40px !important;
    top: 8px;
  }
} 
