/* Hero Section */
.hero {
    background-color: var(--dark-grey);
    height: 80vh; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-content {
    padding: 20px;
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-content .subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--light-grey);
    margin-bottom: 0.5rem;
}

.hero-content .dev-status {
    font-size: 1rem;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    margin-bottom: 2.5rem;
    font-weight: 600;
}

.hero-content .btn {
    animation: fadeInUp 0.7s ease-out 0.5s;
    animation-fill-mode: both;
}

@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* Award Section */
.award-section {
    background-color: var(--medium-grey);
    text-align: center;
    padding: 2.5rem 1rem;
}
.award-section .container {
    padding-top: 0;
    padding-bottom: 0;
}
.award-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.75rem;
}
.award-section h3 {
    color: var(--primary-color);
    margin-bottom: 0.25rem;
    font-size: 1.4rem;
}
.award-subtitle {
    font-size: 1rem;
    color: var(--light-grey);
    margin: 0;
}

/* Synopsis Section */
.synopsis-section {
    text-align: center;
    background: #2a2d34;
}
.synopsis-section h2 {
    color: var(--white-text);
}
.synopsis-section p {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
}

/* Features Section */
.features-section .container {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}
.feature {
    flex-basis: 31%;
    text-align: center;
    padding: 2rem;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.feature h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* Mobile Responsive Styles for Index Page */
@media (max-width: 800px) {
    .hero {
        height: 70vh;
    }
    .hero-content h1 {
        font-size: 3rem;
    }
    .features-section .container {
        flex-direction: column;
    }
}