* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
}

body {
    background-color: #fff9f0;
    color: #333;
    line-height: 1.15;
    font-size: 11px;
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(255, 200, 124, 0.15) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(255, 87, 87, 0.1) 0%, transparent 20%);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 6px;
    position: relative;
}

.festival-decoration {
    position: absolute;
    z-index: -1;
    opacity: 0.15;
}

.decoration-1 {
    top: 5%;
    left: 5%;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, #ff4444 30%, transparent 70%);
    border-radius: 50%;
}

.decoration-2 {
    top: 15%;
    right: 10%;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, #ffb347 30%, transparent 70%);
    border-radius: 50%;
}

.decoration-3 {
    bottom: 20%;
    left: 10%;
    width: 100px;
    height: 40px;
    background: linear-gradient(45deg, #ff4444, #ffb347);
    border-radius: 50%;
    transform: rotate(45deg);
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 15px;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #fff0e0 0%, #ffe8d6 100%);
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    color: #333;
    border: 1px solid rgba(255, 235, 205, 0.8);
    position: relative;
    overflow: hidden;
}

.header:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff4444, #ffb347, #ff4444);
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 10px;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.company-name {
    font-size: 16px;
    font-weight: 700;
    color: #b22222;
    letter-spacing: 0.3px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.company-subtitle {
    font-size: 9px;
    color: #d2691e;
    margin-top: 1px;
    letter-spacing: 0.2px;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 6px;
    margin-bottom: 12px;
}

.card {
    background: rgba(255, 253, 250, 0.95);
    border-radius: 5px;
    padding: 10px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
    backdrop-filter: blur(3px);
    border: 1px solid rgba(255, 235, 205, 0.6);
    transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.07);
}

.card-title {
    font-size: 12px;
    font-weight: 700;
    color: #b22222;
    margin-bottom: 6px;
    padding-bottom: 4px;
    border-bottom: 1px solid rgba(178, 34, 34, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card-title i {
    color: #d2691e;
    font-size: 11px;
}

.card-content {
    font-size: 10px;
    color: #444;
    line-height: 1.2;
}

.card-content p {
    margin-bottom: 4px;
}

.card-content ul {
    padding-left: 12px;
    margin-bottom: 5px;
}

.card-content li {
    margin-bottom: 2px;
}

.card-large {
    grid-column: span 8;
}

.card-medium {
    grid-column: span 4;
}

.card-full {
    grid-column: span 12;
}

.festival-highlight {
    background: linear-gradient(135deg, rgba(255, 223, 186, 0.9), rgba(255, 244, 229, 0.9));
    border-left: 4px solid #ff4444;
    padding: 12px;
    border-radius: 4px;
    margin-bottom: 12px;
    position: relative;
    overflow: hidden;
}

.festival-highlight:before {
    content: "福";
    position: absolute;
    right: 5px;
    bottom: 5px;
    font-size: 40px;
    color: rgba(255, 68, 68, 0.1);
    font-weight: bold;
    transform: rotate(15deg);
}

.festival-header {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.festival-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ff4444, #ffb347);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    margin-right: 10px;
    box-shadow: 0 2px 5px rgba(255, 68, 68, 0.3);
}

.festival-text h3 {
    color: #b22222;
    font-size: 14px;
    margin-bottom: 2px;
}

.festival-text p {
    color: #d2691e;
    font-size: 10px;
}

.benefit-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 8px;
    margin-top: 10px;
}

.benefit-card {
    background: white;
    border-radius: 4px;
    padding: 10px;
    border-top: 3px solid #ffb347;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: all 0.2s;
}

.benefit-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.benefit-card.highlight {
    border-top: 3px solid #ff4444;
    background: linear-gradient(135deg, #fff9f0, #fff0e0);
}

.benefit-icon {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #ffb347, #ffcc7f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    margin-bottom: 6px;
}

.benefit-title {
    font-size: 11px;
    font-weight: 600;
    color: #b22222;
    margin-bottom: 4px;
}

.benefit-desc {
    font-size: 9px;
    color: #666;
    line-height: 1.3;
}

.countdown-container {
    background: linear-gradient(135deg, #ff4444, #ff7b47);
    color: white;
    border-radius: 5px;
    padding: 12px;
    margin-bottom: 12px;
    text-align: center;
}

.countdown-title {
    font-size: 12px;
    margin-bottom: 8px;
    font-weight: 600;
}

.countdown-display {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-value {
    font-size: 16px;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.2);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    margin-bottom: 3px;
}

.countdown-label {
    font-size: 9px;
    opacity: 0.9;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    margin-top: 6px;
    margin-bottom: 8px;
}

.stat-item {
    text-align: center;
    padding: 6px 3px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 3px;
    border: 1px solid rgba(255, 235, 205, 0.4);
    min-height: 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat-value {
    font-size: 13px;
    font-weight: 700;
    color: #b22222;
    margin-bottom: 1px;
    line-height: 1.1;
}

.stat-label {
    font-size: 9px;
    color: #d2691e;
    line-height: 1.1;
}

.btn {
    padding: 3px 6px;
    font-size: 9px;
    border-radius: 2px;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 2px;
}

.btn-primary {
    background: linear-gradient(135deg, #ff4444, #ff7b47);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #e03c3c, #e06b3c);
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(255, 68, 68, 0.3);
}

.btn-secondary {
    background: rgba(255, 235, 205, 0.8);
    color: #b22222;
    border: 1px solid rgba(255, 182, 119, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 235, 205, 1);
    transform: translateY(-1px);
}

.btn-group {
    display: flex;
    gap: 5px;
    margin-top: 6px;
    flex-wrap: wrap;
}

.timeline-container {
    position: relative;
    padding-left: 20px;
}

.timeline-container:before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #ffb347, #ff4444);
}

.timeline-item {
    position: relative;
    margin-bottom: 12px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 4px;
    padding: 8px;
    border-left: 3px solid #ffb347;
}

.timeline-item:before {
    content: '';
    position: absolute;
    left: -23px;
    top: 10px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ff4444;
    border: 2px solid #fff;
    box-shadow: 0 0 0 2px rgba(255, 68, 68, 0.3);
}

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

.timeline-date {
    font-size: 10px;
    font-weight: 600;
    color: #b22222;
}

.timeline-status {
    font-size: 8px;
    padding: 1px 5px;
    border-radius: 10px;
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.2);
}

.timeline-content {
    font-size: 10px;
    color: #444;
}

.footer {
    padding: 10px 0;
    margin-top: 12px;
    border-top: 1px solid rgba(255, 182, 119, 0.3);
    display: flex;
    justify-content: space-between;
    font-size: 9px;
    color: #d2691e;
}

.footer-links {
    display: flex;
    gap: 10px;
}

.footer-links a {
    color: #d2691e;
    text-decoration: none;
}

.footer-links a:hover {
    color: #b22222;
    text-decoration: underline;
}

.sidebar-card {
    background: rgba(255, 253, 250, 0.95);
    border-radius: 5px;
    padding: 8px;
    margin-bottom: 6px;
    border: 1px solid rgba(255, 235, 205, 0.6);
}

.sidebar-card-title {
    font-size: 11px;
    font-weight: 600;
    color: #b22222;
    margin-bottom: 5px;
    padding-bottom: 3px;
    border-bottom: 1px solid rgba(178, 34, 34, 0.1);
}

@media (max-width: 1100px) {
    .card-large {
        grid-column: span 8;
    }
    
    .card-medium {
        grid-column: span 4;
    }
}

@media (max-width: 900px) {
    .card-large {
        grid-column: span 12;
    }
    
    .card-medium {
        grid-column: span 6;
    }
    
    .benefit-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .card-medium {
        grid-column: span 12;
    }
    
    .benefit-cards {
        grid-template-columns: 1fr;
    }
    
    .footer {
        flex-direction: column;
        gap: 6px;
    }
}

@media (max-width: 640px) {
    .countdown-display {
        gap: 5px;
    }
    
    .countdown-value {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 4px;
    }
    
    .stat-item {
        padding: 5px 2px;
        min-height: 40px;
    }
    
    .stat-value {
        font-size: 11px;
    }
    
    .stat-label {
        font-size: 8px;
    }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(3px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fall {
    0% { transform: translateY(-100px) rotate(0deg); opacity: 1; }
    100% { transform: translateY(100vh) rotate(360deg); opacity: 0; }
}

.red-packet {
    position: fixed;
    width: 20px;
    height: 25px;
    background: linear-gradient(135deg, #ff4444, #ff7b47);
    border-radius: 2px 10px 10px 2px;
    z-index: -2;
    opacity: 0.6;
    animation: fall linear forwards;
}

::-webkit-scrollbar {
    width: 3px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 182, 119, 0.1);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 107, 71, 0.3);
    border-radius: 1px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 107, 71, 0.5);
}