/* ============================================
   RESET & BASE STYLES
   ============================================ */

.right-image {
    position: relative;
    float: right;
    margin-bottom: 1em;
    margin-left: 1em;
}

.welcome-offer {
    text-align: center;
    text-transform: uppercase;
    font-size: 16px;
    color: #bf811d;
}

.terms {
    font-size: 12px;
    text-align: center;
    border-radius: 6px;
    margin: 8px;
    box-shadow: 0 3px 6px rgb(0 0 0 / 15%);
}

.bottom-offer {
    width: 100%;
    background: linear-gradient(to bottom,#ffc423 0,#ffa414 100%);
    color: #111;
    text-align: center;
    display: block;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    text-shadow: 1px 1px rgb(255 255 255 / 40%);
    margin-top: 10px;
    cursor: pointer;
    border-radius: 22px;
    border: 1px solid #ffa415;
    box-shadow: 0 3px 6px rgba(0,0,0,.15);
}

.bottom-offer:hover {
    background: linear-gradient(to bottom,#ebb420 0,#ed9306 100%);
    color: #111;
    border: 1px solid #ed9307;
}

.ad-offer {
    display: flex;
    position: relative;
    justify-content: space-between;
    align-items: center;
    padding: 1px 5px;
    color: #bababa;
    font-size: 14px;
    height: 58px;
    width: 640px;
}

.ad-bonus {
    color: #1491a1;
    font-size: 18px;
    text-align: center;
}

.ad_button {
    max-width: 6.85714rem;
    display: block;
    padding: .31429rem .35714rem .34286rem .35714rem;
    border: .07143rem solid #FFC107;
    border-radius: 4px;
    background: #FFC107;
    text-align: center;
    font-size: 1em;
    color: #333;
}

.ad_button:hover {
    background-color: #FF9800;
}

.bga {
    display: flex;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
    padding: 6px;
    border-radius: 4px;
    margin: 8px;
}

.bet18 {
    text-align: center;
    justify-content: space-between;
    margin-top: 10px;
}

.bga-18 {
    float: left;
    padding: 14px 10px;
    margin: -3px 8px 0 0;
    background-color: #d60a0a;
    border-radius: 50%;
    font-size: 18px;
    color: #fff;
    line-height: 18px;
    text-shadow: #777 1px 1px 1px;
}

.socials {
    float: none;
    width: auto;
    margin-bottom: 20px;
    color: #C6C6C6;
    text-align: center;
}

.socials a:link {
    color: #7ca3ca;
}

.socials a:hover {
    color: #fff;
}

/* ============================================
   TOOLTIP
   ============================================ */

.tooltip-ad {
    position: relative;
    display: inline-block;
    font-weight: normal;
}

.tooltip-ad .tooltiptext-ad {
    visibility: hidden;
    width: 650px;
    background: #161512 linear-gradient(to bottom, #2e2a24, #161512 116px) no-repeat;
    color: #949494;
    text-align: center;
    font-size: 12px;
    font-weight: normal;
    border-radius: 6px;
    padding: 10px;
    position: absolute;
    z-index: 999;
    top: 53px;
    margin-left: -337px;
    opacity: 0;
    transition: opacity 0.3s;
}

.tooltip-ad:hover .tooltiptext-ad {
    visibility: visible;
    opacity: 1;
}

/* ============================================
   BOOKMAKERS – GRID & CARDS
   ============================================ */

.bookmakers-container {
    display: flex;
    flex-wrap: wrap;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
    margin: 0 auto;
    padding: 0 10px;
    box-sizing: border-box;
}

/* MOBILE */
@media (max-width: 768px) {
    .bookmakers-container {
        grid-template-columns: 1fr;
    }
}

/* CARD */
.bookmaker-card {
    border: 1px solid rgba(186,186,186,0.17);
    border-radius: 22px;
    padding: 15px;
    text-align: center;
    background: transparent;
    box-sizing: border-box;
    width: 32%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bookmaker-card-widget {
    border: 1px solid rgba(186, 186, 186, 0.17);
    border-radius: 22px;
    padding: 15px;
    text-align: center;
    background: transparent;
    box-sizing: border-box;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media screen and (max-width: 600px) {
    .bookmaker-card {
        width: 100%;
    }
    .bookmaker-card-widget {
        width: 100%;
    }
}

/* LOGO */
.bookmaker-logo-wrapper {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.bookmaker-logo-wrapper img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.bookmaker-logo-green {
    border: 2px solid #6bd347;
    background: linear-gradient(#2e601c, #49ad26);
}

.bookmaker-logo-blue {
    border: 2px solid #5390bf;
    background: linear-gradient(#07385e, #24679b);
}

.bookmaker-logo-yellow {
    border: 2px solid #FFEB3B;
    background: linear-gradient(#f1bc16, #FDCE38);
}

/* PROMO */
.bookmaker-promo {
    font-size: 14px;
    font-weight: bold;
    padding: 6px 15px;
    border-radius: 22px;
    margin-bottom: 15px;
}

.promo-green { background:#348716; color:#fff; }
.promo-blue  { background:#1a5685; color:#fff; }
.promo-yellow{ background:#f1bc16; color:#000; }

/* CONTENT */
.bookmaker-title {
    font-size: 14px;
    color: #bababa;
    margin-bottom: 15px;
    text-align: center;
}

/* BUTTON */
.bookmaker-button-wrapper {
    margin-bottom: 15px;
}

.btn-green,
.btn-blue,
.btn-yellow {
    display: inline-block;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 22px;
    width: 100px;
    text-align: center;
}

.btn-green { background:#348716; color:#fff; }
.btn-blue  { background:#1a5685; color:#fff; }
.btn-yellow{ background:#f1bc16; color:#000; }

/* TERMS */
.bookmaker-terms {
    border-top: 1px solid rgba(186,186,186,0.2);
    padding-top: 12px;
}

.bookmaker-terms p {
    font-size: 12px;
    color: #949494;
}

.bookmaker-disclaimer {
    font-size: 11px;
    color: #7a7a7a;
    font-style: italic;
}

/* ==========================================
   HITODDS AUTHOR BOX
   ========================================== */

.hitodds-author-card,
.hitodds-author-card *{
    box-sizing:border-box;
}

.hitodds-author-card{

    max-width:980px;
    margin:30px auto;

    padding:28px;

    border-top:6px solid #629924;
    border-radius:18px;

    background:transparent;

    text-align:center;

    font-family:'Cabin',sans-serif;

    isolation:isolate;
}

/* PHOTO */

.hitodds-author-photo-wrap{

    position:relative;

    width:130px;
    height:130px;

    margin:0 auto 18px;
}

.hitodds-author-photo{

    width:130px;
    height:130px;

    border-radius:50%;

    object-fit:cover;

    display:block;

    box-shadow:
        0 0 0 4px rgba(98,153,36,.15),
        0 8px 20px rgba(0,0,0,.25);
}

.hitodds-author-badge{

    position:absolute;

    right:0;
    bottom:0;

    width:34px;
    height:34px;

    border-radius:50%;

    background:#629924;

    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:18px;
    font-weight:700;

    box-shadow:0 4px 10px rgba(0,0,0,.35);
}

/* NAME */

.hitodds-author-name{

    margin:0 0 8px;

    color:#bababa !important;

    font-size:20px !important;
    font-weight:700 !important;

    line-height:1.3;
}

/* ROLE */

.hitodds-author-role{

    color:#629924;

    font-size:14px;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:1px;

    margin-bottom:18px;
}

/* DESCRIPTION */

.hitodds-author-description{

    max-width:900px;

    margin:0 auto 24px;

    color:#949494;

    font-size:14px;

    line-height:1.8;

    padding-top:18px;

    border-top:1px solid rgba(98,153,36,.35);

    text-align:left;
}

/* STATS */

.hitodds-author-stats{

    display:flex;

    justify-content:center;
    align-items:center;

    flex-wrap:wrap;

    gap:12px;

    margin-bottom:20px;

    width:100%;
}

.hitodds-stat{

    min-width:180px;

    background:rgba(98,153,36,.08);

    border:1px solid rgba(98,153,36,.25);

    border-radius:12px;

    padding:10px 18px;

    text-align:center;

    color:#bababa;

    font-size:14px;

    font-weight:600;

    line-height:1.5;

    transition:none;
}

.hitodds-stat strong{

    color:#629924;

    font-weight:700;
}

/* SPECIALIZED */

.hitodds-specialized{

    display:inline-block;

    padding:12px 22px;

    border-radius:999px;

    background:rgba(98,153,36,.10);

    border:1px solid rgba(98,153,36,.25);

    color:#bababa;

    font-size:14px;

    font-weight:500;

    text-align:center;
}

/* ==========================================
   TABLET
   ========================================== */

@media (max-width:768px){

.hitodds-author-card{
    padding:24px 18px;
}

.hitodds-author-description{
    text-align:center;
}

.hitodds-author-stats{

    flex-direction:column;

    justify-content:center;
    align-items:center;

    width:100%;
}

.hitodds-stat{

    width:100%;
    max-width:100%;

    min-width:auto;

    margin:0 auto;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
}

.hitodds-specialized{

    display:block;

    width:100%;

    text-align:center;
}
}

/* ==========================================
   MOBILE
   ========================================== */

@media (max-width:480px){

.hitodds-author-card{
    padding:22px 14px;
}

.hitodds-author-photo-wrap{
    width:120px;
    height:120px;
}

.hitodds-author-photo{
    width:120px;
    height:120px;
}

.hitodds-author-name{
    font-size:18px !important;
}

.hitodds-author-description{
    font-size:14px;
}

.hitodds-stat{

    width:100%;
    font-size:14px;
}

.hitodds-specialized{

    font-size:14px;

    line-height:1.5;
}
}

/* =========================================================
   HARD FRAME LOCK ROOT
   ========================================================= */

.botd-wrapper {
    all: initial;
    font-family: Cabin, sans-serif;
    display: block;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: geometricPrecision;
}

.botd-wrapper * {
    box-sizing: border-box;
}

/* =========================================================
   HEADER FORCE VISIBILITY FIX (CORE RULES - CORE WRAPPER LAYER)
   ========================================================= */

.botd-wrapper .header {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
}

/* =========================================================
   BASE LAYOUT (STABLE, NO FLUID VALUES)
   ========================================================= */

.botd-wrapper .bet-card {
    background: transparent;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
    line-height: 1.2;
    padding-bottom: 10px;
}

/* =========================================================
   HEADER / LEAGUE / TIME
   ========================================================= */

.botd-wrapper .header {
    font-size: 18px;
    font-weight: 700;
    color: #bababa;
    margin-bottom: 12px;
}

.botd-wrapper .league {
    font-size: 16px;
    font-weight: 600;
    color: #949494;
    margin-bottom: 5px;
}

.botd-wrapper .time {
    font-size: 16px;
    color: #949494;
    margin-bottom: 30px;
}

/* ICON ALIGNMENT */

.botd-wrapper .league,
.botd-wrapper .time {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.botd-wrapper .league i {
    font-size: 16px;
    color: #949494;
}

.botd-wrapper .time i {
    font-size: 14px;
    color: #949494;
}

/* =========================================================
   MATCH LAYOUT
   ========================================================= */

.botd-wrapper .match-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: nowrap;
}

.botd-wrapper .team-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 0;
}

/* =========================================================
   TEAM VISUALS
   ========================================================= */

.botd-wrapper .team-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 8px;
}

.botd-wrapper .team {
    font-size: 22px;
    font-weight: 600;
    color: #949494;
}

/* =========================================================
   CHART
   ========================================================= */

.botd-wrapper .chart-wrapper {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.botd-wrapper .chart-container {
    position: relative;
    width: 220px;
    height: 220px;
}

/* SVG */

.botd-wrapper .percentage-chart-bg {
    fill: none;
    stroke: #34312da8;
    stroke-width: 2;
}

.botd-wrapper .percentage-chart-stroke {
    fill: none;
    stroke: #629924;
    stroke-width: 2;
    stroke-linecap: round;
    animation: botdProgress 1s ease-out forwards;
}

@keyframes botdProgress {
    0% { stroke-dasharray: 0, 100; }
    100% { stroke-dasharray: var(--percentage), 100; }
}

/* CENTER TEXT */

.botd-wrapper .chart-center-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    text-align: center;
}

.botd-wrapper .percentage-value {
    font-size: 36px;
    font-weight: 700;
    color: #949494;
    line-height: 1;
    margin-bottom: 2px;
    white-space: nowrap;
}

.botd-wrapper .probability-label {
    font-size: 14px;
    color: #949494;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

/* =========================================================
   BUTTON
   ========================================================= */

/* =========================================================
   BUTTON
   ========================================================= */

.botd-wrapper .prediction-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 10px 25px;
    border-radius: 25px;
    color: #bf811d;

    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;

    text-decoration: none;
    line-height: 1;

    }

@property --border-angle {
    syntax: '<angle>';
    inherits: false;
    initial-value: 0deg;
}

.prediction-button {
    border: 1px solid transparent;
    background:
        linear-gradient(#161512, #161512) padding-box,
        conic-gradient(
            from var(--border-angle) at 50% 50%,
            #1b1b1b 0deg,
            #1b1b1b 25deg,
            #382a18 36deg,
            #543814 47deg,
            #714711 58deg,
            #8d560e 69deg,
            #c67307 80deg,
            #ff9000 90deg,
            #c67307 102deg,
            #8d560e 115deg,
            #714711 127deg,
            #543814 137deg,
            #382a18 145deg,
            #2a2018 165deg,
            #1b1b1b 174deg,
            #1b1b1b 200deg,
            #2a2018 209deg,
            #382a18 229deg,
            #543814 247deg,
            #714711 266deg,
            #8d560e 285deg,
            #c67307 305deg,
            #ff9000 332.3deg,
            #c67307 340deg,
            #8d560e 345deg,
            #714711 349deg,
            #543814 353deg,
            #382a18 356deg,
            #1b1b1b 358deg,
            #1b1b1b 360deg
        ) border-box;

    animation: rotateBorder 8s linear infinite;
}

@keyframes rotateBorder {
    from {
        --border-angle: 0deg;
    }
    to {
        --border-angle: 360deg;
    }
}

.prediction-button:hover {
    background: #bf811d;
    color: #242525;
    border-radius: 25px;
    border: 1px solid #bf811d;
}

/* =========================================================
   MOBILE (PRESERVED)
   ========================================================= */

@media (max-width: 480px) {

    .botd-wrapper .team-logo {
        width: 80px;
        height: 80px;
    }

    .botd-wrapper .match-container {
        gap: 8px;
    }

    .botd-wrapper .team {
        font-size: 16px;
    }

    .botd-wrapper .chart-container {
        width: 150px;
        height: 150px;
    }

    .botd-wrapper .percentage-value {
        font-size: 18px;
    }

    .botd-wrapper .probability-label {
        font-size: 12px;
    }
}

/* =========================================================
   TABLET + DESKTOP
   ========================================================= */

@media (min-width: 481px) {

    .botd-wrapper .team-logo {
        width: 90px;
        height: 90px;
    }

    .botd-wrapper .chart-container {
        width: 150px;
        height: 150px;
    }

    .botd-wrapper .percentage-value {
        font-size: 18px;
    }

    .botd-wrapper .probability-label {
        font-size: 12px;
    }
}

/* =========================================================
   ULTRA WIDE SCALING
   ========================================================= */

@media (min-width: 1921px) {
    .botd-wrapper {
        transform: scale(1.05);
        transform-origin: top center;
    }
}

@media (min-width: 2560px) {
    .botd-wrapper {
        transform: scale(1.12);
    }
}

@media (min-width: 3200px) {
    .botd-wrapper {
        transform: scale(1.2);
    }
}

@media (min-width: 3840px) {
    .botd-wrapper {
        transform: scale(1.28);
    }
}

/* =========================================
   FREE BETS
   ========================================= */

:root {
    --grid-color: #34312da8; /* Culoare fundal grid-item cu transparenta */
    --text-light: #f0f0f0;
    --text-muted: #949494; /* Culoare text titlu */
    --gap-small: 8px;
    --gap-large: 15px;
}
       
/* =========================================
   GRID CONTAINER
   ========================================= */
.grid-container {
    font-family: Cabin;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: var(--gap-small); /* DOAR spatiu intre coloane */
    row-gap: var(--gap-small); /* ADAUGAT: spatiu intre randuri (desktop + mobile) */
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    overflow-x: auto;
    /* REMOVED: margin-bottom and padding-bottom */
    /* Let the parent iframe handle spacing */
}

/* =========================================
   GRID ITEMS (CARDS)
   ========================================= */
.grid-item {
    background-color: #34312da8; /* Culoare directa ca sa functioneze corect in toate browserele */
    border-radius: 8px;
    padding: 15px;
    min-width: 100px;
    margin-bottom: 0; /* Eliminat margin-bottom deoarece row-gap face spatiul */
    /* REMOVED: transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); */
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
}

/* =========================================
   GRID ITEM HOVER EFFECT
   ========================================= */
.grid-item:hover {
    /* REMOVED: transform: translateY(-3px); */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border-color: #666;
    /* ADDED: background color change on hover */
    background-color: #4a453f; /* Darker shade for hover */
}

/* =========================================
   TITLE CONTAINER (ICON + TEXT)
   ========================================= */
/* Container pentru titlu cu iconiță */
.title-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    margin-bottom: 8px;
}

.title-icon {
    color: #949494;
    font-size: 1.3em;
}

.item-title {
    color: #949494; /* MODIFICAT: culoare directa, nu variabila */
    font-size: clamp(0.9rem, 2.5vw, 1.2rem);
    font-weight: 600;
    transition: color 0.3s ease;
}

/* =========================================
   ODDS CONTAINER
   ========================================= */
.odds-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    width: 100%;
}

.odds-label {
    color: #949494;
    font-size: 0.9em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.odds-value-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.odds-icon {
    color: #949494;
    font-size: 1.2em;
}

/* =========================================
   ODDS VALUE STYLES
   ========================================= */
/* Stiluri pentru cote - mai atractive */
.odds-value {
    font-weight: 700;
    font-size: 1.2em;
    color: #b5b5b5; /* Mai deschis pentru contrast */
    transition: color 0.3s ease;
}

/* Stil special pentru cotele mari (Mega ACCA) */
.mega-odds {
    font-weight: 800;
    font-size: 1.4em;
    background: linear-gradient(45deg, #FF3B30, #FF9800);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

/* =========================================
   BADGE STYLES
   ========================================= */
/* Badge MEGA pentru cota mare */
.mega-badge {
    background: linear-gradient(45deg, #FF3B30, #FF9800);
    color: #000;
    font-size: 0.7em;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: 4px;
}

/* Badge pentru cote mici (BOTD, Banker) */
.safe-badge {
    background-color: #629924;
    color: #000;
    font-size: 0.7em;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: 4px;
}

/* Badge pentru cote medii */
.value-badge {
    background-color: #bf811d;
    color: #000;
    font-size: 0.7em;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: 4px;
}

/* =========================================
   INDIVIDUAL HOVER COLORS FOR EACH GRID ITEM
   ========================================= */
.grid-item:nth-child(1):hover .item-title,
.grid-item:nth-child(1):hover .title-icon,
.grid-item:nth-child(1):hover .odds-label,
.grid-item:nth-child(1):hover .odds-value,
.grid-item:nth-child(1):hover .odds-icon {
    color: #629924;
}

.grid-item:nth-child(2):hover .item-title,
.grid-item:nth-child(2):hover .title-icon,
.grid-item:nth-child(2):hover .odds-label,
.grid-item:nth-child(2):hover .odds-value,
.grid-item:nth-child(2):hover .odds-icon {
    color: #629924;
}

.grid-item:nth-child(3):hover .item-title,
.grid-item:nth-child(3):hover .title-icon,
.grid-item:nth-child(3):hover .odds-label,
.grid-item:nth-child(3):hover .odds-value,
.grid-item:nth-child(3):hover .odds-icon {
    color: #629924;
}

.grid-item:nth-child(4):hover .item-title,
.grid-item:nth-child(4):hover .title-icon,
.grid-item:nth-child(4):hover .odds-label,
.grid-item:nth-child(4):hover .odds-value,
.grid-item:nth-child(4):hover .odds-icon {
    color: #629924;
}

.grid-item:nth-child(5):hover .item-title,
.grid-item:nth-child(5):hover .title-icon,
.grid-item:nth-child(5):hover .odds-label,
.grid-item:nth-child(5):hover .odds-value,
.grid-item:nth-child(5):hover .odds-icon {
    color: #629924;
}

.grid-item:nth-child(6):hover .item-title,
.grid-item:nth-child(6):hover .title-icon,
.grid-item:nth-child(6):hover .odds-label,
.grid-item:nth-child(6):hover .odds-value,
.grid-item:nth-child(6):hover .odds-icon {
    color: #629924;
}

.grid-item:nth-child(7):hover .item-title,
.grid-item:nth-child(7):hover .title-icon,
.grid-item:nth-child(7):hover .odds-label,
.grid-item:nth-child(7):hover .odds-value,
.grid-item:nth-child(7):hover .odds-icon {
    color: #629924;
}

.grid-item:nth-child(8):hover .item-title,
.grid-item:nth-child(8):hover .title-icon,
.grid-item:nth-child(8):hover .odds-label,
.grid-item:nth-child(8):hover .odds-value,
.grid-item:nth-child(8):hover .odds-icon {
    color: #629924;
}

.grid-item:nth-child(9):hover .item-title,
.grid-item:nth-child(9):hover .title-icon,
.grid-item:nth-child(9):hover .odds-label {
    color: #629924;
}

/* =========================================
   MEGA ACCA SPECIAL STYLES
   ========================================= */
/* MEGA ACCA SPECIAL STYLES - ONLY APPLIED TO MEGA ACCA */
/* This selector targets ONLY the 9th grid item (Mega ACCA) */
.grid-container > a:nth-child(9) {
    position: relative; /* ONLY for Mega ACCA */
    border: 2px solid #cc3333; /* Red border ONLY for Mega ACCA */
    /* Adjust padding to compensate for border */
    padding: calc(15px - 2px) calc(15px - 2px); /* Compensate for 2px border */
}

/* =========================================
   HOT BADGE (MEGA ACCA ONLY)
   ========================================= */
/* Hot badge - only for Mega ACCA */
.hot-badge {
    position: absolute;
    top: -10px; /* Adjusted for better positioning */
    right: 5px;
    background-color: #cc3333;
    color: #fff;
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 6px rgba(204, 51, 51, 0.3);
    z-index: 10;
}

/* =========================================
   RESPONSIVE STYLES (max-width: 600px)
   ========================================= */
@media (max-width: 600px) {
    .grid-container {
        column-gap: 6px;
        row-gap: 6px; /* Mentine spatiul si la mobile */
    }
    
    .grid-item {
        padding: 12px 5px; /* Adjusted for better mobile */
        margin-bottom: 0;
    }
    
    /* Adjust Mega ACCA for mobile */
    .grid-container > a:nth-child(9) {
        padding: calc(12px - 2px) calc(5px - 2px); /* Compensate for border on mobile */
    }
    
    .title-container {
        gap: 6px;
    }
    
    .title-icon {
        font-size: 1.1em;
    }
    
    .hot-badge {
        font-size: 9px;
        padding: 2px 6px;
        top: -8px;
        right: 3px;
    }
    
    .odds-label {
        font-size: 0.8em;
    }
    
    .mega-badge,
    .safe-badge,
    .value-badge {
        font-size: 0.6em;
        padding: 1px 4px;
    }
    
    body {
        padding: 0px;
    }
}

/* =========================================
   RESPONSIVE STYLES (max-width: 408px)
   ========================================= */
@media (max-width: 408px) {
    .grid-container {
        column-gap: 4px;
        row-gap: 4px; /* Mentine spatiul si pe mobile foarte mici */
    }
    
    .grid-item {
        min-width: 90px;
        padding: 8px 4px;
        margin-bottom: 0;
    }
    
    /* Adjust Mega ACCA for small mobile */
    .grid-container > a:nth-child(9) {
        padding: calc(8px - 2px) calc(4px - 2px); /* Compensate for border on small mobile */
        min-width: 90px; /* Same as others */
    }
    
    .title-container {
        gap: 4px;
    }
    
    .item-title {
        font-size: 12px; /* MODIFICAT: de la 13px la 12px, valabil de la 0 la 408px */
    }
    
    .title-icon {
        font-size: 1em;
    }
    
    .odds-container {
        margin-top: 2px;
    }
    
    .odds-label {
        font-size: 0.7em;
    }
    
    .odds-value-container {
        gap: 5px;
    }
    
    .odds-icon {
        font-size: 1em;
    }
    
    .odds-value {
        font-size: 1.1em;
    }
    
    .mega-odds {
        font-size: 1.2em;
    }
    
    .hot-badge {
        font-size: 8px;
        padding: 2px 5px;
        top: -7px;
        right: 2px;
    }
    
    .mega-badge,
    .safe-badge,
    .value-badge {
        font-size: 0.5em;
        padding: 1px 3px;
        margin-left: 2px;
    }
}

/* =========================================
   BET OF THE DAY (BOTD) - CARD STYLES
   ========================================= */

/* =========================================
   MAIN CARD CONTAINER
   ========================================= */
.botd-card {
    max-width: 100%;
    width: 100%;
    background: transparent;
    overflow: hidden;
    margin: 0;
}

/* =========================================
   BOTD HEADER
   ========================================= */
.botd-header {
    font-size: 16px;
    font-weight: 700;
    color: #bababa;
    padding: 15px 20px 10px;
    text-transform: uppercase;
    border-radius: 12px 12px 0px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 5px;
}

.botd-header .title-icon {
    color: #bababa;
    font-size: 16px;
}

/* =========================================
   MATCH HEADER
   ========================================= */
.match-header {
    padding: 0px 20px 15px;
    text-align: center;
}

.league {
    font-size: 16px;
    color: #949494;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.league i {
    color: #949494;
    font-size: 14px;
}

.match-date {
    font-size: 14px;
    color: #949494;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
}

.match-date i {
    color: #949494;
    font-size: 12px;
}

.match-time-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 0;
}

.match-time-section i {
    color: #949494;
    font-size: 12px;
}

.match-time-section span {
    color: #949494;
    font-size: 14px;
    font-weight: 500;
}

/* =========================================
   TEAMS SECTION
   ========================================= */
.teams-section {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.team {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.team-logo {
    width: clamp(75px, 15vw, 90px);
    height: clamp(75px, 15vw, 90px);
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
    margin-bottom: 10px;
}

.team-name {
    font-size: 14px;
    font-weight: 600;
    color: #bababa;
    text-align: center;
}

/* =========================================
   MIDDLE SECTION (ODDS + LIVE STREAMING)
   ========================================= */
.middle-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 20px;
    position: relative;
}

.tip-value {
    font-size: 48px;
    font-weight: 800;
    color: #629924;
    line-height: 1;
    margin-bottom: 8px;
}

.odds-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

/* =========================================
   LIVE STREAMING BUTTON & TOOLTIP
   ========================================= */
.live-streaming {
    width: 32px;
    height: 24px;
    border: 1px solid #949494;
    border-radius: 5px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-top: 4px;
    background: rgba(52, 49, 45, 0.6);
}

.live-streaming::before {
    content: "TV";
    font-size: 12px;
    font-weight: bold;
    color: #949494;
}

.tooltip-box {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 130%;
    left: 50%;
    transform: translateX(-50%);
    width: 167px;
    background: linear-gradient(to bottom, #2e2a24, #161512 116px) no-repeat #161512;
    border-radius: 8px;
    padding: 5px 0;
    box-shadow: 0px 5px 15px rgba(0,0,0,0.4);
    z-index: 9999;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.live-streaming:hover .tooltip-box {
    visibility: visible;
    opacity: 1;
}

.stream-link {
    display: flex;
    align-items: center;
    padding: 8px 10px;
    text-decoration: none;
    color: #949494;
    font-size: 12px;
    font-weight: bold;
    transition: background 0.2s;
}

.stream-link:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.stream-link img {
    width: 55px;
    height: 22px;
    margin-right: 15px;
    object-fit: contain;
}

/* =========================================
   STADIUM INFO
   ========================================= */
.stadium-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(52, 49, 45, 0.6);
    margin: 15px 20px;
    border-radius: 10px;
}

.stadium-info i {
    color: #949494;
    font-size: 14px;
}

.stadium-name {
    color: #949494;
    font-size: 14px;
    font-weight: 500;
}

/* =========================================
   BET BUTTON
   ========================================= */
.bet-button {
    background: rgba(98, 153, 36, .08);
    color: #629924;
    border: 1px solid rgba(98, 153, 36, .25);
    padding: 16px;
    width: calc(100% - 40px);
    margin: 20px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background 0.3s ease;
}

.bet-button:hover {
    background: rgba(98, 153, 36, 0.2);
    transform: none;
    box-shadow: none;
}

/* =========================================
   RESPONSIVE STYLES (max-width: 768px)
   ========================================= */
@media (max-width: 768px) {
    .middle-section {
        margin: 0 15px;
    }
    
    .tip-value {
        font-size: clamp(28px, 10vw, 48px);
    }
    
    .live-streaming {
        width: 28px;
        height: 20px;
    }
    
    .live-streaming::before {
        font-size: 12px;
    }
    
    .tooltip-box {
        width: 167px;
        left: 50%;
        transform: translateX(-50%);
    }
}

/* =========================================
   RESPONSIVE STYLES (max-width: 480px)
   ========================================= */
@media (max-width: 480px) {
    .tip-value {
        font-size: clamp(28px, 10vw, 48px);
    }
    
    .live-streaming {
        width: 26px;
        height: 18px;
    }
    
    .tooltip-box {
        width: 142px;
    }
    
    .stream-link img {
        width: 45px;
        height: 18px;
        margin-right: 10px;
    }
    
    .stream-link {
        font-size: 11px;
        padding: 6px 8px;
    }
}

=========================================
   BANKER TIPS - COMPONENT IZOLAT
   ========================================= */

/* Container principal - doar pentru Banker Tips */
.banker-tips-container {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    text-align: center !important;
    box-sizing: border-box !important;
}

.banker-tips-container > * {
    width: 100% !important;
    max-width: min(550px, 90vw) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box !important;
}

/* Banker Tip Header */
.banker-tips-container .banker-header {
    font-size: clamp(14px, 4vw, 16px);
    font-weight: 700;
    color: #bababa;
    padding: clamp(10px, 3vw, 15px) clamp(15px, 5vw, 20px) clamp(8px, 2vw, 10px);
    text-transform: uppercase;
    border-radius: 12px 12px 0px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 5px;
}

.banker-tips-container .banker-header .title-icon {
    color: #bababa;
    font-size: clamp(14px, 4vw, 18px);
}

/* Header */
.banker-tips-container .match-header {
    padding: 0px clamp(15px, 5vw, 20px) clamp(10px, 4vw, 15px);
    text-align: center;
}

.banker-tips-container .league {
    font-size: clamp(13px, 4vw, 16px);
    color: #949494;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.banker-tips-container .league i {
    color: #949494;
    font-size: clamp(11px, 3.5vw, 14px);
}

.banker-tips-container .match-date {
    font-size: clamp(11px, 3.5vw, 14px);
    color: #949494;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
}

.banker-tips-container .match-date i {
    color: #949494;
    font-size: clamp(10px, 3vw, 12px);
}

.banker-tips-container .match-time-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 0;
}

.banker-tips-container .match-time-section i {
    color: #949494;
    font-size: clamp(10px, 3vw, 12px);
}

.banker-tips-container .match-time-section span {
    color: #949494;
    font-size: clamp(11px, 3.5vw, 14px);
    font-weight: 500;
}

/* Section for logos and odds */
.banker-tips-container .teams-odds-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 clamp(10px, 5vw, 20px);
    margin-bottom: clamp(15px, 4vw, 20px);
    position: relative;
    min-height: clamp(120px, 30vw, 160px);
    box-sizing: border-box;
}

.banker-tips-container .teams-odds-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.banker-tips-container .teams-odds-column:nth-child(2) {
    justify-content: center;
    margin: 0 clamp(8px, 4vw, 20px);
    position: relative;
    z-index: 10;
}

.banker-tips-container .team {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.banker-tips-container .team-logo {
    width: clamp(75px, 15vw, 75px);
    height: clamp(75px, 15vw, 75px);
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
    margin-bottom: clamp(5px, 2vw, 10px);
}

.banker-tips-container .team-name {
    font-size: clamp(10px, 3.5vw, 14px);
    font-weight: 600;
    color: #bababa;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    height: auto;
    min-height: clamp(14px, 4vw, 20px);
}

.banker-tips-container .middle-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.banker-tips-container .main-odds-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.banker-tips-container .tip-value {
    font-size: clamp(28px, 10vw, 48px);
    font-weight: 800;
    color: #629924;
    line-height: 1;
    margin: 0;
    text-align: center;
}

.banker-tips-container .live-streaming {
    width: clamp(24px, 6vw, 32px);
    height: clamp(18px, 4.5vw, 24px);
    border: 1px solid #949494;
    border-radius: 5px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-top: 4px;
    background: rgba(52, 49, 45, 0.6);
}

.banker-tips-container .live-streaming::before {
    content: "TV";
    font-size: clamp(9px, 2.5vw, 12px);
    font-weight: bold;
    color: #949494;
}

.banker-tips-container .tooltip-box {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 130%;
    left: 50%;
    transform: translateX(-50%);
    width: clamp(130px, 38vw, 167px);
    background: linear-gradient(to bottom, #2e2a24, #161512 116px) no-repeat #161512;
    border-radius: 8px;
    padding: 5px 0;
    box-shadow: 0px 5px 15px rgba(0,0,0,0.4);
    z-index: 9999;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.banker-tips-container .live-streaming:hover .tooltip-box {
    visibility: visible;
    opacity: 1;
}

.banker-tips-container .stream-link {
    display: flex;
    align-items: center;
    padding: 8px 10px;
    text-decoration: none;
    color: #949494;
    font-size: clamp(10px, 3vw, 12px);
    font-weight: bold;
    transition: background 0.2s;
}

.banker-tips-container .stream-link:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.banker-tips-container .stream-link img {
    width: clamp(35px, 10vw, 55px);
    height: auto;
    max-height: clamp(14px, 4vw, 22px);
    margin-right: clamp(5px, 3vw, 15px);
    object-fit: contain;
}

/* Charts Section */
.banker-tips-container .charts-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    padding: clamp(5px, 2vw, 10px) clamp(10px, 5vw, 20px) 0;
    margin-top: 0;
    box-sizing: border-box;
}

.banker-tips-container .charts-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: auto;
}

.banker-tips-container .charts-column:nth-child(2) {
    align-items: center;
    margin: 0 clamp(5px, 3vw, 20px);
}

/* Odds Section under charts */
.banker-tips-container .odds-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: clamp(5px, 2vw, 10px) clamp(10px, 5vw, 20px) clamp(8px, 2.5vw, 10px);
    margin-top: 5px;
    box-sizing: border-box;
}

.banker-tips-container .odds-column {
    flex: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background: #34312d99;
    border-radius: 8px;
    padding: clamp(4px, 1.5vw, 8px) clamp(8px, 3vw, 15px);
    min-height: auto;
}

.banker-tips-container .odds-column:nth-child(2) {
    margin: 0 clamp(8px, 4vw, 20px);
}

.banker-tips-container .odd-value {
    font-size: clamp(11px, 3.5vw, 16px);
    font-weight: 700;
    color: #bababa;
    text-align: right;
    margin-top: 0;
    opacity: 0;
    animation: fadeInCounter 0.5s ease-in-out forwards;
    animation-delay: 1.2s;
    order: 2;
}

.banker-tips-container .odd-label {
    font-size: clamp(12px, 3.2vw, 14px);
    color: #949494;
    text-align: left;
    margin-top: 0;
    font-weight: 600;
    opacity: 0;
    animation: fadeInCounter 0.5s ease-in-out forwards;
    animation-delay: 1.4s;
    order: 1;
}

/* Stadium */
.banker-tips-container .stadium-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(5px, 2.5vw, 10px);
    padding: clamp(6px, 2vw, 10px) clamp(10px, 5vw, 20px);
    background: rgba(52, 49, 45, 0.6);
    margin: clamp(10px, 4vw, 20px);
    border-radius: 8px;
}

.banker-tips-container .stadium-info i {
    color: #949494;
    font-size: clamp(12px, 3vw, 12px);
}

.banker-tips-container .stadium-name {
    color: #949494;
    font-size: clamp(14px, 3.2vw, 13px);
    font-weight: 500;
}

/* Bet Button */
.banker-tips-container .bet-button {
    background: rgba(98, 153, 36, .08);
    color: #629924;
    border: 1px solid rgba(98, 153, 36, .25);
    padding: clamp(8px, 2.5vw, 12px) clamp(12px, 4vw, 20px);
    width: calc(100% - clamp(16px, 8vw, 40px));
    margin: 0 clamp(8px, 4vw, 20px) clamp(10px, 4vw, 20px) clamp(8px, 4vw, 20px);
    border-radius: 8px;
    font-size: clamp(16px, 3.5vw, 16px);
    font-weight: 600;
    text-transform: uppercase;
    cursor: text;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(5px, 2.5vw, 10px);
    transition: none;
}

.banker-tips-container .bet-button:hover {
    background: rgba(98, 153, 36, 0.2);
    transform: none;
    box-shadow: none;
}

/* Chart Styles - izolate pentru Banker Tips */
.banker-tips-container {
    --banker-chart-size: clamp(70px, 25vw, 150px);
    --banker-font-size-counter: clamp(16px, 5vw, 24px);
    --banker-font-size-title: clamp(14px, 3.5vw, 18px);
    --winner-color: #629924;
    --draw-color: #bf811d;
    --loser-color: #cc3333;
}

.banker-tips-container .chart-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: var(--banker-chart-size);
    max-width: var(--banker-chart-size);
    margin-top: 0;
}

.banker-tips-container .percentage-chart {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    position: relative;
    min-height: calc(var(--banker-chart-size) * 0.7);
}

.banker-tips-container .percentage-chart-bg {
    fill: none;
    stroke: #34312da8;
    stroke-width: 2.1;
}

.banker-tips-container .percentage-chart-stroke {
    fill: none;
    stroke-width: 2.1;
    stroke-linecap: round;
    animation: drawChart 1.5s ease-in-out forwards;
}

@keyframes drawChart {
    from {
        stroke-dasharray: 0, 100;
    }
}

.banker-tips-container .percentage-chart-winner .percentage-chart-stroke {
    stroke: var(--winner-color);
}

.banker-tips-container .percentage-chart-draw .percentage-chart-stroke {
    stroke: var(--draw-color);
}

.banker-tips-container .percentage-chart-loser .percentage-chart-stroke {
    stroke: var(--loser-color);
}

.banker-tips-container .counter {
    position: absolute;
    left: 50%;
    top: 50%;
    font-size: var(--banker-font-size-counter);
    transform: translate(-50%, -50%);
    width: max-content;
    height: 1em;
    line-height: 1;
    animation: fadeInCounter 0.5s ease-in-out forwards;
    opacity: 0;
    animation-delay: 0.8s;
    color: #949494;
}

@keyframes fadeInCounter {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.banker-tips-container .chart-info {
    text-align: center;
    margin-top: clamp(5px, 2vw, 10px);
    width: 100%;
}

.banker-tips-container .chart-info h4 {
    margin: clamp(5px, 2vw, 10px) 0 0 0;
    color: #949494;
    font-size: var(--banker-font-size-title);
    font-weight: normal;
    white-space: nowrap;
    opacity: 0;
    animation: fadeInCounter 0.5s ease-in-out forwards;
    animation-delay: 1s;
}

/* Ajustări pentru ecrane foarte mici */
@media (max-width: 360px) {
    .banker-tips-container .charts-column:nth-child(2) {
        margin: 0 4px !important;
    }
    
    .banker-tips-container .odds-column:nth-child(2) {
        margin: 0 6px !important;
    }
    
    .banker-tips-container .team-name {
        font-size: 9px !important;
    }
    
    .banker-tips-container .odd-value {
        font-size: 10px !important;
    }
    
    .banker-tips-container .odd-label {
        font-size: 12px !important;
    }
}

/* Ajustări pentru ecrane foarte mari (4K) */
@media (min-width: 1920px) {
    .banker-tips-container > * {
        max-width: 650px !important;
    }
    
    .banker-tips-container {
        --banker-chart-size: 180px !important;
        --banker-font-size-counter: 28px !important;
        --banker-font-size-title: 20px !important;
    }
    
    .banker-tips-container .team-logo {
        width: 90px !important;
        height: 90px !important;
    }
    
    .banker-tips-container .tip-value {
        font-size: clamp(28px, 10vw, 48px);
    }
    
    .banker-tips-container .team-name {
        font-size: 16px !important;
    }
    
    .banker-tips-container .odd-value {
        font-size: 18px !important;
    }
    
    .banker-tips-container .odd-label {
        font-size: 16px !important;
    }
    
    .banker-tips-container .stadium-name {
        font-size: 15px !important;
    }
    
    .banker-tips-container .bet-button {
        font-size: 16px !important;
        padding: 14px 24px !important;
    }

=========================================
   WPR MENU - SEARCH BUTTON
========================================= */

#wprmenu_bar .menu_title {
    font-size: 18px;
    font-weight: bold;
    text-align: left;
}

#wprmenu_bar .menu_title a {
    display: block;
    position: relative;
    text-align: left;
    top: 0px;
    color: #bababa;
    width: 100px;
}

/* MOBILE / TABLET */
@media only screen and (max-width: 1000px) {

    #wprmenu_bar .menu_title {
        font-size: 18px;
        font-weight: bold;
        position: relative;
    }

    html body div.wprm-overlay {
        background: #fff;
    }

    #wprmenu_bar,
    #mg-wprm-wrap {
        display: block;
    }
}

@media only screen and (max-width: 768px){
    html body .wprmenu_bar div.wpr_search form button.wpr_submit{
        top: 32px;
    }
}
