/* Full-width Video Hero Section */
.video-hero-section {
    background-color: #000; /* Black background to frame the video */
    padding: 4rem 0;
    text-align: center;
}

.video-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.video-container video {
    width: 100%;
    max-height: 80vh; /* Limits the video height on very large screens */
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.7);
    display: block;
}

/* Narrative Details Section (Text content) */
.narrative-details-section {
    background-color: var(--dark-grey);
}

.narrative-header {
    text-align: center;
    margin-bottom: 3rem;
}

.narrative-header h1 {
    font-size: 3.5rem;
}

.narrative-header p {
    font-size: 1.2rem;
    color: var(--light-grey);
    max-width: 700px;
    margin: 0 auto;
}

.narrative-content {
    max-width: 800px;
    margin: 0 auto;
}

.narrative-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1rem;
}

.narrative-content ul li {
    background: var(--medium-grey);
    padding: 1rem;
    margin-bottom: 0.5rem;
    border-left: 4px solid var(--primary-color);
    border-radius: 4px;
}

/* Robicon Symbol Section */
.symbol-section {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.symbol-image {
    flex-basis: 30%;
    /* This container will hold the image */
}

/* --- CHANGE IS HERE --- */
/* This new rule styles the Robicon image itself */
.symbol-image img {
    width: 100%; /* Makes the image fit its container */
    height: auto; /* Maintains the aspect ratio */
    display: block; /* Removes any extra space below the image */
}

/* The .robicon-placeholder rule is no longer needed and has been removed. */


/* Mobile Responsive Styles for Experience Page */
@media (max-width: 800px) {
    .video-hero-section {
        padding: 2rem 0;
    }
    .narrative-header h1 {
        font-size: 2.5rem;
    }
    .symbol-section {
        flex-direction: column;
        text-align: center;
    }

    /* --- ADDITIONAL CHANGE FOR MOBILE --- */
    /* This makes the image look better on small screens */
    .symbol-image {
        /* Set a max-width so the image doesn't take up the full screen width */
        max-width: 200px; 
        /* Center the image container and add space below it */
        margin: 0 auto 2rem; 
    }
}