@import url('https://fonts.googleapis.com/css?family=Google+Sans:400,500,700&display=swap');
html, body {
  overflow-x: hidden;
  max-width: 100vw;
  font-family: 'Google Sans', sans-serif;
}

body {
  font-family: 'Google Sans', sans-serif;
  background-color: #f8f9fc;
  color: #333;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4 {
  font-family: 'Google Sans', sans-serif;
}
header {
  background: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  padding: 10px 0;
}

.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo img {
  max-height: 50px;
  width: auto;
}

/* Header Navigation */
.nav-list {
  display: flex;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-list li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: #0a53be;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .nav {
    display: none;
    position: absolute;
    top: 60px;
    right: 15px;
    width: 200px;
    background-color: #fff;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    z-index: 999;
  }

  .nav.active {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    gap: 12px;
  }

  .nav-list li a {
    color: #333;
    font-size: 16px;
    text-decoration: none;
  }

  .menu-toggle {
    display: inline-block;
    font-size: 24px;
  }

  .menu-toggle.close {
    display: none;
  }
}


.hero {
  background: #f8f9fa;
  padding: 60px 20px;
  color: #333;
  text-align: center;
}

.hero::after {
  display: none;
}


.container {
  position: relative;
  z-index: 2;
}

.hero-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
}

.hero-text {
  flex: 1;
  max-width: 600px;
}

.hero h1 {
  font-size: 2rem;
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.countdown {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

#matchCountdown {
  font-weight: bold;
  font-size: 1.5rem;
  margin-top: 5px;
  color: #0055aa;
}

.hero-buttons .btn {
  display: inline-block;
  margin: 0 10px 10px 0;
  padding: 12px 24px;
  font-weight: 600;
  background: #0055aa;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
}

.hero-buttons .btn.btn-secondary {
  background: #0055aa;
}

.match-card {
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  max-width: 300px;       /* ✅ Required for centering */
  margin: 0 auto;         /* ✅ Required for centering */
}

.match-card h2 {
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.teams {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin-bottom: 10px;
}

.team {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.vs {
  font-size: 1.2rem;
  font-weight: bold;
  margin: 0 10px;
}

.match-time {
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.btn-small {
  font-size: 0.9rem;
  padding: 8px 16px;
  background: #0055aa;
  color: #fff; /* Make text white */
  text-decoration: none;
  border-radius: 5px;
  display: inline-block;
  font-weight: 500;
  transition: background 0.3s ease;
}

.btn-small:hover {
  background: #003f88;
  text-decoration: underline;
  color: #fff;
}

.ipl-match-grid {
  padding: 30px 15px;
}

.match-day-block {
  margin-bottom: 40px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 20px;
}

.match-date {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #0055aa;
}


.match-card:hover {
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.match-number {
  font-weight: 500;
  font-size: 0.95rem;
  color: #777;
}

.match-teams {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 15px 0;
}

.team {
  text-align: center;
}

.team img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  margin-bottom: 5px;
}

.vs {
  font-weight: bold;
  font-size: 1.2rem;
}

.match-info p {
  margin: 5px 0;
  font-size: 0.95rem;
  color: #333;
}

.result {
  color: #008000;
  font-weight: 600;
}

/* === PAGE HEADER === */
.page-header {
  text-align: center;
  padding: 40px 20px;
  background: #f8f9fa;
  border-bottom: 1px solid #ddd;
}

.page-header h1 {
  font-size: 2rem;
  font-weight: 700;
  color: #002b5b;
  margin-bottom: 10px;
}

.page-header p {
  font-size: 1rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
}


/* === FILTER BAR === */
.filter-bar {
  background: #ffffff;
  padding: 15px 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin: 30px auto;
  max-width: 960px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.filter-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.filter-controls label {
  font-weight: 600;
  color: #333;
}

.filter-controls select {
  padding: 8px 12px;
  font-size: 1rem;
  border-radius: 6px;
  border: 1px solid #ccc;
  min-width: 200px;
}


/* === MATCH GRID === */
.ipl-match-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 20px 15px;
}

/* === MATCH DAY BLOCK === */
.match-day-block {
  padding-bottom: 20px;
  border-bottom: 1px solid #eaeaea;
}

.match-date {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0055aa;
  margin-bottom: 20px;
}


/* === MATCH CARD === */


.match-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* === MATCH NUMBER === */
.match-top .match-number {
  font-size: 0.9rem;
  font-weight: 500;
  color: #777;
  margin-bottom: 10px;
}

/* === TEAM BLOCK === */
.match-teams {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 20px 0;
}

.team {
  text-align: center;
}

.team img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 6px;
}

.team span {
  display: block;
  font-weight: 600;
  font-size: 1rem;
  color: #222;
}

.vs {
  font-size: 1.2rem;
  font-weight: bold;
  color: #555;
}

/* === MATCH INFO === */
.match-info p {
  font-size: 0.95rem;
  color: #333;
  margin: 5px 0;
}

.result {
  font-weight: 600;
  color: green;
}

.result.upcoming {
  color: #ff8800;
}


/* === RESPONSIVE === */
@media (max-width: 768px) {
  .filter-controls {
    flex-direction: column;
    align-items: flex-start;
  }

  .match-teams {
    flex-direction: column;
    gap: 12px;
  }

  .team img {
    width: 50px;
    height: 50px;
  }

  .filter-bar {
    padding: 20px 15px;
  }

  .page-header h1 {
    font-size: 1.6rem;
  }
}

.points-table {
  margin: 30px auto;
  max-width: 960px;
  padding: 0 15px;
}

.points-table table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
}

.points-table thead {
  background-color: #0055aa;
  color: #fff;
}

.points-table th, .points-table td {
  padding: 12px 15px;
  text-align: center;
  font-size: 0.95rem;
  border-bottom: 1px solid #eee;
}

.points-table td img {
  width: 26px;
  height: 26px;
  vertical-align: middle;
  margin-right: 6px;
}

.points-table td:first-child {
  font-weight: bold;
}

.points-table tbody tr:hover {
  background-color: #f9f9f9;
}

@media (max-width: 768px) {
  .points-table table {
    font-size: 0.85rem;
  }

  .points-table td img {
    width: 20px;
    height: 20px;
  }
}

.team-header {
  display: flex;
  gap: 20px;
  align-items: center;
  margin: 40px 0 20px;
  flex-wrap: wrap;
}

.team-logo img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.team-info h1 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0055aa;
  margin-bottom: 10px;
}

.team-info p {
  font-size: 1rem;
  color: #444;
  max-width: 700px;
}

.team-details ul,
.team-schedule ul {
  list-style: disc inside;
  padding: 0;
  font-size: 1rem;
  margin-top: 10px;
}

.team-details li,
.team-schedule li {
  margin-bottom: 6px;
  color: #333;
}

.team-schedule h2,
.team-details h2 {
  font-size: 1.4rem;
  color: #002d5f;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .team-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .team-info h1 {
    font-size: 1.4rem;
  }
}

.teams-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  padding: 20px 15px;
  margin-top: 30px;
}

.team-card {
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 10px;
  text-align: center;
  padding: 20px 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.team-card img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 10px;
}

.team-card h2 {
  margin: 0;
  font-size: 1.2rem;
  color: #0055aa;
}

.team-card p {
  font-size: 0.95rem;
  color: #333;
}

/* Fix match preview layout and alignment */
.match-preview {
  padding: 40px 15px;
  text-align: center;
  background-color: #f8f9fc;
  max-width: 1200px;
  margin: 0 auto;
}
.match-preview h2 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  color: #222;
}

/* Responsive match grid layout */
.match-grid-preview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  justify-content: center;
  margin-bottom: 30px;
  padding: 0 10px;
}


.match-top {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 10px;
}

.match-teams {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.match-teams img {
  width: 24px;
  height: 24px;
  vertical-align: middle;
}

.match-time {
  font-size: 0.95rem;
  color: #444;
}

.vs {
  color: #888;
  font-weight: normal;
}

.see-more-btn {
  margin-top: 20px;
}

.btn-primary {
  background-color: #0055aa;
  color: #fff;
  padding: 10px 18px;
  border-radius: 5px;
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover {
  background-color: #003f88;
}


.site-footer {
  background: #f1f1f1;
  padding: 40px 20px;
  margin-top: 50px;
  font-size: 0.95rem;
  color: #333;
}

.site-footer .container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.footer-top img {
  margin-bottom: 10px;
}

.footer-top p {
  max-width: 600px;
  margin: 0 auto 20px;
  color: #555;
}

.footer-bottom {
  font-size: 0.85rem;
  color: #777;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
}

.venues-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
  margin: 30px auto;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  overflow: hidden;
  background-color: #fff;
}

.venues-table thead {
  background-color: #0a53be;
  color: #fff;
}

.venues-table th,
.venues-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #eee;
  text-align: left;
}

.venues-table tbody tr:hover {
  background-color: #f5faff;
}

.venues-table th:first-child,
.venues-table td:first-child {
  text-align: center;
  width: 40px;
}

.venues-table td img {
  height: 20px;
  margin-right: 8px;
  vertical-align: middle;
}

@media (max-width: 768px) {
  .venues-table {
    font-size: 14px;
  }

  .venues-table th,
  .venues-table td {
    padding: 10px 12px;
  }

  .container {
    padding: 15px;
  }
}

/* 404 Page Styling */
.page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  background-color: #f8f9fa;
  padding: 40px 20px;
  text-align: center;
}

.error-404 {
  max-width: 600px;
  width: 100%;
  background: #fff;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.error-404 h1 {
  font-size: 32px;
  color: #0a53be;
  margin-bottom: 15px;
}

.error-404 p {
  font-size: 18px;
  color: #555;
  margin-bottom: 30px;
}

.error-actions {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.back-home-btn,
.back-btn {
  display: inline-block;
  padding: 12px 22px;
  background-color: #0a53be;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
}

.back-home-btn:hover,
.back-btn:hover {
  background-color: #003e91;
}

/* General Page Styling */
.page {
  display: flex;
  justify-content: center;
  padding: 50px 20px;
  background-color: #f9f9f9;
  min-height: 80vh;
}

.pages {
  max-width: 800px;
  background-color: #fff;
  padding: 40px 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  font-family: 'Poppins', sans-serif;
}

.pages h2 {
  font-size: 28px;
  color: #0a53be;
  margin-bottom: 25px;
  text-align: center;
}

.pages p {
  font-size: 17px;
  color: #333;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: justify;
}

@media (max-width: 768px) {
  .pages {
    padding: 25px 20px;
  }

  .pages h2 {
    font-size: 24px;
  }

  .pages p {
    font-size: 16px;
  }
}

.hero-buttons .btn {
  display: inline-block;
  margin: 0 10px 10px 0;
  padding: 12px 24px;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 5px;
  text-decoration: none;
  color: #fff !important;
  background-color: #0055aa;
  transition: background 0.3s ease;
}

.hero-buttons .btn:hover {
  background-color: #003f88;
  text-decoration: underline;
}

.hero-buttons .btn.btn-secondary {
  background-color: #ff8800; /* Orange secondary style */
  color: #fff !important;
}

.hero-buttons .btn.btn-secondary:hover {
  background-color: #e67300; /* Darker on hover */
}

/* ==== FINAL BUTTON FIX ==== */
a.btn,
a.btn-small,
.btn.btn-small,
.hero-buttons .btn,
.hero-buttons .btn.btn-secondary {
  color: #ffffff !important;
  text-decoration: none !important;
}

a.btn:hover,
a.btn-small:hover,
.btn.btn-small:hover,
.hero-buttons .btn:hover,
.hero-buttons .btn.btn-secondary:hover {
  color: #ffffff !important;
  text-decoration: underline !important;
}

/* === ARTICLE PAGE === */
/* Full-width article layout */
.page.article-page {
  display: flex;
  justify-content: center;
  padding: 40px 20px;
  background-color: #f1f3f6;
  min-height: 100vh;
}

/* Main article box styling */
.article-box {
  width: 100%;
  max-width: 1200px;
  background: #fff;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Headings */
.article-box h2 {
  font-size: 1.8rem;
  color: #004aad;
  margin-bottom: 20px;
  margin-top: 40px;
}

.article-box h3 {
  font-size: 1.3rem;
  margin-top: 24px;
  color: #0055aa;
}

/* Paragraphs */
.article-box p {
  font-size: 1.05rem;
  margin-bottom: 18px;
  text-align: justify;
}

/* Tables */
.article-box table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.article-box th,
.article-box td {
  padding: 14px 16px;
  border: 1px solid #ddd;
  font-size: 1rem;
}

.article-box thead {
  background-color: #004aad;
  color: #fff;
  font-weight: 600;
  text-align: left;
}

/* === IPL HISTORY TABLE STYLING === */
.ipl-history-table {
  width: 100%;
  border-collapse: collapse;
  margin: 25px 0;
  font-size: 0.95rem;
  border: 1px solid #ddd;
  background-color: #fff;
}

.ipl-history-table thead {
  background-color: #0055aa;
  color: #fff;
}

.ipl-history-table th,
.ipl-history-table td {
  padding: 14px 16px;
  text-align: left;
  border: 1px solid #ddd;
}

.ipl-history-table tr:nth-child(even) {
  background-color: #f9f9f9;
}

.ipl-history-table th {
  font-weight: 600;
  font-size: 1rem;
}

.ipl-history-table td {
  color: #333;
  line-height: 1.6;
}

/* Responsive for small screens */
@media (max-width: 768px) {
  .ipl-history-table {
    font-size: 0.85rem;
  }

  .ipl-history-table th,
  .ipl-history-table td {
    padding: 10px 12px;
  }
}
.ipl-schedule-overview-table {
  width: 100%;
  border-collapse: collapse;
  margin: 25px 0;
  font-size: 0.95rem;
  background: #ffffff;
  border: 1px solid #ddd;
}

.ipl-schedule-overview-table thead {
  background-color: #0055aa;
  color: #fff;
}

.ipl-schedule-overview-table th,
.ipl-schedule-overview-table td {
  padding: 14px 16px;
  border: 1px solid #ddd;
  text-align: left;
  vertical-align: top;
}

.ipl-schedule-overview-table tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}

.ipl-schedule-overview-table td strong {
  color: #0055aa;
}

.ipl-format-table {
  width: 100%;
  border-collapse: collapse;
  margin: 25px 0;
  font-size: 0.95rem;
  background: #fff;
  border: 1px solid #ddd;
}

.ipl-format-table thead {
  background-color: #0055aa;
  color: #fff;
}

.ipl-format-table th,
.ipl-format-table td {
  padding: 14px 16px;
  border: 1px solid #ddd;
  text-align: left;
}

.ipl-format-table tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}
.ipl-group-table,
.ipl-team-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  background-color: #fff;
  border: 1px solid #ddd;
  font-size: 0.95rem;
}

.ipl-group-table th,
.ipl-group-table td,
.ipl-team-table th,
.ipl-team-table td {
  padding: 12px 16px;
  border: 1px solid #ddd;
  text-align: left;
}

.ipl-group-table thead,
.ipl-team-table thead {
  background-color: #0055aa;
  color: #fff;
}

.ipl-group-table tr:nth-child(even),
.ipl-team-table tr:nth-child(even) {
  background-color: #f9f9f9;
}

.ipl-venues {
  margin: 40px 0;
  padding: 0 15px;
}

.ipl-venues h2 {
  text-align: center;
  font-size: 2rem;
  color: #0055aa;
  margin-bottom: 20px;
}

.ipl-venues p {
  text-align: justify;
  font-size: 1rem;
  color: #333;
  max-width: 960px;
  margin: 0 auto 30px;
}

.venues-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  overflow: hidden;
}

.venues-table thead {
  background: #0055aa;
  color: #fff;
}

.venues-table th, .venues-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid #eee;
  font-size: 1rem;
}

.venues-table tbody tr:hover {
  background: #f9f9f9;
}

@media (max-width: 768px) {
  .venues-table th,
  .venues-table td {
    font-size: 0.9rem;
    padding: 10px 12px;
  }
}

.ipl-schedule-table {
  overflow-x: auto;
  margin-top: 20px;
}

.ipl-schedule-table table {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.ipl-schedule-table th,
.ipl-schedule-table td {
  padding: 12px 16px;
  border-bottom: 1px solid #eee;
  font-size: 0.95rem;
  text-align: center;
}

.ipl-schedule-table thead {
  background-color: #0055aa;
  color: #fff;
}

.ipl-schedule-table tbody tr:hover {
  background-color: #f9f9f9;
}

@media (max-width: 768px) {
  .ipl-schedule-table th,
  .ipl-schedule-table td {
    padding: 10px;
    font-size: 0.85rem;
  }
}

/* === ARTICLE STYLING === */
.article-faqs,
.article-conclusion {
  max-width: 960px;
  margin: 40px auto;
  padding: 20px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  font-family: 'Poppins', sans-serif;
}

.article-conclusion h2,
.article-faqs h2 {
  font-size: 28px;
  color: #0a53be;
  margin-bottom: 20px;
  text-align: center;
}

.article-conclusion p {
  font-size: 17px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 20px;
  text-align: justify;
}

/* === FAQ Section Styling === */
.article-faqs {
  margin-top: 50px;
}

.article-faqs h2 {
  font-size: 1.8rem;
  color: #004aad;
  margin-bottom: 25px;
  font-weight: 600;
}

/* Each FAQ block */
.article-faqs .faq {
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid #ddd;
}

/* FAQ Question */
.article-faqs .faq h3 {
  font-size: 1.15rem;
  color: #0055aa;
  margin-bottom: 8px;
  font-weight: 600;
}

/* FAQ Answer */
.article-faqs .faq p {
  font-size: 1.05rem;
  color: #333;
  line-height: 1.7;
  margin: 0;
  text-align: justify;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .article-faqs {
    padding: 0 10px;
  }

  .article-faqs h2 {
    font-size: 1.5rem;
  }

  .article-faqs .faq h3 {
    font-size: 1.05rem;
  }

  .article-faqs .faq p {
    font-size: 0.95rem;
  }
}

/* Global fix for all lists */
ul, ol {
  text-align: left;
  list-style-position: inside;
  padding-left: 20px;
  margin-left: 0;
}

li {
  text-align: left;
  margin-bottom: 10px;
  line-height: 1.6;
}



#backToTopBtn {
  position: fixed;
  bottom: 30px;
  right: 25px;
  display: none;
  background-color: #0055aa;
  color: #fff;
  border: none;
  padding: 10px 14px;
  border-radius: 50px;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 999;
  transition: all 0.3s ease;
}

#backToTopBtn:hover {
  background-color: #003f88;
}