/* ============================================
   INDEX.CSS - Home page specific styles
   ============================================ */

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.header-logo {
    font-size: 24px;
    font-weight: bold;
    color: #000;
}

.header-logo img {
    width: 100px;
    height: auto;
}

.intro-section {
    background: #fff;
    border-radius: 12px;
    padding: 24px 24px 150px 24px;
    margin-bottom: 60px;
    border: 1px solid #e0e0e0;
    background: url('/images/index/intro-bgi.png') no-repeat center center;
    background-size: cover;
}

.intro-title {
    font-size: 28px;
    font-weight: bold;
    color: #000;
    margin-bottom: 16px;
    line-height: 1.2;
}

.intro-desc {
    font-size: 14px;
    line-height: 1.8;
}

.intro-image {
    width: 100%;
    height: 200px;
    background: #f0f0f0;
    border-radius: 8px;
}

.intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.lucky-banner {
    background: url('/images/index/luck-banner.png') no-repeat center center;
    background-size: cover;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.lucky-text {
    flex: 1;
}

.lucky-title {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 8px;
}

.lucky-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.lucky-wheel {
    width: 130px;
    height: 140px;
    background: url(/images/index/luck-wheel.png) no-repeat 100% center;
    background-size: contain;
    border-radius: 50%;
    position: absolute;
    right: 0;
    bottom: 0;
}