body {
    margin: 0;
    font-family: 'Georgia', serif;
    color: #e5e5e5;
    background: linear-gradient(180deg, #0b0b12, #111124, #0b0b12);
    overflow-x: hidden;
}

/* PARTICLES */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* NAVBAR */
header {
    position: fixed;
    width: 100%;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    transition: 0.3s ease;
    z-index: 1000;
    gap: 20px;
}
header.scrolled {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(6px);
}
.logo {
    font-size: 28px;
    font-weight: bold;
}
nav {
    display: flex;
    flex-wrap: wrap;
}
nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #ccc;
    transition: 0.3s;
}
nav a:hover {
    color: #a855f7;
}

/* HERO */
.hero {
    height: 100vh;
    background: url("sc68.png") center/cover no-repeat fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.hero-content {
    background: rgba(0,0,0,0.65);
    padding: 50px;
    border: 1px solid #a855f7;
    transform: translateY(-40px);
}
.hero h1 {
    font-size: 60px;
    margin-bottom: 20px;
}
button {
    padding: 12px 30px;
    background: #a855f7;
    border: none;
    color: white;
    cursor: pointer;
    transition: 0.3s;
    font-size: 16px;
}
button:hover {
    background: #7e22ce;
}

/* SECTIONS */
section {
    padding: 150px 40px;
    max-width: 1100px;
    margin: auto;
    font-size: 20px;
}
section h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 42px;
}

/* GALLERY */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}
.gallery-grid img {
    width: 100%;
    border-radius: 8px;
    transition: 0.4s;
}
.gallery-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px #a855f7;
}

/* CREATORS */
.creator-list {
    text-align: center;
    font-size: 20px;
    line-height: 2;
}

/* VIDEO */
#trailer {
    max-width: 1400px;
    padding: 150px 40px;
}
.video-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
.video-container iframe {
    width: 100%;
    max-width: 1280px;
    aspect-ratio: 16 / 9;
    min-height: unset;
    border: 3px solid #a855f7;
    border-radius: 12px;
}

/* CONTACT FORM */
#contact {
    max-width: 900px;
}
form {
    width: 100%;
    margin: auto;
    display: flex;
    flex-direction: column;
}
label {
    font-size: 17px;
    color: #aaa;
    margin-bottom: 6px;
}
input, textarea {
    width: 100%;
    padding: 18px 20px;
    border: 1px solid #a855f7;
    border-radius: 6px;
    background: #111124;
    color: #e5e5e5;
    margin-bottom: 20px;
    font-size: 18px;
    box-sizing: border-box;
}
textarea {
    min-height: 200px;
    resize: vertical;
}
input:focus, textarea:focus {
    outline: none;
    border-color: #7e22ce;
}
form button {
    width: fit-content;
    align-self: center;
    font-size: 18px;
    padding: 14px 40px;
}

/* FADE IN */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* FOOTER */
footer {
    text-align: center;
    padding: 50px;
    background: #111;
    font-size: 18px;
}