  

.site-header{
    background:#1e2a40;
    border-bottom: 4px solid #ffd000;
    padding:10px 0;
    font-family: Arial, sans-serif;
}

.top-navigation{
    position:relative;
    display:flex;
    justify-content:space-between;
    align-items:center;
    width:100%;
}

/* buttons */
.top-navigation a{
    background:#ffd000;
    color:#000;
    text-decoration:none;
    font-size:12px;
    font-weight:700;
    padding:4px 8px;
    border-radius:3px;
    border:1px solid #000;
}

/* center do links ko beech mein lao */
.top-navigation a:nth-child(2){
    position:absolute;
    left:40%;
    transform:translateX(-50%);
}

.top-navigation a:nth-child(3){
    position:absolute;
    left:60%;
    transform:translateX(-50%);
}

/* hover */
.top-navigation a:hover{
    background:#000;
    color:#ffd000;
}

/* Logo Center */
.site-logo{
    text-align:center;
    margin:10px 0;
}

.site-logo img{
    max-width:240px;
}

/* Info Text (No Marquee) */
.info-ticker{
    background:#ffd000;
    color:#000;
    font-weight:bold;
    font-size: 12;
    padding:8px;
    text-align:center;
}

.info-ticker p{
    margin:0;
}


.page-heading{
    background: linear-gradient(90deg,#ffd000,#ffb700);
    padding:15px 10px;
    text-align:center;
    border-bottom:3px solid #000;
}

.page-heading h1{
    font-size:14px;
    color:#000;
    font-weight:800;
    margin:0;
    text-transform:uppercase;
    letter-spacing:1px;
    font-family: Arial, Helvetica, sans-serif;
}

/* Refresh Button Style */
#refresh-btn {
  position: fixed;  /* Fixing the position */
  bottom: 20px;  /* 20px from the bottom */
  left: 20px;    /* 20px from the left */
  background-color: #A61111;  /* Deep Red background */
  color: #fff;
  font-size: 20px;
  padding: 12px 18px;
  border-radius: 50%;  /* Circular button */
  border: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;  /* Smooth transition for hover */
}

#refresh-btn:hover {
  background-color: #FF6347;  /* Lighter Red when hovered */
  transform: scale(1.1);      /* Slightly enlarge when hovered */
}
.telegram-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: #0088cc;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 400;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 136, 204, 0.4);
}
/* Floating position */
.telegram-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9999;
}
.telegram-btn:hover {
    background: #0077b5;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0, 136, 204, 0.6);
}

.telegram-btn i {
    font-size: 18px;
}

/* ===== Reset & Base Style ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #f4f6f9;
}

/* ===== Top Navigation ===== */
.gr-top-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    background: #111827;
    padding: 10px 5px;
    flex-wrap: wrap;
}

.gr-top-nav a {
    text-decoration: none;
}

.gr-top-nav p {
    color: #fff;
    padding: 6px 14px;
    background: #1f2937;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
}

.gr-top-nav p:hover {
    background: #2563eb;
    transform: translateY(-2px);
}

/* ===== Logo Section ===== */
.gr-logo {
    text-align: center;
    padding: 15px 0;
    background: #ffffff;
}

.gr-logo img {
    max-width: 100%;
    height: auto;
}

/* ===== Marquee Section ===== */
.gr-marquee {
    display: block;
    background:#1e2a40;
    color: #fff;
    padding: 10px 0;
    font-size: 14px;
    font-weight: 500;
}

/* ===== Heading Section ===== */
.gr-seventh {
    text-align: center;
    padding: 12px 10px;
    background: #ffffff;
    border-bottom: 2px solid #2563eb;
}

.gr-seventh h1 {
    font-size: 14px !important;
    color: #111827;
    font-weight: 600;
    line-height: 1.4;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .gr-top-nav {
        gap: 8px;
    }

    .gr-top-nav p {
        font-size: 13px;
        padding: 5px 10px;
    }

    .gr-marquee {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .gr-top-nav {
        flex-direction: column;
        align-items: center;
    }

    .gr-top-nav p {
        width: 100%;
        text-align: center;
    }
}
/* MARQUEE BAR */
.gr-marquee {
    background: linear-gradient(90deg, #000000, #2b0000);
    color: #fff;
    padding: 8px 0;
    font-size: 13px;
    font-weight: 600;
    border-top: 2px solid #b30000;
    border-bottom: 2px solid #b30000;
}

.gr-marquee span {
    padding-left: 100%;
}

/* HEADING SECTION */
.gr-seventh {
    background: #fff8f8;
    padding: 12px 8px;
    text-align: center;
    border-bottom: 2px solid #b30000;
}

.gr-seventh h1 {
    font-size: 14px;
    font-weight: 700;
    color: #8b0000;
    line-height: 1.5;
}

/* MOBILE OPTIMIZATION */
@media (max-width: 768px) {
    .gr-marquee {
        font-size: 12px;
        padding: 6px 0;
    }

    .gr-seventh h1 {
        font-size: 13px;
    }
}


/* Mobile Responsive */
@media (max-width:600px){
    .update-bar{
        flex-direction:column;
        gap:8px;
        text-align:center;
    }
}
.info-section {
  max-width: 900px;
  margin: 20px auto;
  font-family: Arial, sans-serif;
  color: #1f2937;
  line-height: 1.6;
}

.info-block {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
}

.info-block h2 {
  color: #0f172a;
  font-size: 18px;
  margin-bottom: 10px;
}

.info-block h3 {
  color: #334155;
  font-size: 16px;
  margin-top: 15px;
  margin-bottom: 8px;
}
/* Record Section Wrapper - Full Width */
.record-section{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
    justify-content:space-between;
    width:100%;
    margin:20px 0;
    padding:0 10px; /* padding for small screens */
    box-sizing:border-box;
}

/* Each Record Block */
.record-block{
    background:#222;
    border:2px solid #ffd000;
    border-radius:8px;
    padding:15px;
    flex:1; /* cards expand evenly */
    min-width:260px; /* prevent too small on mobile */
    max-width:32%; /* ensures 3 cards fit in a row on large screens */
    box-shadow:0 4px 8px rgba(0,0,0,0.3);
    transition:0.3s;
}

/* Hover effect for block */
.record-block:hover{
    transform:translateY(-5px);
    box-shadow:0 8px 15px rgba(0,0,0,0.5);
}

/* Record Block Title */
.record-block h2{
    color:#ffd000;
    font-size:18px;
    font-weight:800;
    text-align:center;
    margin-bottom:12px;
}

/* List inside Record Block */
.record-list{
    list-style:none;
    padding:0;
    margin:0;
}

.record-list li{
    margin:8px 0;
}

.record-list li a{
    display:block;
    background:#ffd000;
    color:#000;
    text-decoration:none;
    padding:6px 10px;
    border-radius:4px;
    font-weight:700;
    font-size:14px;
    text-align:center;
    transition:0.3s;
}

.record-list li a:hover{
    background:#000;
    color:#ffd000;
}

/* Responsive Design for Mobile */
@media (max-width:800px){
    .record-section{
        flex-direction:column;
        align-items:center;
        gap:15px;
        padding:0 5px;
    }
    .record-block{
        max-width:100%;
        min-width:100%;
    }
}

.site-disclaimer {
  max-width: 900px;
  margin: 20px auto;
  background: #fff7ed;
  border: 1px solid #fcd34d;
  border-radius: 8px;
  padding: 15px 20px;
  color: #78350f;
  font-size: 14px;
  line-height: 1.6;
}

.site-disclaimer p {
  margin-bottom: 12px;
}
.site-footer {
    background: #0f172a;
    color: #f1f5f9;
    padding: 25px 20px;
    font-family: Arial, sans-serif;
}

.footer-top {
    text-align: center;
    margin-bottom: 15px;
}

.footer-telegram-btn {
    background: #38bdf8;
    color: #0f172a;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
}

.footer-telegram-btn i {
    margin-right: 8px;
}

.footer-telegram-btn:hover {
    background: #0ea5e9;
    color: #ffffff;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links li a {
    color: #cbd5f5;
    text-decoration: none;
    font-size: 14px;
}

.footer-links li a:hover {
    color: #38bdf8;
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    font-size: 13px;
    color: #94a3b8;
    border-top: 1px solid #334155;
    padding-top: 10px;
}
/* By default hide on desktop */
.telegram-btn {
    display: none;
}

/* Show on mobile devices (screen width <= 768px) */
@media (max-width: 768px) {
    .telegram-btn {
        display: inline-block; /* ya block, depending on layout */
    }
}
.result-heading {
    background: linear-gradient(135deg, #1e2a40, #000);
    text-align: center;
    padding: 12px 10px;
    border-bottom: 3px solid #ffd000;
    font-family: Arial, sans-serif;
}

/* main title */
.result-heading a {
    color: #ffd000;
    font-size: 22px;
    font-weight: 900;
    text-decoration: none;
    letter-spacing: 1px;
    display: block;
    text-shadow: 0 0 8px rgba(255, 208, 0, 0.7);
}

/* tagline */
.result-heading p {
    margin-top: 5px;
    color: #ffffff;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 1px;
}

/* hover effect */
.result-heading a:hover {
    color: #fff;
    text-shadow: 0 0 10px #ffd000, 0 0 20px #ffd000;
}
  .head {
    background: linear-gradient(135deg, #000, #1e2a40);
    padding: 12px 10px;
    text-align: center;
    border-bottom: 3px solid #ffd000;
    font-family: Arial, sans-serif;
}

/* h1 reset */
.head h1 {
    margin: 0;
}

/* main link button */
.todayesult {
    display: inline-block;
    background: #ffd000;
    color: #000;
    font-size: 20px;
    font-weight: 900;
    padding: 6px 15px;
    border-radius: 6px;
    text-decoration: none;
    border: 2px solid #000;
    letter-spacing: 1px;
    transition: 0.3s;
}

/* hover effect */
.todayesult:hover {
    background: #000;
    color: #ffd000;
    border: 2px solid #ffd000;
    box-shadow: 0 0 10px #ffd000, 0 0 20px #ffd000;
} 
/* outer heading box */
.list_outer_div {
    background: linear-gradient(135deg, #1e2a40, #000);
    padding: 10px;
    text-align: center;
    border-bottom: 3px solid #ffd000;
}

/* heading */
.list_main_heading {
    color: #ffd000;
    font-size: 18px;
    margin: 0;
    font-weight: 900;
    letter-spacing: 1px;
    text-shadow: 0 0 8px rgba(255, 208, 0, 0.7);
}

/* container spacing */
.list_main_div2 {
    margin-bottom: 8px;
}

/* link remove underline */
.list_main_div2 a {
    text-decoration: none;
}

/* main buttons */
.points2 {
    background: #1e2a40;
    color: #00ffff;
    padding: 10px;
    text-align: center;
    font-size: 13px;
    font-weight: bold;
    border-radius: 6px;
    border-left: 4px solid #ffd000;
    transition: 0.3s;
    box-shadow: 0 3px 8px rgba(0,0,0,0.3);
}

/* hover effect */
.points2:hover {
    background: #000;
    color: #ffd000;
    border-left: 4px solid #00ffff;
    transform: translateX(5px);
    box-shadow: 0 0 10px #ffd000;
}
/* Outer heading for each year */
.list_outer_div {
    background: linear-gradient(135deg, #0b1a2f, #001f3f);
    padding: 12px 10px;
    margin: 15px 0 8px 0;
    border-radius: 6px;
    text-align: center;
    border-left: 5px solid #ffd000;
}

/* Year heading */
.list_main_heading {
    color: #ffd000;
    font-size: 20px;
    font-weight: 900;
    text-shadow: 0 0 8px #ffd000;
    margin: 0;
}

/* Container for links */
.list_main_div {
    margin-bottom: 6px;
}

/* Link styling */
.list_main_div a {
    text-decoration: none;
    display: block;
}

/* Card style for each link */
.points {
    background: #1e2a40;
    color: #00ffff;
    font-weight: bold;
    font-size: 14px;
    padding: 8px 10px;
    border-radius: 6px;
    border-left: 4px solid #ffd000;
    transition: all 0.3s ease;
    box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}

/* Hover effect for each card */
.points:hover {
    background: #ffd000;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 208, 0, 0.5);
}

/* Optional: responsive text */
@media (max-width: 768px) {
    .points {
        font-size: 13px;
        padding: 6px 8px;
    }
    .list_main_heading {
        font-size: 18px;
    }
}