* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

body {
    background: #ffffff;
    min-height: 100vh;
    color: white;
}

.header {
    background-color: #f00000;
    font-weight: bold;
    color: #ececec;
    padding: 10px;
    text-align: center;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    pointer-events: none;
    font-size: 20px;
}

@media (max-width: 767px) {
    .header {
        font-size: 13px;
        padding: 18px;
    }
}

.highlight {
    color: #ffffff;
    font-weight: bold;
}

.unlock-section {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 24px;
    margin: 20px 0;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.content {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}

h1 {
    color: #000000;
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 16px;
}

.video-container {
    overflow: hidden;
    margin: 20px 0;
}

.live-counter {
    color: rgb(0, 0, 0);
    padding: 12px 20px;
    border-radius: 5px;
    display: block;
    align-items: center;
    text-align: center;
    margin: 15px auto;
    font-size: 16px;
    font-weight: 500;
    white-space: nowrap;
    background: rgba(255, 255, 255, 0.333);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

