.hero-section {
    padding-top: 120px;
    min-height: 100vh;
    background-color: #262626;
    display: flex;
    align-items: center;
}

.hero-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 16px;
}

.section-title {
    font-family: 'Raleway', monospace;
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.section-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    line-height: 1.8;
    max-width: 700px;
}

.project-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.meta-item {
    border-left: 2px solid #366294;
    padding-left: 1.5rem;
}

.meta-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.meta-value {
    font-size: 1.125rem;
    color: white;
    font-family: 'Raleway', monospace;
    font-weight: 600;
}

.content-section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.content-block {
    margin-bottom: 4rem;
}

.content-title {
    font-family: 'Raleway', monospace;
    font-size: 2rem;
    font-weight: 700;
    color: #366294;
    margin-bottom: 1.5rem;
}

.content-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    max-width: 800px;
}

.screenshots-section {
    padding: 6rem 2rem;
    background-color: #1c1c1c;
}

.carousel-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 16px;
}

.carousel-slide {
    display: none;
    width: 100%;
    height: 500px;
}

.carousel-slide.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.carousel-btn {
    background-color: #366294;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background-color: #366294;
    opacity: 0.8;
    transform: scale(1.05);
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background-color: #366294;
    width: 30px;
    border-radius: 5px;
}

.highlight {
    color: #366294;
}

@media (max-width: 768px) {
    .hero-section {
        padding-top: 100px;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-image {
        height: 350px;
    }

    .carousel-slide {
        height: 300px;
    }

    .project-meta {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}