body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #1a1a1a;
    color: #f0f0f0;
}


/* TOP MENU */ 
.top-menu { 
	background: #2a2a2a; 
	padding: 10px 20px; 
	display: flex; gap: 15px; 
} 

.top-menu a { 
	color: #f0f0f0; 
	text-decoration: none; 
	font-weight: bold; 
	padding: 6px 12px; 
	border-radius: 6px; 
} 
.top-menu a:hover { 
	background: gold; 
	color: black; 
}

/* HERO */
.casting-hero {
    position: relative;
    height: 45vh;
    overflow: hidden;
}

.casting-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.casting-hero .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

/* TITLES */
.casting-hero h1 {
    margin: 10px 0;
    font-size: 36px;
}

.casting-hero p {
    margin: 0 0 15px 0;
    color: #ccc;
}

/* BUTTONS */
.hero-buttons button {
    margin-right: 10px;
}

/* BUTTON STYLE */
button {
    padding: 10px 18px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
}

.btn-primary {
    background: gold;
    color: black;
}

.btn-secondary {
    background: transparent;
    border: 1px solid #ccc;
    color: #f0f0f0;
}

.btn-thirdary {
    background: #6699FF;
    color: black;
}

button:hover {
    transform: translateY(-2px);
}

/* BADGES */
.badge {
    position: absolute;
    top: 20px;
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 4px;
    font-weight: bold;
}

.badge.right {
    right: 20px;
}

.badge.gold {
    left: 20px;
    background: gold;
    color: black;
}

.badge.red {
    background: crimson;
    color: white;
}

/* CONTENT */
.casting-content {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
}

/* GRID */
.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

/* TEXT */
.main-info h2 {
    margin-top: 20px;
}

.main-info p {
    color: #ccc;
}

.main-info ul {
    padding-left: 20px;
}

.main-info li {
    margin-bottom: 8px;
}

/* SIDEBAR */
.sidebar .card {
    background: #2e2e2e;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
}

/* CTA */
.cta {
    background: #2a2a2a;
    text-align: center;
    padding: 40px;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 20px;
    background: #1f1f1f;
    color: #ccc;
}

/* RESPONSIVE */
@media(max-width: 900px) {
    .content-grid {
        grid-template-columns: 1fr;
    }

    .casting-hero {
        height: auto;
    }
}