* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    min-height: 100vh;
    background: #FFF7E1;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.9);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.top-bar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    white-space: nowrap;
    flex-direction: row;
    overflow: hidden;
}
.left-content {
    display: flex;
    align-items: center;
    gap: 10px;
  }
.logo-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}
.slogan {
    font-size: 12px;
    color: #d4a128;
}
.download-link {
    background: #e62a2a;
    color: white;
    padding: 4px 15px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 12px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hero {
    width: 100%;
    position: relative;
    padding: 0;
    background: transparent;
}
.hero-bg {
    width: 100%;
    height: auto;
    display: block;
}
.download-btn {
    position: absolute;
    bottom: 13px;
    left: 50%;
    width: 170px;
    transform: translateX(-50%);
    cursor: pointer;
    outline: none;
    z-index: 10;
}

.features {
    padding: 5px 5px;
    background: #FFF7E1;
}
.feature-card {
    margin: 20px auto;
    display: flex;
    flex-direction: column;
    max-width: 90%;
    overflow: hidden;
}
.feature-img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.partners {
    padding: 30px 20px;
    background: url('../img/sequence88.png') no-repeat center/cover;
    text-align: center;
}
.partner-logos {
    background: #ffffff;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.partner-logos img {
    width: 50px;
    height: 30px;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.share-link-btn {
    display: inline-block;
    padding: 6px 12px;
    background-color: #ff4d00;
    color: white;
    border-radius: 6px;
    font-size: 13px;
    text-decoration: none;
    margin-left: 10px;
  }
  .copy-hint {
    position: fixed;
    bottom: 20px;
    left: 10%;
    right: 10%;
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    z-index: 9999;
    font-size: 14px;
  }