body { font-family: 'Segoe UI', Arial, sans-serif; background: #fff; color: #222; margin: 0; }
header { background: #fff; color: #fff; padding: 0; }
.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    max-width: 1200px;
    margin: auto;
    padding: 12px 16px;
    flex-wrap: wrap;
}
.site-link { text-decoration: none; }
.site-logo { height: 200px; max-width: 95vw; }
.site-title {
    font-size: 1.7rem;
    font-weight: 700;
    color: #0a3d91;
    text-align: center;
    letter-spacing: 1px;
}
.header-alert {
    margin: 18px 0 8px 0;
    font-size: 1.2rem;
    color: #d97b1a;
    font-weight: 600;
    text-align: center;
}
.social-links {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}
.social-links a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
    font-size: 1rem;
    padding: 2px 6px;
    border-radius: 4px;
    transition: background 0.2s;
    flex-direction: column;
}
.social-links a:hover { background: #0056b3; }
.social-links img { width: 38px; height: 38px; margin-right: 0; }
main { max-width: 1200px; margin: auto; padding: 16px; }
section { margin-bottom: 32px; }
h1, h2, h4 { color: #0a3d91; margin-top: 0; }
.job-list, .link-list { list-style: none; padding: 0; }
.job-list li, .link-list li { margin-bottom: 10px; }
.see-more {
    display: inline-block;
    margin-top: 8px;
    margin-bottom: 8px;
    padding: 6px 18px;
    background: #0a3d91;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s;
}
.see-more:hover { background: #0056b3; }
footer {
    background: #f5f5f5;
    color: #222;
    padding: 24px 0;
    margin-top: 32px;
}
.see-more:focus-visible, .top-buttons button:focus-visible {
  outline: 2px solid #d97b1a;
  outline-offset: 2px;
}
.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 12px;
    justify-content: center;
}
.footer-links a {
    color: #0a3d91;
    text-decoration: none;
    font-size: 15px;
}
.footer-links a:hover { text-decoration: underline; }
.copyright { font-size: 14px; color: #555; text-align: center; }
@media (max-width: 900px) {
    .header-content, main { max-width: 100%; }
}
@media (max-width: 700px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
        padding: 12px 8px;
    }
    .site-logo { height: 38px; }
    .site-title { font-size: 1.2rem; }
    .social-links { margin-top: 8px; }
    main { padding: 8px; }
}
@media (max-width: 500px) {
    .header-content { padding: 8px 4px; }
    .site-logo { height: 32px; }
    .site-title { font-size: 1rem; }
    section { margin-bottom: 20px; }
    h1 { font-size: 1.3rem; }
    h2 { font-size: 1.1rem; }
    .see-more { padding: 5px 12px; font-size: 0.95rem; }
    .footer-links { gap: 8px; font-size: 13px; }
}
@keyframes pulse-glow {
  0%, 100% {
    background-color: transparent;
    box-shadow: none;
    color: #0a3d91;
  }
  50% {
    background-color: #f0a732;
    box-shadow: 0 0 8px 2px rgba(240, 167, 50, 0.7);
    color: #0a3d91;
  }
}

h2.flashing-title {
  animation: pulse-glow 2.5s ease-in-out infinite;
  padding: 6px 0;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}
.link-list h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: normal;
    color: inherit;
}
.link-list h3 a {
    font-size: 1rem;
    font-weight: normal;
    color: #0a3d91;
    text-decoration: underline;
}
.link-list h3 a:hover {
    color: #d97b1a;
}
.job-list h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: normal;
    color: inherit;
}
.job-list h3 a {
    font-size: 1.15rem;
    font-weight: normal;
    color: #0a3d91;
    text-decoration: underline;
}
.job-list h3 a:hover {
    color: #d97b1a;
}
.related-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 32px auto 0 auto;
    padding: 0 8px;
    width: 100%;
}
.related-title {
    text-align: center;
    color: #0a3d91;
    font-size: 1.15rem;
    margin-bottom: 18px;
}
.related-links-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}
.related-links h3 {
    margin: 0 0 12px 0;
    font-size: 1rem;
    font-weight: normal;
    text-align: center;
}
.related-links h3 a {
    color: #0a3d91;
    font-size: 1rem;
    text-decoration: underline;
    font-weight: normal;
    transition: color 0.2s;
    display: inline-block;
}
.related-links h3 a:hover {
    color: #d97b1a;
}
@media (max-width: 700px) {
    .related-links {
        margin: 24px auto 0 auto;
        padding: 0 4px;
    }
    .related-title {
        font-size: 1rem;
    }
    .related-links h3 a {
        font-size: 0.95rem;
    }
}
@media (max-width: 500px) {
    .related-links {
        margin: 16px auto 0 auto;
        padding: 0 2px;
    }
    .related-title {
        font-size: 0.95rem;
    }
    .related-links h3 {
        font-size: 0.95rem;
        margin-bottom: 10px;
    }
    .related-links h3 a {
        font-size: 0.92rem;
    }
}
.top-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin: 18px 0 8px 0;
    flex-wrap: wrap;
}
.top-buttons button {
    background: #30599a;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 10px 22px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(10,61,145,0.08);
}
.top-buttons button:hover {
    background: #d97b1a;
}
@media (max-width: 600px) {
    .top-buttons {
        gap: 8px;
        margin: 12px 0 6px 0;
    }
    .top-buttons button {
        padding: 8px 12px;
        font-size: 0.98rem;
    }
}
.pagination {
    margin-top: 20px;
    text-align: center;
}
.pagination button {
    margin: 0 5px;
    padding: 6px 12px;
    background: #007bff;
    color: #fff;
    border: none;
    cursor: pointer;
}
.pagination button.active {
    background: #0056b3;
}

.job-list li {
    margin-bottom: 28px;
    padding-bottom: 0;
    background: #fff;
    border-radius: 6px;
    box-sizing: border-box;
}
.job-list {
    border: none;
    border-top: 1.5px solid #e0e0e0;
    margin: 18px 0 0 0;
    width: 100%;
}


@media (max-width: 700px) {
    .job-list {
        max-width: 100%;
        padding: 6px;
    }
    .job-list li {
        margin-bottom: 22px;
        padding-bottom: 0;
    }
    .job-list {
        margin: 12px 0 0 0;
    }
}
@media (max-width: 500px) {
    .job-list {
        max-width: 100%;
        padding: 2px;
    }
    .job-list li {
        margin-bottom: 16px;
    }
    .job-list {
        margin: 8px 0 0 0;
    }
}
.job-list li {
    margin-bottom: 28px;
    padding-bottom: 18px;
    background: #fff;
    border-radius: 6px;
    box-sizing: border-box;
    border-bottom: 1.5px solid #3c83ed;
}

.job-list li:last-child {
    border-bottom: none;
}

@media (max-width: 700px) {
    .job-list li {
        margin-bottom: 22px;
        padding-bottom: 12px;
    }
}
@media (max-width: 500px) {
    .job-list li {
        margin-bottom: 16px;
        padding-bottom: 8px;
    }
}

@keyframes flash {
  0%, 50%, 100% { opacity: 1; }
  25%, 75% { opacity: 0; }
}
.customsub{ 
    font-size: 1rem;
    font-weight: 520;
    color: #B8860B;
}

@media (max-width: 600px) {
    .social-links {
        gap: 25px;
        margin-top: 12px;
        justify-content: center;
    }
    .social-links a {
        padding: 4px 0;
    }
    .social-links img {
        width: 56px;
        height: 56px;
        margin-right: 0;
    }
    .social-links span {
        font-size: 1rem;
        margin-top: 4px;
    }
    .header-content {
        flex-direction: column;
        align-items: center;
        padding: 12px 4px;
    }
    .top-buttons {
        gap: 20px;
        margin: 15px 0 6px 0;
        flex-wrap: wrap;
        justify-content: center;
    }
    .top-buttons button {
        padding: 10px 18px;
        font-size: 1rem;
    }
    .top-buttons-job {
        gap: 20px;
        margin: 15px 0 6px 0;
        flex-wrap: wrap;
        justify-content: center;
    }
    .top-buttons-job button {
        padding: 10px 18px;
        font-size: 1rem;
    }
}
    .job-list span {
    display: block;
    margin-top: 12px;
    margin-bottom: 8px;
    color: #ff0303;
    font-size: 1.1rem;
    font-weight: 500; 
animation: flash 3s infinite;}

.top-buttons-job {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin: 18px 0 8px 0;
    flex-wrap: wrap;
}
.top-buttons-job  button {
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  background-color: #e5f2f2;
  color: #0077cc; /* button text color */
  padding: 8px 16px;
  border: 2px solid #0077cc; /* border color */
  border-radius: 8px;
  transition: all 0.3s ease;
}
.top-buttons-job  button:hover {
  background-color: #0077cc; /* button fill on hover */
  color: #fff; /* text turns white */
}
@media (max-width: 600px) {
    .top-buttons-job  {
        gap: 5px;
        margin: 25px 0 6px 0;
    }
    .top-buttons-job  button {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
}
.join-channels {
  display: flex;
  flex-direction: column;   /* stack vertically */
  align-items: center;
  gap: 15px;
  margin: 30px auto;
  padding: 20px;
  border-radius: 15px;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  animation: fadeIn 1s ease-in-out;
  max-width: 280px;
}

.join-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  text-decoration: none;
  padding: 12px 22px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  color: white;
  transition: transform 0.3s ease;
  animation: pulse 2s infinite;   /* flashing effect */
}

.join-btn i {
  font-size: 10px;
}

.join-btn.telegram {
  background: linear-gradient(135deg, #0088cc, #00bfff);
}

.join-btn.whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
}

.join-btn:hover {
  transform: scale(1.08);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Flashing / pulsing effect */
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(0,0,0,0.2); }
  50% { box-shadow: 0 0 15px 5px rgba(0,0,0,0.15); }
  100% { box-shadow: 0 0 0 0 rgba(0,0,0,0.2); }
}
    #last-updated {
      font-size: 14px;
      color: #555;
      margin-top: 10px;
      font-style: italic;
    }
    @media screen and (max-width: 768px) {
  .header-content img {
    max-width: 100%;
  }
}
.job-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.job-list li {
  background: #ffffff;
  border: 1px solid #e2e2e2;
  border-radius: 8px;
  padding: 15px 20px;
  margin-bottom: 15px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.job-list li:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.job-list li h3 {
  font-size: 1.1rem;
  color: #0080ff;
  
  margin-bottom: 8px;
  line-height: 1.4;
}

.job-list li div {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 10px;
}

.job-list li p {
  font-size: 0.85rem;
  color: #888;
  font-style: italic;
  margin: 0;
}
.news-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.news-list li {
  background: #ffffff;
  border: 1px solid #e2e2e2;
  border-radius: 8px;
  padding: 15px 20px;
  margin-bottom: 15px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.news-list li:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.news-list li h3 {
  font-size: 1.1rem;
  color: #0080ff;
  
  margin-bottom: 8px;
  line-height: 1.4;
}

.news-list li div {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 10px;
}

.news-list li p {
  font-size: 0.85rem;
  color: #888;
  font-style: italic;
  margin: 0;
}
.finance-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.finance-list li {
  background: #ffffff;
  border: 1px solid #e2e2e2;
  border-radius: 8px;
  padding: 15px 20px;
  margin-bottom: 15px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.finance-list li:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.finance-list li h3 {
  font-size: 1.1rem;
  color: #0080ff;
  
  margin-bottom: 8px;
  line-height: 1.4;
}

.finance-list li div {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 10px;
}

.finance-list li p {
  font-size: 0.85rem;
  color: #888;
  font-style: italic;
  margin: 0;
}
.sport-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sport-list li {
  background: #ffffff;
  border: 1px solid #e2e2e2;
  border-radius: 8px;
  padding: 15px 20px;
  margin-bottom: 15px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sport-list li:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.sport-list li h3 {
  font-size: 1.1rem;
  color: #0080ff;
  
  margin-bottom: 8px;
  line-height: 1.4;
}

.sport-list li div {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 10px;
}

.sport-list li p {
  font-size: 0.85rem;
  color: #888;
  font-style: italic;
  margin: 0;
}
.tech-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tech-list li {
  background: #ffffff;
  border: 1px solid #e2e2e2;
  border-radius: 8px;
  padding: 15px 20px;
  margin-bottom: 15px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tech-list li:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.tech-list li h3 {
  font-size: 1.1rem;
  color: #0080ff;
  
  margin-bottom: 8px;
  line-height: 1.4;
}

.tech-list li div {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 10px;
}

.tech-list li p {
  font-size: 0.85rem;
  color: #888;
  font-style: italic;
  margin: 0;
}
.lottery-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lottery-list li {
  background: #ffffff;
  border: 1px solid #e2e2e2;
  border-radius: 8px;
  padding: 15px 20px;
  margin-bottom: 15px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lottery-list li:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.lottery-list li h3 {
  font-size: 1.1rem;
  color: #0080ff;
  
  margin-bottom: 8px;
  line-height: 1.4;
}

.lottery-list li div {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 10px;
}

.lottery-list li p {
  font-size: 0.85rem;
  color: #888;
  font-style: italic;
  margin: 0;
}
/* Basic Styling for the 'skclasslottery' class inside <main> */
.skclasslottery {
  padding: 20px;
  font-family: Arial, sans-serif;
}

.skclasslottery h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #333;
}

.skclasslottery h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #444;
}

.skclasslottery h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #555;
}

.skclasslottery h4 {
  font-size: 1.5rem;
  margin-top: 20px;
  color: #666;
}

.skclasslottery p {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 15px;
  color: #777;
}

/* Image Container */
.skclasslottery .image-container {
  text-align: center;
  margin-top: 20px;
}

.skclasslottery .responsive-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.skclasslottery .responsive-image:hover {
  transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
  .skclasslottery h1 {
    font-size: 2rem;
  }

  .skclasslottery h2 {
    font-size: 1.8rem;
  }

  .skclasslottery h3 {
    font-size: 1.5rem;
  }

  .skclasslottery h4 {
    font-size: 1.3rem;
  }

  .skclasslottery p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .skclasslottery h1 {
    font-size: 1.8rem;
  }

  .skclasslottery h2 {
    font-size: 1.5rem;
  }

  .skclasslottery h3 {
    font-size: 1.3rem;
  }

  .skclasslottery h4 {
    font-size: 1.1rem;
  }

  .skclasslottery p {
    font-size: 0.8rem;
  }
}
