

/* ✅ Result Heading */
.result-heading {
    text-align: center;
    margin: 0;           /* Remove top/bottom gap */
    padding: 0;
    background-color: #ffffff; /* Optional: keep white bg */
}

/* ✅ H1 inside heading */
.result-heading h1 {
    font-size: 20px;
    font-weight: bold;
    color: #DAA520;      /* Golden color */
    margin: 0;           /* Remove default h1 margin */
    padding: 0;
}

/* ✅ Domain link */
.result-heading a {
    display: block;
    font-size: 28px;
    font-weight: bold;
    color: #000;
    text-decoration: none;
    margin: 0;           /* Remove default gap */
    padding: 0;
}

/* Result Main Container */
.resultmain{
    text-align: center;
    margin: 6px auto;        /* ⬅️ reduced */
    padding: 4px 0;         /* ⬅️ reduced */
    min-height: auto;       /* ⬅️ fixed */
}

/* Time – subtle & clean */
.resultmaintime{
    color: #9fdfff;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
    min-height: 20px;
    margin: 0;              /* ⬅️ remove default */
}

/* Main Heading – premium focus */
.resultmaintoday{
    color: #FFD700;
    font-size: 22px;
    font-weight: 700;
    margin: 2px 0;          /* ⬅️ reduced */
}

/* Note – readable & calm */
.resultmainnote{
    color: #e0a84f;
    font-size: 16px;
    font-weight: 500;
    opacity: 0.9;
    margin: 2px 0;          /* ⬅️ reduced */
}

/* Flix (Game Name) */
.flix{
    font-size: 26px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    margin: 2px 0;          /* ⬅️ big fix */
    line-height: 1.1;       /* ⬅️ tight text */
}

/* Flix Circle */
.flix-circle{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 4px auto;       /* ⬅️ reduced */
    width: 70px;
    height: 70px;
    font-size: 18px;
    font-weight: bold;
    color: #000;
    text-transform: uppercase;
    background: radial-gradient(circle, #FFD700 10%, #DAA520 90%);
    border: 3px solid #FFD700;
    border-radius: 50%;
    box-shadow: 0 0 15px #FFD700;
    line-height: 1;
}
