:root {
    --primary: #e50914;
    --dark: #141414;
    --light: #f5f5f5;
    --gray: #808080;
    --text: #ffffff;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: var(--dark);
    color: var(--text);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header */
header {
    background: rgba(0,0,0,0.9);
    padding: 20px;
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: var(--primary);
    font-size: 24px;
    font-weight: bold;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Grid */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
}

.card {
    transition: transform 0.2s;
    background: #1f1f1f;
    border-radius: 4px;
    overflow: hidden;
}

.card:hover {
    transform: scale(1.05);
}

.card img {
    width: 100%;
    height: auto;
    aspect-ratio: 2/3;
    object-fit: cover;
}

.card-info {
    padding: 10px;
}

.card-title {
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Detail Page */
.hero {
    position: relative;
    height: 70vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, var(--dark), transparent);
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 40px;
    max-width: 800px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.meta-info span {
    margin-right: 15px;
    font-size: 1.1rem;
}

.btn-cta {
    display: inline-block;
    background-color: #25D366; /* WhatsApp Green */
    color: white;
    padding: 15px 30px;
    font-size: 1.2rem;
    border-radius: 5px;
    font-weight: bold;
    margin: 20px 0;
    transition: background 0.3s;
}

.btn-cta:hover {
    background-color: #128C7E;
}

.secondary-cta {
    background-color: var(--primary);
}

.content-block {
    margin-top: 40px;
    font-size: 1.1rem;
    color: #ccc;
}

/* Footer */
footer {
    background: #000;
    padding: 40px 20px;
    text-align: center;
    color: var(--gray);
    margin-top: 50px;
}

/* Login/Admin */
.login-box {
    max-width: 400px;
    margin: 100px auto;
    background: #1f1f1f;
    padding: 30px;
    border-radius: 8px;
}

input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    background: #333;
    border: 1px solid #444;
    color: white;
    border-radius: 4px;
}

button {
    width: 100%;
    padding: 10px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}
