/* General Body Styles */
body {
    background-color: #0d1117; /* Dark blue/black background */
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
}

a {
    color: #c9d1d9;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 80px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 60px;
    height: 60px;
    margin-right: 15px;
}

.logo h1 {
    font-size: 24px;
    font-weight: 700;
}

nav a {
    margin-left: 30px;
    font-size: 16px;
    color: #e6edf3;
}

/* Hero Section */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    margin-bottom: 100px;
}

.hero-text {
    flex: 1;
}

.hero-text h2 {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 40px 0;
}

.app-store-button {
    display: inline-flex;
    align-items: center;
    background-color: transparent;
    border: 1px solid #555;
    border-radius: 12px;
    padding: 15px 30px;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s;
}

.app-store-button:hover {
    background-color: #1c2128;
    text-decoration: none;
}

.app-store-button img {
    width: 35px;
    height: auto;
    margin-right: 15px;
}

.app-store-button span {
    text-align: left;
    line-height: 1.3;
    font-size: 20px;
}

.hero-video {
    flex: 1;
    position: relative;
    max-width: 450px;
}

.hero-video img {
    width: 100%;
    border-radius: 20px;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.play-button::after {
    content: '';
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 25px solid black;
    margin-left: 5px;
}

/* Features Section */
.features {
    display: flex;
    justify-content: space-around;
    text-align: center;
    gap: 20px;
    margin-bottom: 100px;
}

.feature-item {
    flex: 1;
    max-width: 250px;
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 15px;
}

.feature-item h3 {
    font-size: 20px;
    font-weight: 500;
    margin: 0 0 10px 0;
}

.feature-item p {
    font-size: 16px;
    color: #8b949e;
    line-height: 1.5;
}

/* Footer */
footer {
    text-align: center;
    font-size: 18px;
    color: #e6edf3;
}

footer a {
    color: #e6edf3;
    text-decoration: underline;
}

/* Responsive Design for smaller screens */
@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        margin-bottom: 40px;
    }

    .hero-text h2 {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 60px;
    }

    .features {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
}
