body {
    text-align: center;
    font-style: italic;
    margin: 3px;
    background: #FFCC99;
    color: #e0e0e0;
}

a {
    text-decoration: none;
    color: #64b5f6;
}

/* High-Contrast Main Title */
h1 {
    margin: 2px;
    font-size: 24px;
    color: #FE0016; /* Updated to High-Contrast Red */
}

hr {
    border-top: 1px solid #FE0016; /* Updated to Red Border */
}

/* =========================================
   Animations & Scrollers
   ========================================= */
.text-rainbow-animation {
    color:#000;
}

@keyframes rainbow-animation {
    to {
        background-position: 4500vh;
    }
}

.benefits {
    position: relative;
    display: flex;
    font-size: 1em;
    flex-direction: column;
    white-space: nowrap;
    overflow: hidden;
    box-sizing: border-box;
    margin: 0 5px;
    height: 40px;
}

@keyframes auto-scroll {
    0% { transform: translate(0, 60%); }
    100% { transform: translate(0, -1350%); }
}

.benefits span {
    color: #cccccc;
    font-size: 0.9em;
    line-height: 2;
    animation: auto-scroll 20s linear infinite;
}


.header {
    border: 1px solid #FE0016;
    background: #FFCC99;
    padding: 5px;
    margin-bottom: 4px;
    border-radius: 5px;
    color:#000;
    font-size: 13px;
    box-shadow: 0px 2px 5px rgba(0,0,0,0.7);
}

.head {
    border: 1px solid #FE0016;
    background: #FFCC99;
    padding: 5px;
    margin-bottom: 4px;
    border-radius: 5px;
    font-size: 13px;
    box-shadow: 0px 2px 5px rgba(0,0,0,0.7);
}

.resulthead {
    background: linear-gradient(to right, #004d40, #000000, #004d40);
    padding: 4px 8px;
    border: 1px solid #FE0016;
    border-radius: 7px;
    color: #ffffff;
    margin-bottom: 4px;
    box-shadow: 0px 4px 6px rgba(0,0,0,0.6);
}

.jodilisthead {
    background: linear-gradient(to right, #311b92, #000000, #311b92);
    padding: 4px;
    border: 1px solid #FE0016; /* Updated to Red Border */
    border-radius: .75em .75em 0em 0em;
    color: #ffffff;
    margin-top: 6px;
    margin-bottom: 0px;
}

.jodilist {
    background: #121212;
    border: 1px solid #FE0016; /* Updated to Red Border */
    border-top: none;
    border-radius: 0em 0em .75em .75em;
    margin-top: 0px;
    margin-bottom: 5px;
    padding: 0px 0px 7px 0px;
}

.jodi {
    padding: 6px;
    border-bottom: 1px solid #FE0016; /* Updated to Red Border */
    font-size: 17px;
    font-weight: bold;
    text-decoration: none;
    font-style: italic;
    background: transparent;
    color: #e8eaf6;
    display: block;
}

.panellisthead {
    background: linear-gradient(to right, #b71c1c, #000000, #b71c1c);
    padding: 4px;
    border: 1px solid #FE0016; /* Updated to Red Border */
    border-radius: .75em .75em 0em 0em;
    color: #ffffff;
    margin-bottom: 0px;
    font-style: italic;
}

.panellist {
    background: #121212;
    border: 1px solid #FE0016; /* Updated to Red Border */
    border-top: none;
    border-radius: 0em 0em .75em .75em;
    margin-top: 0px;
    margin-bottom: 5px;
    padding: 0px 0px 7px 0px;
}

.panel {
    padding: 6px;
    border-bottom: 1px solid #FE0016; /* Updated to Red Border */
    font-size: 17px;
    font-weight: bold;
    font-style: italic;
    background: transparent;
    color: #ffebee;
    display: block;
}

/* =========================================
   Articles, Buttons & Footer
   ========================================= */
.article {
    font-size: 14px;
    border: 1px solid #FE0016; /* Updated to Red Border */
    background: #FFCC99;
    border-radius: 5px;
    padding: 8px;
    margin-bottom: 5px;
    text-align: left;
    box-shadow: 0px 2px 4px rgba(0,0,0,0.5);
    color: #000;
}

.button {
    display: inline-block;
    padding: 12px 24px;
    margin: 10px;
    font-size: 16px;
    color: white;
    background-color: #20b2aa;
    border: none;
    border-radius: 5px;
    text-decoration: none;
}

.call {
    background-color: #29b6f6;
}

.footer {
    border: 1px solid #FE0016; /* Updated to Red Border */
    border-radius: 5px;
    padding: 8px;
    font-weight: bold;
    font-size: 18px;
    font-style: italic;
    background: linear-gradient(to right, #fdd835, #fbc02d);
    color: #000000;
}

/* High-Contrast Helper Class (If needed for specific text elements) */
.high-contrast {
    color: #FE0016 !important;
}