:root
{
    --accent-1: #6a11cb;
    --accent-2: #2575fc;
    --muted: #6b6b6b;
    --max-width: 1100px;
}

*
{
    box-sizing: border-box;
}

body
{
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    color: #e6eef8;
    background: linear-gradient(180deg, #0f1720, #0b1220);
    line-height: 1.65;
    font-size: 1.05rem;
    min-height: 100vh;
}

.container
{
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 1rem;
    letter-spacing: 0.3px;
}

header
{
    background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
    color: white;
}

.header-inner
{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
}

.logo
{
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo svg
{
    width: 48px;
    height: 48px;
}

.logo-img
{
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.logo-img-small
{
    width: 36px;
    height: 36px;
    object-fit: contain;
    vertical-align: middle;
}

nav a
{
    margin-left: 1rem;
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    font-weight: 600;
}

nav a:hover
{
    text-decoration: underline;
}

.section
{
    padding: 3rem 0;
}

p
{
    line-height: 1.7;
    margin-top: 0.8rem;
    margin-bottom: 0.8rem;
}

h1
{
    color: #fff;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

h2
{
    margin-top: 0;
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.3px;
}

h3
{
    font-size: 1.3rem;
    font-weight: 600;
}

h1
{
    color: #fff;
}

.grid
{
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

@media(min-width: 700px)
{
    .grid
    {
        grid-template-columns: repeat(3, 1fr);
    }
}

.card
{
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.03);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.03));
    box-shadow: 0 6px 18px rgba(2, 6, 23, 0.6);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.25s, box-shadow 0.25s;
}

.card::before
{
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25));
    pointer-events: none;
    transition: background 0.25s;
}

.card .content
{
    position: relative;
    z-index: 2;
}

.card h3
{
    color: #fff;
}

.card .muted
{
    color: rgba(230, 238, 248, 0.8);
}

.card.has-image::before
{
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.35));
}

.card.has-image h3,
.card.has-image .muted
{
    color: #fff;
}

.card:hover
{
    transform: scale(1.03);
    box-shadow: 0 18px 50px rgba(2, 6, 23, 0.8);
}

.footer
{
    padding: 1.5rem 0;
    text-align: center;
    color: var(--muted);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.2));
}

.muted
{
    color: rgba(230, 238, 248, 0.8);
    font-size: 1.05rem;
    line-height: 1.6;
}

.controls
{
    margin-top: 1rem;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

input[type="text"]
{
    padding: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 6px;
    min-width: 180px;
    background: rgba(255, 255, 255, 0.02);
    color: inherit;
    font-size: 1.05rem;
}

button
{
    padding: 0.6rem 1rem;
    border-radius: 6px;
    border: 0;
    background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
    color: white;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
}

button.secondary
{
    background: #1f2937;
    color: #fff;
}

.button
{
    display: inline-block;
    padding: 0.7rem 1.2rem;
    border-radius: 6px;
    background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
}

.button:hover
{
    opacity: 0.95;
    transform: scale(1.08);
    transition: all 0.2s ease;
}

@media(min-width: 900px)
{
    .header-inner
    {
        padding: 1.25rem 0;
    }
}

.about-card
{
    display: grid;
    gap: 1rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.03));
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

@media(min-width: 800px)
{
    .about-card
    {
        grid-template-columns: 1fr 320px;
        align-items: center;
    }
}

.about-card .bio
{
    font-size: 1.1rem;
    color: rgba(230, 238, 248, 0.95);
    line-height: 1.75;
}

.about-card .bio ul
{
    line-height: 1.8;
    font-size: 1.05rem;
}

.about-card .meta
{
    padding: 1.5rem;
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
    text-align: center;
}

.about-card .meta h4
{
    margin: 0 0 0.5rem 0;
    color: #fff;
    font-size: 1.2rem;
}

.about-card .meta p
{
    margin: 0.3rem 0;
    color: var(--muted);
    font-size: 1.05rem;
}

.cast
{
    margin-top: 0.5rem;
    color: rgba(230, 238, 248, 0.85);
    font-size: 1rem;
    line-height: 1.6;
}

.details
{
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    padding: 1rem;
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.15), rgba(255, 255, 255, 0.02));
    color: rgba(230, 238, 248, 0.9);
    line-height: 1.65;
    font-size: 1.05rem;
    border-left: 3px solid var(--accent-1);
}

.details strong
{
    display: block;
    margin-bottom: 0.75rem;
    color: #fff;
    font-size: 1.1rem;
}

.card .cast
{
    font-size: 0.95rem;
    color: rgba(230, 238, 248, 0.85);
}

.splitDiv
{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.leftBox
{
    order: 1;
}

.leftBox #title
{
    margin-top: 0;
    margin-bottom: 1rem;
}

.leftBox #desc
{
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.rightPic
{
    order: 2;
    width: 100%;
    min-height: 280px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(2, 6, 23, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.04);
    background-repeat: no-repeat;
}

@media(max-width: 900px)
{
    .splitDiv
    {
        grid-template-columns: 1fr;
    }

    .leftBox
    {
        order: 2;
    }

    .rightPic
    {
        order: 1;
        width: 100%;
        min-height: 260px;
        margin-bottom: 1.5rem;
    }
}
