
    :root{
  --bg:#ffffff;               /* White background */
  --text:#1a1a1a;             /* Dark clean text */
  --muted:#555;               /* Soft gray */
  --card-bg:#f5f7fa;          /* Light gray cards */
  --accent:#2563eb;           /* Soft blue */
  --border:#e5e7eb;           /* Light border */
  --gap:16px;
  font-family: Be Vietnam Pro, sans-serif;
}

body{
  background:var(--bg);
  color:var(--text);
  padding:20px;
  padding-top: 1px;
}

/* Header */
header{
  text-align:center;
  padding:5px 0;
  border-bottom:1px solid var(--border);
  margin-bottom:5px;
}
header .site-title{
  font-size:30px;
  font-weight:900;
  color:var(--text);
}


header .site-tagline{
  font-size:9px;
  color:#666;
  margin-top:5px;
  letter-spacing:1px;
}

/* Hero */
.hero{text-align:center;margin-bottom:25px;}
.hero h1{font-size:25px;margin-bottom:8px;color:var(--text);}
.hero p{color:#0B1220;margin-bottom:14px;}

.btn{
  background:var(--accent);
  padding:10px 20px;
  text-decoration:none;
  color:#fff;
  border-radius:6px;
  font-weight:600;
  transition:0.25s ease;
}
.btn:hover{opacity:0.9;}

/* Section Intro */
.section-intro p{color:var(--muted);}

/* Poster Grid */
.poster-grid{
  display:grid;
  gap:var(--gap);
  margin-top:15px;
  margin-bottom:20px;
}

/* Responsive */
@media (max-width:640px){
  .poster-grid{grid-template-columns:repeat(3,1fr);}
}
@media (min-width:641px) and (max-width:1024px){
  .poster-grid{grid-template-columns:repeat(4,1fr);}
}
@media (min-width:1025px){
  .poster-grid{grid-template-columns:repeat(6,1fr);}
}

/* Poster Card */
.poster{
  background:var(--card-bg);
  border-radius:10px;
  overflow:hidden;
  text-align:center;
  border:1px solid var(--border);
  transition:0.25s ease;
}
.poster:hover{
  transform:translateY(-6px);
  box-shadow:0 8px 18px rgba(0,0,0,0.1);
}
.poster img{
  width:100%;
  height:auto;
  object-fit:cover;
  display:block;
}

.poster-title{
  display:block;
  padding:10px 6px;
  font-size:14px;
  font-weight:600;
  color:var(--text);
  text-decoration:none;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.poster-title:hover{
  text-decoration:underline;
}

/* Table */
table{
  width:100%;
  border-collapse:collapse;
  margin-bottom:25px;
}
table th, table td{
  padding:12px;
  border:1px solid var(--border);
}
table th{
  background:#f1f3f5;
  text-align:left;
}
table td{
  text-align:left;
}
/* Section Headings */
h2, h3{
    background: #fff;
    color: #0B1220;
    border: 1px solid #ff007c;
    border-radius: 10px;
    padding: 10px;
    margin: 10px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
}

/* Footer */
footer{
  text-align:center;
  margin-top:25px;
  padding-top:10px;
  border-top:1px solid var(--border);
  font-size:14px;
  color:var(--muted);
}

/* Category wise */

.movie-box{
  background:#ffffff;
  border-radius:6px;
  padding:0;
  border:1px solid #eee;
  width:100%;
}

.movie-box h2{
  background:#ff007c;
  color:#fff;
  padding:12px 15px;
  font-size:18px;
  margin:0;
  border-radius:6px 6px 0 0;
}

.movie-list{
  list-style:none;
  margin:0;
  padding:0;
}

.movie-list li{
  border-bottom:1px solid #f1f1f1;
}

.movie-list li a{
  display:block;
  padding:12px 15px;
  color:#0070c9;
  text-decoration:none;
  font-size:16px;
}

.movie-list li a:hover{
  background:#f7f7f7;
  color:#ff007c;
}

a {
  color: #ff007c;
  font-weight: bold;
}


/* Join Btn */

.group-card {
        margin-bottom: 20px;
        position: relative;
        border: 2px solid transparent;
        border-radius: 5px;
        background: #1a1a1a; /* Black background */
        display: flex;
        align-items: center;
        padding: 7px;
        justify-content: space-between;
        overflow: hidden;
    }
    .telegram-card {
        animation: telegram-border-animation 1s infinite;
    }
    @keyframes telegram-border-animation {
        0% {
            border-color: transparent;
        }
        50% {
            border-color: #0088cc;
        }
        100% {
            border-color: transparent;
        }
    }
    .seoquake-nofollow {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
        font-weight: bold;
        text-decoration: none;
        padding: 5px 20px;
        border-radius: 2px;
        flex-shrink: 0;
        transition: all 0.3s ease-in-out;
        color: white !important;
    }
    .seoquake-nofollow i {
        margin-right: 5px;
    }
    .telegram-card .seoquake-nofollow {
        background: #ff007c;
    }
    .seoquake-nofollow:hover {
        transform: scale(1.05);
    }