/* General reset & body */
body {
    font-family: 'Inter', 'Roboto', sans-serif;
    background-color: #f5f5f5;
    color: #222;
    line-height: 1.6;
    margin: 0;
    padding: 2rem;
}

.warning-section {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 1.5rem 2rem;
    border-radius: 12px;
}

/* Each video section card */
.video-section {
    max-width: 900px;
    margin: 2rem auto;
    padding: 1.5rem 2rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Video styling */
.video-section video {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    max-width: 100%;
}

/* Titles */
.video-section .title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 0.5rem;
}

/* Creation Process header */
.video-section > h1:nth-of-type(2) {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 1rem;
    margin-bottom: 1rem;
    color: #333;
    border-bottom: 2px solid #ddd;
    padding-bottom: 0.25rem;
}

/* Creation process container */
.creation-process {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Content sections */
.content-section {
    padding: 0.75rem 1rem;
    background: #fafafa;
    border-radius: 8px;
    box-shadow: inset 0 0 6px rgba(0,0,0,0.03);
}

/* Section titles */
.content-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #222;
}

/* Lists */
.content-section ul {
    margin: 0;
    padding-left: 1.2rem;
}

.content-section li {
    margin-bottom: 0.4rem;
    font-size: 1rem;
    color: #444;
}

/* Subtle hover highlight for sections */
.content-section:hover {
    background: #f0f0f0;
    transition: background 0.3s ease;
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .video-section {
        padding: 1rem 1rem;
    }

    .video-section .title {
        font-size: 1.5rem;
    }

    .content-section h3 {
        font-size: 1.1rem;
    }
}