/* RESET Y BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #000;
    color: #c9a96e;
    font-family: 'Cinzel', serif;
    text-align: center;
    margin: 0;
    line-height: 1.6;
}

/* HEADER */
header {
    padding: 20px;
    border-bottom: 2px solid #c9a96e;
}

/* LOGO */
.logo{
width:160px;
border-radius:50%;
box-shadow:0 0 30px red;
}

/* PLAYER */
.player {
    margin-top: 20px;
}

.play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #111;
    color: red;
    font-size: 25px;
    border: 2px solid red;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 20px 0;
}

.play-btn:hover {
    background: red;
    color: #000;
    transform: scale(1.1);
}

/* INFO */
#song {
    margin-top: 10px;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
}

#listeners {
    font-size: 12px;
    color: #aaa;
    margin-top: 5px;
}

/* BOTONES */
.btn {
    display: block;
    margin: 12px auto;
    padding: 12px;
    background: red;
    color: black;
    width: 200px;
    text-decoration: none;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Cinzel', serif;
    font-weight: bold;
}

.btn:hover {
    background: #ff4444;
    transform: translateY(-2px);
}

/* KIOSKO */
.kiosko {
    margin-top: 25px;
}

.kiosko-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 10px;
    max-width: 400px;
    margin: 0 auto;
}

.kiosko-grid div {
    background: #111;
    padding: 18px;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid #333;
}

.kiosko-grid div:hover {
    background: #222;
    transform: scale(1.05);
    border-color: red;
}

/* LOGIN */
.login {
    margin: 20px 0;
}

.login h2, .login h3 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 18px;
}

/* AGE VERIFICATION */
.age-verify {
    background: rgba(255, 0, 0, 0.15);
    border: 2px solid red;
    padding: 20px;
    border-radius: 10px;
    margin: 20px auto;
    max-width: 400px;
}

.age-verify h3 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 18px;
}

.age-verify p {
    color: #aaa;
    margin-bottom: 15px;
    font-size: 14px;
}

.age-verify label {
    display: block;
    color: #c9a96e;
    margin: 15px 0;
    cursor: pointer;
    font-size: 14px;
}

.age-verify input[type="checkbox"] {
    margin-right: 8px;
    cursor: pointer;
}

.btn-verify {
    display: block;
    margin: 15px auto 0;
    padding: 12px;
    background: red;
    color: black;
    width: 150px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-family: 'Cinzel', serif;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-verify:hover {
    background: #ff4444;
    transform: translateY(-2px);
}

.btn-verify:disabled {
    background: #666;
    cursor: not-allowed;
    opacity: 0.5;
}

.login input {
    padding: 10px;
    border: none;
    border-radius: 5px;
    margin: 8px auto;
    display: block;
    width: 200px;
    max-width: 90%;
    background: #111;
    color: #c9a96e;
    font-family: 'Cinzel', serif;
}

.login button {
    padding: 10px 20px;
    background: red;
    color: black;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Cinzel', serif;
    font-weight: bold;
    margin-top: 10px;
}

/* PRIVADO */
#privado {
    margin-top: 20px;
    padding: 20px;
    border: 2px solid red;
    border-radius: 10px;
    background: rgba(255, 0, 0, 0.1);
}

/* VIDEO EN VIVO VIP */
.video-vip {
    margin-bottom: 30px;
}

.video-vip h3 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 20px;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
    background: #000;
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.vip-controls {
    margin-top: 15px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    justify-items: center;
}

.vip-note {
    color: #aaa;
    font-size: 13px;
    margin-top: 12px;
}

/* PERMISOS VIP */
.vip-permissions {
    margin: 20px 0;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid #333;
}

.vip-permissions h3 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 18px;
}

.vip-permissions .btn {
    margin: 8px auto;
    font-size: 14px;
}

/* GALERÍA */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 10px;
    padding: 10px;
}

.gallery-grid img {
    width: 100%;
    border-radius: 6px;
    transition: transform 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

/* HISTORY */
#history {
    margin: 20px 0;
    padding: 10px;
}

#history div {
    background: #111;
    margin: 5px 0;
    padding: 8px;
    border-radius: 4px;
    font-size: 14px;
}

/* RESPONSIVE */
@media(max-width: 600px) {
    .kiosko-grid {
        grid-template-columns: 1fr;
    }

    .btn {
        width: 90%;
        max-width: 300px;
    }

    .logo {
        width: 120px;
    }

    .play-btn {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }

    .video-container {
        padding-bottom: 75%; /* Más alto en móvil para mejor visualización */
    }

    .video-vip h3 {
        font-size: 18px;
    }
}
