* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Microsoft YaHei', '微软雅黑', Arial, sans-serif;
    background: transparent;
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    background: transparent;
    padding: 0;
}

.title {
    display: none;
}

.gift-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gift-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0;
    background: transparent;
}

.gift-image {
    flex-shrink: 0;
    border-radius: 8px;
    object-fit: contain;
}

.gift-reward {
    font-size: 18px;
    color: #ffffff;
    font-weight: 500;
    background: transparent;
}

.admin-link {
    position: fixed;
    bottom: 20px;
    right: 20px;
}

.admin-link a {
    display: inline-block;
    padding: 12px 24px;
    background: rgba(255,255,255,0.9);
    color: #667eea;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: all 0.3s;
}

.admin-link a:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}
