body {
    background-color: #1e1e2f;
    font-family: Arial, sans-serif;
    color: #e0e0e0;
    margin: 0;
    padding: 0;
}

.project-page {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.project-header h1 {
    color: #00cc99;
    font-size: 2em;
    text-align: center;
    margin-bottom: 20px;
}

.project-video {
    position: relative;
    margin-bottom: 20px;
}

/* Default video size for smaller screens */
.video {
    width: 100%;
    height: 300px;
    background-color: #000;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

/* Video controls */
.video-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}

.video-controls button {
    background: none;
    border: none;
    color: #00cc99;
    font-size: 1.5em;
    margin-right: 10px;
    cursor: pointer;
}

.video-controls input[type="range"] {
    width: 70%;
    margin-right: 10px;
}

.project-description {
    background-color: #29293d;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    color: #cfcfcf;
    font-size: 1em;
    line-height: 1.8;
}

.project-description p {
    font-size: 1.1em;
    color: #e0e0e0;
    margin-bottom: 15px;
    font-weight: 300;
}

.project-description ul {
    list-style-type: none;
    padding-left: 0;
    margin-top: 20px;
}

.project-description li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 25px;
    font-size: 1em;
    color: #b0b3c5;
    font-weight: 400;
}


.project-description li::before {
    content: '\2022'; /* Bullet point symbol */
    color: #00cc99; /* Custom color for bullet */
    font-size: 1.3em;
    position: absolute;
    left: 0;
    top: 0;
    line-height: 1.3;
}

.project-description li:hover {
    color: #ffffff;
    font-weight: 500;
    transition: color 0.3s ease, font-weight 0.3s ease;
}

/* Media Queries for Responsive Design */

/* Medium screens (tablets, small laptops) */
@media (min-width: 768px) and (max-width: 1023px) {
    .project-page {
        max-width: 600px;
        padding: 15px;
    }
    .video {
        height: 400px; /* Adjust video height for medium screens */
    }
}

/* Large screens (desktops) */
@media (min-width: 1024px) {
    .project-page {
        max-width: 900px;
        padding: 20px;
    }
    .video {
        height: 500px; /* Larger video height for desktop screens */
    }
}

/* Extra large screens (large desktops) */
@media (min-width: 1400px) {
    .project-page {
        max-width: 1100px;
        padding: 30px;
    }
    .video {
        height: 600px; /* Further increase video height for large screens */
    }
}
