body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #1a1a1a;
    color: #f0f0f0;
}

/* HERO */
.hero {
    background: url('https://images.unsplash.com/photo-1508214751196-bcfd4ca60f91') center/cover no-repeat;
    height: 28vh;
    display: flex;
    align-items: center;
    padding: 40px;
    position: relative;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

.hero-content {
    max-width: 600px;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 34px;
    margin: 0 0 10px 0;
}

.hero span {
    color: gold;
}

.hero p {
    margin-bottom: 15px;
}

/* BUTTONS */
.hero-buttons a {
    text-decoration: none;
}

button {
    padding: 10px 18px;
    margin: 5px 8px 0 0;
    border: none;
    cursor: pointer;
    font-weight: bold;
    border-radius: 6px;
}

.btn-primary {
    background: gold;
    color: black;
}

.btn-secondary {
    background: transparent;
    border: 1px solid #ccc;
    color: #f0f0f0;
}

/* SECTION */
.section {
    padding: 35px 20px;
    text-align: center;
}

.section-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto 15px auto;
}

.section-link {
    color: gold;
    text-decoration: none;
    font-weight: bold;
}

/* GRID */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 18px;
    max-width: 1100px;
    margin: auto;
}

/* CARD */
.card {
    background: #2e2e2e;
    padding: 20px;
    border-radius: 12px;
}

/* CASTING CARD */
.casting-card {
    background: #2e2e2e;
    border-radius: 12px;
    overflow: hidden;
    text-align: left;
    transition: transform 0.2s;
    text-decoration: none;
    color: white;
    position: relative;
}

.casting-card:hover {
    transform: translateY(-5px);
}

.casting-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
}

/* BADGES */
.badge {
    position: absolute;
    padding: 4px 8px;
    font-size: 12px;
    border-radius: 4px;
    font-weight: bold;
}

.badge.left { left: 10px; }
.badge.right { right: 10px; }

.b1 { top: 10px; }
.b2 { top: 35px; }
.b3 { top: 60px; }
.b4 { top: 85px; }

.gold { background: gold; color: black; }
.red { background: crimson; color: white; }
.blue { background: deepskyblue; color: black; }
.green { background: green; color: white; }

/* CONTENT */
.casting-content {
    padding: 15px;
}

.casting-meta {
    font-size: 14px;
    color: #ccc;
}

/* PROFILE */
.profile {
    background: #2e2e2e;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: white;
    transition: transform 0.2s;
}

.profile:hover {
    transform: translateY(-5px);
}

.profile img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.profile p {
    margin: 10px;
    text-align: center;
}

/* CTA */
.cta {
    background: #2a2a2a;
    padding: 40px;
    text-align: center;
}

/* FOOTER */
footer {
    padding: 20px;
    text-align: center;
    font-size: 14px;
    background: #1f1f1f;
    color: #ccc;
}