:root {
    --shopee-orange: #EE4D2D;
    --shopee-orange-light: #ff6a4d;
    --bg-gray: #F5F5F5;
    --text-dark: #333333;
    --text-gray: #666666;
    --white: #FFFFFF;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--shopee-orange);
    color: var(--white);
    line-height: 1.5;
    overflow-x: hidden;
}

.container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
}

.mobile-wrapper {
    width: 100%;
    max-width: 480px;
    background-color: var(--white);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
    position: relative;
}

/* Slider Styles */
.slider-container {
    width: 100%;
    height: 220px;
    position: relative;
    overflow: hidden;
    background-color: #111;
}

.slider-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    padding: 0 32px;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-cover: cover;
    opacity: 0.6;
    transform: scale(1.1);
    transition: transform 5s linear;
}

.slide.active .slide-bg {
    transform: scale(1);
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--shopee-orange), rgba(238, 77, 45, 0.4), transparent);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    color: var(--white);
}

.slide-title {
    font-size: 24px;
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 4px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.slide-subtitle {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.9;
}

.slide-btn {
    display: inline-block;
    margin-top: 16px;
    background: linear-gradient(135deg, var(--white) 0%, #ffffff 50%, #f5f5f5 100%);
    color: var(--shopee-orange);
    font-size: 10px;
    font-weight: 900;
    padding: 8px 20px;
    border-radius: 20px;
    text-decoration: none;
    text-transform: uppercase;
    font-style: italic;
    box-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.15),
        0 4px 8px rgba(0, 0, 0, 0.1),
        0 8px 16px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    border: none;
}

.slide-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 
        0 3px 6px rgba(0, 0, 0, 0.2),
        0 6px 12px rgba(0, 0, 0, 0.15),
        0 12px 24px rgba(0, 0, 0, 0.1);
}

.slide-btn:active {
    transform: translateY(0) scale(1.05);
    box-shadow: 
        0 1px 2px rgba(0, 0, 0, 0.1),
        0 2px 4px rgba(0, 0, 0, 0.05),
        0 4px 8px rgba(0, 0, 0, 0.03);
}

.slider-indicators {
    position: absolute;
    bottom: 16px;
    left: 32px;
    display: flex;
    gap: 6px;
    z-index: 10;
}

.dot {
    height: 4px;
    width: 8px;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 4px;
    transition: all 0.5s ease;
}

.dot.active {
    width: 24px;
    background-color: var(--white);
}

/* Content Styles */
.content {
    flex: 1;
    padding: 32px 16px 40px;
}

.info-card {
    background-color: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.info-icon {
    width: 40px;
    height: 40px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.info-icon i {
    color: var(--shopee-orange);
}

.info-text {
    display: flex;
    flex-direction: column;
}

.info-label {
    color: var(--shopee-orange);
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-value {
    font-size: 13px;
    font-weight: 700;
    color: #444;
}

/* Links List */
.links-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
}

.link-item {
    display: flex;
    align-items: center;
    padding: 16px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 50%, rgba(255, 255, 255, 0.92) 100%);
    border-radius: 12px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.08),
        0 4px 8px rgba(0, 0, 0, 0.06),
        0 8px 16px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    position: relative;
    border: none;
}

.link-item:hover {
    border-color: rgba(238, 77, 45, 0.2);
    box-shadow: 
        0 3px 6px rgba(0, 0, 0, 0.12),
        0 6px 12px rgba(0, 0, 0, 0.1),
        0 12px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.link-item:active {
    transform: scale(0.98);
    box-shadow: 
        0 1px 2px rgba(0, 0, 0, 0.05),
        0 2px 4px rgba(0, 0, 0, 0.03),
        0 4px 8px rgba(0, 0, 0, 0.02);
}

.link-icon-wrapper {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.cs-bg { background-color: #FFF5F5; }
.wa-bg { background-color: #F0FFF4; }
.track-bg { background-color: #EBF8FF; }
.help-bg { background-color: #FFF9F0; }
.shop-bg { background-color: #FFF5F5; }

.cs-icon { color: var(--shopee-orange); }
.wa-icon { color: #48BB78; }
.track-icon { color: #4299E1; }
.help-icon { color: #ED8936; }
.shop-icon { color: var(--shopee-orange); }

.link-text {
    margin-left: 16px;
    flex: 1;
    min-width: 0;
}

.link-text h3 {
    font-size: 15px;
    font-weight: 700;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.link-text p {
    font-size: 11px;
    color: var(--text-gray);
    margin-top: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.chevron {
    color: #DDD;
    transition: color 0.3s ease;
}

.link-item:hover .chevron {
    color: var(--shopee-orange);
}

/* Footer Styles */
.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.security {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #AAA;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.social-links {
    display: flex;
    gap: 32px;
    margin: 24px 0;
}

.social-links a {
    color: #CCC;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--shopee-orange);
    transform: scale(1.1);
}

.brand {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.3;
}

.brand img {
    height: 24px;
    margin-bottom: 8px;
}

.brand p {
    font-size: 9px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-gray);
}
