:root {
    --bg-color: linear-gradient( 180deg, #C78BFC 0%, #FFE3EB 100%);
    --text-color: #333333;
    --accent-color: #F8EFBD; /* Gold-ish color */
    --card-bg: #ffffff;
    --btn-bg: rgba(0, 0, 0, 0.05);
    --btn-border: #ccc;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--bg-color);
    color: var(--text-color);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.5;
}

.app-container {
    max-width: 480px; /* Mobile width */
    margin: 0 auto;
    background: var(--bg-color); /* Matches the global background */
    min-height: 100vh;
    padding-bottom: 30px;
    overflow-x: hidden;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

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

.logo-img {
    height: 30px; /* Adjust based on actual logo aspect ratio */
    width: auto;
    object-fit: contain;
}

.header-icons {
    display: flex;
    gap: 15px;
}

.icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.7rem;
    color: #fff;
    cursor: pointer;
    text-decoration: none;
}

.icon-item:hover {
    color: #333;
}

.icon-item img {
    width: 24px;
    height: 24px;
    margin-bottom: 3px;
    object-fit: contain;
}

/* Banner Swiper */
.banner-swiper {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
}

.banner-swiper .swiper-slide {
    background-position: center;
    background-size: cover;
    width: 70%; /* Shows part of next/prev slides */
    height: 350px;
    border-radius: 15px;
    overflow: hidden;
    /* Reflection effect/Shadow */
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

.banner-swiper .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Section Title */
.section-title {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    margin-top: 10px;
}

.section-title .bar {
    width: 4px;
    height: 18px;
    background: linear-gradient( 180deg, #E5BAF2 0%, #FF90B7 100%);
    margin-right: 10px;
    border-radius: 2px;
}

.section-title .text {
    font-size: 1.1rem;
    color: #fff;
}

/* Display Swiper */
.display-swiper {
    width: 100%;
    padding: 10px 20px 30px;
}

.display-swiper .swiper-wrapper {
    transition-timing-function: linear; /* Essential for smooth continuous scrolling */
}

.display-swiper .swiper-slide {
    border-radius: 10px;
    overflow: hidden;
    height: 180px; /* Adjust as needed */
}

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

/* Footer Area */
.footer-area {
    padding: 20px;
    text-align: center;
}

.slogan {
    margin-bottom: 20px;
    font-size: 1rem;
    color: #FF4B8C;
    letter-spacing: 1px;
}

.highlight {
    color: #FF4B8C;
    font-weight: bold;
    margin-right: 5px;
}

.download-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient( 180deg, #D09DF9 0%, #FB91BB 100%);
    border-radius: 38px;
    padding: 12px 20px;
    margin-bottom: 15px;
    text-decoration: none;
    color: #fff;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.download-btn:active {
    transform: scale(0.98);
}


/* Optional: Gold glow for apple button to match image hint if any */
.apple-btn {
    border-color: #555;
}

.btn-icon {
    width: 40px;
    height: 40px;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.btn-text {
    text-align: left;
}

.center-text {
    text-align: center;
    width: 100%;
}

.btn-text .main-text {
    font-size: 1.1rem;
    font-weight: bold;
    color: #fff;
}

.btn-text .sub-text {
    font-size: 0.75rem;
    color: #fff;
    text-transform: uppercase;
}

.alt-btn .main-text {
    color: #FF4B8C;
}
.alt-btn{
    border: 1px solid #FF4B8C;
    background: #FFE3ED;
}
.alt-btn .sub-text{
    color: #FF4B8C;
}
