/* Reset Default Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: #f1f3f4;
    color: #333;
}


.home-btn {
    background: linear-gradient(45deg, #4285F4, #34A853);
}

.chart-btn {
    background: linear-gradient(45deg, #EA4335, #FBBC05);
}

.btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
}

/* Header */
.header {
    text-align: center;
    padding: 30px 10px;
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.logo-title {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.logo {
    width: 120px; /* Increased */
    height: 120px; /* Increased */
    object-fit: contain;
}
.date-time {
    margin-top: 8px; /* Small gap from title */
    font-size: 18px;
    font-weight: 600;
    color: #ff5722; /* Vibrant orange */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4); /* Light glow */
    letter-spacing: 0.5px;
}


.header h1 {
    font-size: 40px; /* Increased font size */
    font-weight: 900; /* Bolder */
    line-height: 1.2;
    text-transform: uppercase; /* Capitalize all */
    letter-spacing: 1px;
}

/* Colored letters */
.header span.blue { color: #4285F4; }
.header span.red { color: #EA4335; }
.header span.yellow { color: #FBBC05; }
.header span.green { color: #34A853; }


/* Main Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 20px auto;
}

/* Card */
.card {
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.footer {
    background-color: #202124; /* Dark background */
    color: #e8eaed; /* Light text */
    text-align: center;
    padding: 20px 10px;
    font-size: 16px;
    font-weight: 500;
    border-top: 4px solid #4285F4; /* Google Blue Top Border */
}

/* Optional colored underline or text highlight */
.footer strong {
    color: #34A853; /* Google Green */
}

/* Responsive Footer Text */
@media (max-width: 768px) {
    .footer {
        font-size: 14px;
        padding: 15px 5px;
    }
}


/* Responsive Design */
@media screen and (max-width: 768px) {
    .top-buttons {
        flex-direction: column;
    }

    .btn {
        width: 80%;
        text-align: center;
    }

    .header h1 {
        font-size: 28px;
    }
}

/* Top Buttons */
.top-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px 10px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    flex-wrap: wrap; /* Added to wrap on mobile */
}

.btn {
    padding: 18px 40px; /* bigger padding */
    border-radius: 50px;
    font-size: 22px; /* bigger font */
    font-weight: bold;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    min-width: 220px; /* increased width on all devices */
    text-align: center; /* center text inside button */
}

.home-btn {
    background: linear-gradient(45deg, #4285F4, #34A853);
}

.chart-btn {
    background: linear-gradient(45deg, #EA4335, #FBBC05);
}

.btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
}

/* Responsive */
@media screen and (max-width: 768px) {
    .top-buttons {
        flex-direction: column;
        align-items: center; /* Center buttons in mobile */
    }

    .btn {
        width: 90%; /* Increase button width in mobile */
        margin-bottom: 15px;
    }
}

/* Set the background color for the entire site */
body {
    background-color: #ffffff; /* White background */
    font-family: Arial, sans-serif; /* Default font */
    margin: 0;
    padding: 0;
    color: #333; /* Default text color */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Marquee for live updates */
.marquee {
    background: linear-gradient(45deg, #ff6347, #ff7f50, #ff6347); /* Vibrant background */
    padding: 15px;
    overflow: hidden;
    white-space: nowrap;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
}

.marquee-secondary {
    background: linear-gradient(45deg, #6a0dad, #ff1493, #ff8c00); /* New vibrant background */
    padding: 15px;
    overflow: hidden;
    white-space: nowrap;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
}

.marquee-content {
    display: inline-block;
    padding-left: 100%;
    animation: scroll 30s linear infinite; /* Adjust 30s for normal speed */
    font-size: 20px;
    color: #fff;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Card Design for Gaming Zone */
.gaming-zone-card {
    background-color: #f1f1f1; /* Light grey background for card */
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.gaming-zone-card h2 {
    font-size: 32px;
    color: #333;
    font-weight: 700;
    margin-bottom: 20px;
}

.gaming-zone-card p {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.gaming-zone-card .btn-start {
    background-color: #EA4335; /* Red like the logo */
    color: #fff;
    padding: 12px 25px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.gaming-zone-card .btn-start:hover {
    background-color: #f44336; /* Darker red */
}

/* Features Section */
.gaming-features {
    margin-top: 40px;
    background-color: #ffffff; /* White background for features */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.gaming-features h3 {
    font-size: 26px;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.gaming-features ul {
    list-style-type: none;
    padding: 0;
}

.gaming-features ul li {
    font-size: 18px;
    color: #555;
    margin-bottom: 12px;
}

.gaming-features ul li strong {
    color: #EA4335;
}

/* General Styles for the Page */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4; /* Light background for a clean look */
    color: #333;
    margin: 0;
    padding: 0;
    text-align: center;
    font-size: 16px;
}

/* Result Container Styling */
.result-container {
    background: #333; /* Dark background for the container */
    color: #fff;
    border-radius: 12px;
    margin: 20px auto;
    width: 90%;
    max-width: 700px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4); /* Subtle shadow for depth */
    transition: transform 0.3s ease-in-out; /* Hover animation */
}

.result-container:hover {
    transform: scale(1.05); /* Slight scale-up on hover */
}

/* Market Name Styling */
.market-name {
    font-size: 28px;
    font-weight: bold;
    color: #ffcc00; /* Golden color to represent importance */
    text-transform: uppercase;
    margin-bottom: 15px;
}

/* Result Value Styling */
.result-value {
    font-size: 48px;
    font-weight: bold;
    color: #00e600; /* Green for positive result */
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.result-value:contains('Wait') {
    color: #ffcc00; /* Yellow for "Wait" */
}

/* "No Markets" message */
.no-markets {
    font-size: 20px;
    color: #ff0000; /* Red for error or warning */
    margin-top: 50px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .result-container {
        width: 95%;
        font-size: 1.2em;
        padding: 15px;
    }

    .market-name {
        font-size: 22px;
    }

    .result-value {
        font-size: 40px;
    }
}
:root {
  --google-blue: #4285F4;
  --google-red: #EA4335;
  --google-yellow: #FBBC05;
  --google-green: #34A853;
  --text-dark: #202124;
  --text-muted: #5F6368;
  --bg-light: #F8F9FA;
  --border-light: #E0E0E0;
  --white: #FFFFFF;
}

.notice-container {
    max-width: 720px;
    margin: 48px auto;
    padding: 32px;
    background-color: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    box-sizing: border-box;
}

.notice-header {
    text-align: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--bg-light);
}

.notice-title {
    font-size: 26px;
    color: var(--google-blue);
    font-weight: 700;
    margin: 0;
}

.notice-subtitle {
    font-size: 24px;
    color: #EA4335;
    font-weight: 600;
    text-align: center;
    margin: 16px 0 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.notice-number {
    background-color: var(--bg-light);
    
    font-size: 22px; /* Increased font size for desktop */
    color: var(--text-dark);
    font-weight: 600;
    border-radius: 10px;
    text-align: center;
    white-space: pre-line;
    word-break: break-word;
}

.no-data {
    font-size: 18px;
    color: var(--google-red);
    text-align: center;
}

/* Responsive Design */
@media (max-width: 600px) {
    .notice-container {
        padding: 20px;
    }

    .notice-title {
        font-size: 22px;
    }

    .notice-subtitle {
        font-size: 22px;
    }

    .notice-number {
        font-size: 28px; /* Increased font size for mobile */
        
    }
}

:root {
    --google-blue: #4285F4;
    --google-red: #EA4335;
    --google-yellow: #FBBC05;
    --google-green: #34A853;
    --text-dark: #202124;
    --text-muted: #5F6368;
    --bg-light: #F8F9FA;
    --border-light: #E0E0E0;
    --white: #FFFFFF;
    --contact-bg: #34A853; /* Telegram green */
    --contact-text: #FFFFFF;
  }
  
  .notice-container {
      max-width: 720px;
      margin: 48px auto;
      padding: 32px;
      background-color: var(--white);
      border: 1px solid var(--border-light);
      border-radius: 12px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
      font-family: 'Inter', sans-serif;
      line-height: 1.7;
      box-sizing: border-box;
  }
  
  .notice-header {
      text-align: center;
      margin-bottom: 24px;
      padding-bottom: 16px;
      border-bottom: 1px solid var(--bg-light);
  }
  
  .notice-title {
      font-size: 26px;
      color: var(--google-blue);
      font-weight: 700;
      margin: 0;
  }
  
  .notice-subtitle {
      font-size: 24px;
      color: #EA4335;
      font-weight: 600;
      text-align: center;
      margin: 16px 0 24px;
      text-transform: uppercase;
      letter-spacing: 1px;
  }
  
  .notice-number {
      background-color: var(--bg-light);
      font-size: 22px;
      color: var(--text-dark);
      font-weight: 600;
      border-radius: 10px;
      text-align: center;
      white-space: pre-line;
      word-break: break-word;
  }
  
  .no-data {
      font-size: 18px;
      color: var(--google-red);
      text-align: center;
  }
  
  /* Responsive Design */
  @media (max-width: 600px) {
      .notice-container {
          padding: 20px;
      }
  
      .notice-title {
          font-size: 22px;
      }
  
      .notice-subtitle {
          font-size: 22px;
      }
  
      .notice-number {
          font-size: 28px;
          
      }
  }
  
  /* Telegram Contact Section */
  .contact-container {
      background-color: var(--contact-bg);
      color: var(--contact-text);
      padding: 32px;
      border-radius: 10px;
      margin-top: 32px;
      text-align: center;
      font-family: 'Inter', sans-serif;
  }
  
  .contact-title {
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 16px;
  }
  
  .contact-description {
      font-size: 18px;
      margin-bottom: 24px;
  }
  
  .contact-button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 12px 24px;
      background-color: #0078D4; /* Telegram blue */
      color: var(--contact-text);
      font-weight: 600;
      font-size: 16px;
      border-radius: 8px;
      text-decoration: none;
      transition: background-color 0.3s ease;
  }
  
  .contact-button:hover {
      background-color: #005A8C; /* Darker blue on hover */
  }
  
  .contact-button img {
      width: 20px;
      height: 20px;
      margin-right: 8px;
  }

  :root {
    --google-blue: #4285F4;
    --google-red: #EA4335;
    --google-yellow: #FBBC05;
    --google-green: #34A853;
    --text-dark: #202124;
    --text-muted: #5F6368;
    --bg-light: #F8F9FA;
    --border-light: #E0E0E0;
    --white: #FFFFFF;
    --call-bg: #34A853; /* WhatsApp green */
    --call-text: #FFFFFF;
  }
  
  .ad-container {
      max-width: 720px;
      margin: 48px auto;
      padding: 32px;
      background-color: var(--white);
      border: 1px solid var(--border-light);
      border-radius: 12px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
      font-family: 'Inter', sans-serif;
      line-height: 1.7;
      box-sizing: border-box;
  }
  
  .ad-header {
      text-align: center;
      margin-bottom: 24px;
      padding-bottom: 16px;
      border-bottom: 2px solid var(--bg-light);
  }
  
  .ad-title {
      font-size: 28px;
      color: var(--google-blue);
      font-weight: 700;
      margin: 0;
  }
  
  .ad-body {
      margin: 20px 0;
  }
  
  .ad-body p {
      font-size: 18px;
      color: var(--google-yellow);
      font-weight: 600;
      text-align: center;
      margin: 10px 0;
  }
  
  .ad-timing {
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 24px;
      text-align: center;
  }
  
  .ad-timing span {
      display: block;
      margin: 8px 0;
      color: var(--text-dark);
  }
  
  .ad-rate {
      font-size: 20px;
      font-weight: 700;
      text-align: center;
      margin: 24px 0;
  }
  
  .ad-note {
      font-size: 18px;
      font-weight: 500;
      color: var(--google-red);
      text-align: center;
      margin-bottom: 24px;
  }
  
  .ad-button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 14px 32px;
      background-color: var(--call-bg);
      color: var(--call-text);
      font-weight: 600;
      font-size: 18px;
      border-radius: 8px;
      text-decoration: none;
      transition: background-color 0.3s ease;
      margin-top: 20px;
  }
  
  .ad-button:hover {
      background-color: #007A33; /* Darker green for hover */
  }
  
  .ad-button img {
      width: 20px;
      height: 20px;
      margin-right: 10px;
  }
  
  /* Responsive Design */
  @media (max-width: 600px) {
      .ad-container {
          padding: 20px;
      }
  
      .ad-title {
          font-size: 22px;
      }
  
      .ad-body p, .ad-timing, .ad-rate {
          font-size: 16px;
      }
  
      .ad-button {
          padding: 12px 24px;
          font-size: 16px;
      }
  }

  .market-grid {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 15px;
    display: grid;
    gap: 20px;
}

/* Default: full width for mobile */
.market-row-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
.market-row-1 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

/* For tablets and up: apply 2-card layout to market-row-2 */
@media (min-width: 600px) {
    .market-row-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.market-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 15px 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.2s ease;
}

.market-card-border {
    background: #ffffff;
    border-radius: 10px;
    padding: 15px 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.2s ease;
    border: 2px solid red;
    border-radius: 8px;
}

.market-card:hover {
    transform: translateY(-5px);
}

.market-name {
    background-color: #EA4335; /* Google Red */
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
    border-radius: 5px;
    padding: 8px 0;
    margin-bottom: 10px;
}

.market-time {
    font-size: 14px;
    color: #5f6368;
    margin-bottom: 10px;
}

.results {
    font-size: 16px;
    margin-bottom: 10px;
}

.results .old {
    color: #EA4335;
    font-weight: bold;
    margin-right: 10px;
}

.results .new {
    color: #0F9D58;
    font-weight: bold;
}

.result-image {
    margin: 5px 0;
}

.view-record {
    display: inline-block;
    background-color: #FBBC05;
    color: #000;
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.2s;
}

.view-record:hover {
    background-color: #f1b600;
}

<style>
/* Base styles */
body {
    font-family: 'Segoe UI', Roboto, Arial, sans-serif;
    background-color: #f7f7f7;
    margin: 0;
    padding: 20px;
}

/* Table container */
.table-wrapper {
    overflow-x: auto;
    margin-bottom: 30px;
}

/* Table styles */
table {
    width: 100%;
    border-collapse: collapse;
    background-color: #ffffff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

/* Header styles */
th {
    background-color: #4285F4;
    color: white;
    padding: 12px;
    border: 1px solid #ddd;
    text-align: left;
    white-space: nowrap;
}

/* Data cell styles */
td {
    padding: 12px;
    border: 1px solid #ddd;
    color: #333;
    vertical-align: top;
}

/* Result highlighting */
td strong {
    font-weight: 600;
}

td .previous-result {
    color: #DB4437;
}
td .today-result {
    color: #0F9D58;
}

/* View button */
a.view-button {
    display: inline-block;
    margin-top: 8px;
    padding: 8px 14px;
    background-color: #F4B400;
    color: white;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
}
a.view-button:hover {
    background-color: #e0a800;
}

/* Mobile responsive tweaks */
@media (max-width: 768px) {
    th, td {
        font-size: 14px;
        padding: 8px;
    }

    h3 {
        font-size: 16px;
    }
}
:root {
    --blue: #4285F4;
    --green: #34A853;
    --yellow: #FBBC05;
    --red: #EA4335;
}

/* FAQ Section Styles */
#faq-content {
    background-color: #f9f9f9;
    padding: 40px 0;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.faq-box {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.faq-box h3 {
    color: var(--blue);
    margin-bottom: 20px;
    font-size: 1.8em;
    font-weight: bold;
}

.faq-item {
    margin-bottom: 20px;
}

.faq-item h4 {
    color: var(--blue);
    font-size: 1.4em;
    font-weight: bold;
    margin-bottom: 10px;
}

.faq-item p {
    font-size: 1.1em;
    color: #555;
    line-height: 1.6;
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

footer p {
    font-size: 0.9em;
}

/* Media Queries for responsiveness */
@media (max-width: 768px) {
    .container {
        padding: 0 10px;
    }

    .faq-box h3 {
        font-size: 1.6em;
    }

    .faq-item h4 {
        font-size: 1.2em;
    }
}

.satta-king-info {
    background-color: #F1F3F4; /* Light gray background */
    color: #202124; /* Dark text for readability */
    text-align: center;
    padding: 30px 15px;
    margin-bottom: 20px; /* Space above footer */
    border-bottom: 4px solid #4285F4; /* Google Blue Border */
}

.satta-king-title h3 {
    font-size: 24px;
    font-weight: bold;
    color: #000000; /* Google Blue */
    margin-bottom: 10px;
}

.satta-king-details p {
    font-size: 16px;
    color: #202124;
    line-height: 1.5;
}

.satta-king-details p:first-child {
    margin-top: 15px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .satta-king-info {
        padding: 20px 10px;
    }

    .satta-king-title h3 {
        font-size: 20px;
    }

    .satta-king-details p {
        font-size: 14px;
    }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;      /* Position from the bottom of the screen */
    right: 80px;       /* Position from the right side of the screen */
    background-color: #25d366; /* WhatsApp Green */
    border-radius: 50%;  /* Circular button */
    padding: 10px;  /* Padding for the button */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);  /* Shadow for the floating effect */
    z-index: 1000;    /* Make sure the button is on top of other content */
    transition: all 0.3s ease-in-out;  /* Smooth transition for hover effect */
}

.whatsapp-float:hover {
    background-color: #128c7e;  /* Darker green when hovered */
    transform: scale(1.1);  /* Slightly enlarge the button on hover */
}

.whatsapp-icon {
    width: 60px;   /* Set the width of the WhatsApp icon */
    height: 60px;  /* Set the height of the WhatsApp icon */
    object-fit: contain; /* Ensure the icon fits perfectly */
    border-radius: 50%;  /* Keep it circular */
}

/* Refresh Button Styling - Now positioned on the left side */
.refresh-button {
    position: fixed;
    bottom: 20px;     /* Position from the bottom of the screen */
    left: 20px;       /* Position from the left side of the screen */
    background-color: #007bff; /* Blue color */
    color: white;
    border: none;
    border-radius: 25px;  /* Rounded corners */
    padding: 12px 20px;  /* Padding to make it more rectangular but with rounded corners */
    font-size: 18px;  /* Text size */
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    z-index: 1000;    /* On top of other elements */
    transition: all 0.3s ease-in-out;
}

.refresh-button:hover {
    background-color: #0056b3; /* Darker blue on hover */
    transform: scale(1.05); /* Slightly enlarge the button on hover */
}

.refresh-button:focus {
    outline: none; /* Remove focus outline */
}

.refresh-button span {
    margin-right: 8px;  /* Spacing between text and icon */
}

/* Responsive Styles for smaller screens */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 15px;  /* Reduce the space from the bottom for smaller screens */
        right: 15px;   /* Reduce the space from the right for smaller screens */
    }

    .whatsapp-icon {
        width: 50px;   /* Resize the icon */
        height: 50px;  /* Resize the icon */
    }

    .refresh-button {
        bottom: 15px;
        left: 15px;    /* Adjust position for smaller screens */
        font-size: 16px;  /* Slightly smaller text */
        padding: 10px 16px;
    }
}

.wait-border {
    border: 2px solid red;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 0 10px red; /* Glowing effect */
    transition: box-shadow 0.3s ease-in-out; /* Smooth transition on hover */
}

.wait-border:hover {
    box-shadow: 0 0 20px 4px red; /* Increase the glow effect on hover */
}

.marqueee {
    background: #4285f4; /* Vibrant background */
    padding: 15px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
}

.marquee-contentt {
    display: inline-block;
    font-size: 20px;
    color: #fff;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}