/* ================================
   BASE STREAMING (MEMBROS / ADMIN)
================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background: #000;
    color: #fff;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: 92%;
    max-width: 1300px;
    margin: auto;
}

/* ================================
   HEADER STREAMING
================================ */

.header-streaming {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    background: rgba(0,0,0,.75);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.header-streaming .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.header-streaming .logo {
    width: 140px;
}

.header-streaming .user-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-streaming .cta {
    background: #8B008B;
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: bold;
    box-shadow: 0 0 12px rgba(139,0,139,.45);
}

/* ================================
   ÁREA PRINCIPAL
================================ */

.main {
    padding-top: 90px;
}

.hero-interno {
    background: linear-gradient(to top, #000 30%, transparent),
                url('/assets/img/bg-hero.jpg') center/cover no-repeat;
    min-height: 60vh;
    display: flex;
    align-items: flex-end;
    padding: 50px;
}

.hero-interno h1 {
    font-size: 42px;
    max-width: 700px;
}

/* ================================
   CATÁLOGO
================================ */

.catalogo {
    padding: 60px 0;
}

.catalogo h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
    gap: 25px;
}

.card {
    cursor: pointer;
}

.card img {
    border-radius: 10px;
    transition: .3s;
}

.card img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 18px rgba(255,255,255,.15);
}

.card h3 {
    font-size: 16px;
    margin-top: 8px;
    opacity: .9;
}

/* ================================
   PLAYER
================================ */

.player {
    max-width: 1000px;
    margin: 40px auto;
}

.player video {
    width: 100%;
    border-radius: 12px;
}

/* ================================
   ADMIN (VARIAÇÃO CLEAN)
================================ */

.admin-box {
    background: #111;
    padding: 30px;
    border-radius: 10px;
}
