a {
  color: #1e90ff;
}
a:visited {
  color: #4e7397;
}
body {
    font-family: 'Nunito', sans-serif;
    color: #FFFFFF;
    margin: 0;
    padding: 0;
    background-color: #000000;
    text-align: center;
}
nav {
    position: sticky;
    top: 0;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    color: white;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(6px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}
.nav-left {
    font-family: 'Nunito', sans-serif;
    font-size: 36px;
    font-weight: 800;
    text-align: left;
    cursor: pointer;
}
.nav-left .subtitle {
    font-size: 14px;
    font-weight: lighter;
    opacity: 0.7;
    padding-left: 16px;
    margin-top: -4px;
}
.nav-right {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin: 10px;
}
.nav-right a {
    color: white;
    text-decoration: none;
    padding: 6px 16px;
    margin: 4px 6px;
    font-size: 18px;
}
.nav-right .btn:hover {
    opacity: 0.7;
}
nav a.active {
    opacity: 0.4;
}
nav a:hover {
    background: rgba(255, 255, 255, .15);
    border-radius: 10px;
}
header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 0;
}
header h1 {
    margin: 0;
    font-size: 36px;
}
header h2 {
    margin: 0;
    font-size: 28px;
    font-weight: lighter;
}
.app-icon {
    width: 250px;
    height: 250px;
    margin-right: 30px;
}
.app-icon-text {
    padding: 40px;
    width: 400px;
    font-size: 26px;
    text-align: center;
}
.description {
    padding: 0px;
    font-size: 20px;
    margin: 20px auto;
    width: 60%;
}
.get-app-button {
    text-decoration: none;
    font-weight: bold;
    background-color: #007AFF;
    color: #fff;
    border-radius: 500px;
    padding: 10px 20px;
    margin: 40px 0 10px 0;
    display: inline-block;
}
.get-app-button:visited {
  color: #fff;
}
.images {
    margin: 40px auto;
    width: 100%;
    background-color: #111;
    padding: 40px 0;
}
.section-title {
    margin: 0 0 30px 0;
    font-size: 36px;
}
.screenshot-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 40px;
    -webkit-overflow-scrolling: touch;
}
.screenshot-carousel::-webkit-scrollbar {
    height: 8px;
}
.screenshot-carousel::-webkit-scrollbar-track {
    background: #222;
    border-radius: 4px;
}
.screenshot-carousel::-webkit-scrollbar-thumb {
    background: #555;
    border-radius: 4px;
}
.screenshot-carousel::-webkit-scrollbar-thumb:hover {
    background: #777;
}
.screenshot-item {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}
.screenshot-item img {
    height: 500px;
    width: auto;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}
.screenshot-item img:hover {
    transform: scale(1.05);
}
.screenshot-item h3 {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.app-store-button {
    display: inline-block;
    margin-top: -20px;
}
.app-store-button img {
    width: 200px;
}
.faq {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
    background-color: #111;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.question {
    padding: 20px;
    border-bottom: 1px solid #444;
    text-align: left;
}
.question:last-child {
    border-bottom: 0;
}
footer {
    margin-top: 20px;
    padding: 20px 0;
    border-top: 1px solid #444;
    font-size: 14px;
    color: #666;
}
@media (max-width: 600px) {
    header {
        flex-direction: column;
        padding: 10px 0;
    }
    nav {
        top: auto;
    }
    .app-icon {
        margin-right: 0;
    }
    .app-icon-text {
        text-align: center;
        padding: 0px 40px 10px;
    }
    .description {
        width: 80%;
    }
    .nav-left {
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }
    .nav-left .subtitle {
        padding-left: 0;
    }
    .nav-right {
        width: 100%;
        justify-content: center;
    }
    .screenshot-carousel {
        padding: 20px;
    }
    .screenshot-item img {
        height: 400px;
    }
}
@keyframes slideIn {
  0% {
    opacity: 0;
    transform: scale(0.9) translateY(100px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
