body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f5f5f5;
        }
        .container {
            max-width: 450px;
            margin: 20px auto;
            border: 3px solid #ff9900;
            border-radius: 5px;
            overflow: hidden;
            background-color: #fff;
        }
        .lottery-section {
            background: linear-gradient(180deg, #98FB98 0%, #00FF00 100%);
            padding: 6px;
            border-bottom: 3px solid #00FF00;
        }
        .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;
        }
        .header {
            background-color: #ffff00;
            padding: 12px;
            text-align: center;
            font-weight: bold;
            color: #006600;
            font-size: 16px;
        }
        .important {
            text-align: center;
            padding: 12px;
            font-weight: bold;
            color: #ff0000;
            font-size: 18px;
            background-color: #ffffff;
            border-bottom: 1px solid #eee;
        }
        .free-info {
            text-align: center;
            padding: 12px;
            color: #006600;
            font-weight: bold;
            background-color: #ffffff;
            border-bottom: 1px solid #eee;
        }
        .prediction {
            padding: 12px;
            text-align: center;
            border-bottom: 1px solid #eee;
            background-color: #ffffff;
        }
        .prediction-title {
            font-weight: bold;
            color: #0000ff;
            margin-bottom: 8px;
            font-size: 16px;
        }
        .prediction-number {
            font-size: 28px;
            font-weight: bold;
            margin: 8px 0;
            display: inline-block;
            padding: 8px 20px;
            border: 3px solid #ff0000;
            background-color: #ffff00;
            color: #ff0000;
        }
        .prediction-defense {
            margin-top: 8px;
            color: #000000;
            font-size: 14px;
        }
        .prediction-defense .highlight {
            color: #ff0000;
            font-weight: bold;
            background-color: #ffff00;
            padding: 2px 5px;
        }
        .暴富-text {
            text-align: center;
            padding: 15px;
            font-weight: bold;
            color: #ff0000;
            background-color: #ffffff;
            border-bottom: 1px solid #eee;
            font-size: 16px;
        }
        .gold-text {
            text-align: center;
            padding: 15px;
            font-weight: bold;
            color: #006600;
            background-color: #ffffff;
            border-bottom: 1px solid #eee;
            font-size: 16px;
        }
        .recommendation {
            text-align: center;
            padding: 15px;
            font-weight: bold;
            color: #ff66cc;
            background-color: #ffffff;
            border-bottom: 1px solid #eee;
            font-size: 16px;
        }
        .announcement {
            text-align: center;
            padding: 20px;
            font-weight: bold;
            background-color: #ffffff;
        }
        .announcement .red {
            color: #ff0000;
        }
        .announcement .blue {
            color: #0000ff;
        }
