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

body {
    font-family: 'Inter', sans-serif;
    background: #ffffff;
    color: #374151;
    line-height: 1.5;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.top-bar {
    background: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
    padding: 8px 0;
    text-align: center;
    font-size: 12px;
    color: #6b7280;
}

.header {
    background: #ffffff;
    border-bottom: 2px solid #2563eb;
    padding: 20px 0;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.logo {
    width: 40px;
    height: 40px;
    background: #2563eb;
    color: white;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.main-content {
    padding: 40px 0;
}

.alert-box {
    background: #fef3c7;
    border: 1px solid #f59e0b;
    border-radius: 6px;
    padding: 16px;
    margin-bottom: 32px;
    position: relative;
}

.alert-icon {
    color: #d97706;
    margin-right: 8px;
    vertical-align: middle;
}

.card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.primary-button {
    background: #1e3a8a;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    margin: 16px 0;
    transition: background-color 0.2s;
}

.primary-button:hover {
    background: #1d4ed8;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin: 32px 0;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
}

.stat-number {
    font-size: 28px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
}

.countdown-container {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 24px 0;
}

.countdown-box {
    background: #1e3a8a;
    color: white;
    padding: 12px;
    border-radius: 4px;
    text-align: center;
    min-width: 50px;
}

.countdown-number {
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
}

.countdown-label {
    font-size: 10px;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.visitor-badge {
    background: #1e3a8a;
    color: white;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 13px;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 16px;
}

.benefit-list {
    list-style: none;
}

.benefit-item {
    padding: 12px 0;
    border-bottom: 1px solid #f3f4f6;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.benefit-item:last-child {
    border-bottom: none;
}

.benefit-icon {
    color: #059669;
    font-size: 18px;
    margin-top: 2px;
}

.footer {
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
    padding: 24px 0;
    text-align: center;
    font-size: 13px;
    color: #6b7280;
}

.section-title {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
    text-align: center;
}

.subtitle {
    font-size: 16px;
    color: #6b7280;
    text-align: center;
    margin-bottom: 24px;
}

.highlight {
    color: #1e3a8a;
    font-weight: 600;
}

.notice-title {
    font-weight: 600;
    color: #92400e;
    margin-bottom: 8px;
} 