* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: "Microsoft YaHei", "SimHei", sans-serif;
            background: #f5f5f5;
            padding: 10px;
        }
        .lottery-section {
            background: linear-gradient(180deg, #98FB98 0%, #00FF00 100%);
            padding: 6px;
            border-bottom: 3px solid #00FF00;
            margin-bottom: 10px;
        }
        .lottery-top-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 4px;
        }
        .lottery-left {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
        }
        .lottery-title {
            color: #228B22;
            font-size: 15px;
            font-weight: bold;
        }
        .lottery-title .period {
            color: #FF0000;
        }
        .countdown {
            color: #006400;
            font-size: 14px;
            font-weight: bold;
        }
        .countdown .time {
            color: #FF0000;
            font-size: 18px;
        }
        .history-link {
            color: #FF0000;
            font-size: 14px;
            font-weight: bold;
            cursor: pointer;
            text-decoration: none;
        }
        .lottery-balls-row {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 4px;
        }
        .lottery-balls {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 2%;
            flex-wrap: nowrap;
            width: 100%;
        }
        .ball-wrapper {
            display: flex;
            flex-direction: column;
            align-items: center;
            flex: 1;
            min-width: 0;
            max-width: 55px;
        }
        .ball {
            width: 100%;
            aspect-ratio: 1/1;
            max-width: 50px;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: clamp(16px, 5vw, 24px);
            font-weight: bold;
            color: #FFFFFF;
            border: 2px solid #FFFFFF;
            box-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }
        .ball.red {
            background: #DC143C;
        }
        .ball.green {
            background: #00AA00;
        }
        .ball.blue {
            background: #0066CC;
        }
        .zodiac-text {
            font-size: clamp(11px, 3vw, 14px);
            color: #000;
            margin-top: 3px;
            text-align: center;
            width: 100%;
            line-height: 1.3;
            font-weight: bold;
        }
        .plus-sign {
            font-size: clamp(18px, 5vw, 26px);
            font-weight: bold;
            color: #000;
            flex-shrink: 0;
        }
        .date-info {
            font-size: 12px;
            color: #000;
        }
        .container {
            width: 100%;
            max-width: 1000px;
            margin: 0 auto;
            background-color: #fff;
            border: 1px solid #000;
        }
        .header {
            background-color: #ff0000;
            color: #fff;
            padding: 5px;
            text-align: center;
            font-size: 18px;
            font-weight: bold;
        }
        .sub-header {
            background-color: #00ff00;
            color: #000;
            padding: 5px;
            text-align: center;
            font-size: 16px;
            font-weight: bold;
        }
        .table-container {
            width: 100%;
            border-collapse: collapse;
        }
        .table-container th,
        .table-container td {
            border: 1px solid #000;
            padding: 5px;
            text-align: center;
            font-size: 14px;
            line-height: 1.2;
        }
        .table-container th {
            background-color: #f0f0f0;
            font-weight: bold;
        }
        .number {
            color: #ff0000;
            font-weight: bold;
        }
        .highlight {
            background-color: #ffff00;
        }
        .footer {
            background-color: #00ff00;
            color: #000;
            padding: 5px;
            text-align: center;
            font-size: 16px;
            font-weight: bold;
        }
