
/* =====================================
   NAVBAR
   ===================================== */
.navbar-custom {
  background-color: black;
  padding: 15px;
  text-align: center;
}

.navbar-custom .navbar-brand,
.navbar-custom .navbar-nav .nav-link {
  color: #ffffff;
  transition: color 0.3s;
  font-size: 16px;
}

.navbar-custom .navbar-toggler-icon {
  background-color: #ffffff;
}

.navbar-custom .navbar-nav .nav-link:hover {
  color: #ef562f;
}

/* =====================================
   SIDEBAR / CONTEXT BOXES
   ===================================== */
.sidebar,
.contextual-text {
  background-color: #f8f9fa;
  padding: 20px;
  height: 100%;
}

/* =====================================
   TABLES
   ===================================== */
.custom-table {
  width: 100%;
  margin-bottom: 20px;
  margin-top:10px;
  border: 1px solid #dee2e6;
  border-collapse: collapse;
  border-radius: 5px;
  overflow: hidden;
}

.custom-table th,
.custom-table td {
  border: 1px solid #dee2e6;
  padding: 12px;
  text-align: center;
}

.custom-table th {
  background-color: #454545;
  color:white;
}

.custom-table tbody tr {
  background-color: #f2f2f2;
}

/* =====================================
   HEADERS
   ===================================== */
h1 {
  font-size: 30px;
}

h2 {
  font-size: 26px;
}

/* =====================================
   BUTTONS
   ===================================== */
.btn-primary {
  background-color: #000000;
  color: #ffffff;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #333333;
}

/* =====================================
   GOALTV MATCH LIST (Homepage)
   ===================================== */
.goaltv-container {
    width: 100%;
    max-width: 900px;
    margin: 40px auto;
}

.goaltv-title {
    text-align: center;
    font-weight: 700;
    margin-bottom: 25px;
    font-size: 26px;
    color: #222;
}

/* Box wrapper */
.goaltv-box {
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 5px 22px rgba(0,0,0,0.08);
    border: 1px solid #e7e7e7;
    overflow: hidden;
}

/* Each match row */
.goaltv-row {
    display: flex;
    align-items: center;
    padding: 14px 18px;
    border-bottom: 1px solid #f0f0f0;
    text-decoration: none;
    color: inherit;
    transition: background 0.15s;
}

.goaltv-row:last-child {
    border-bottom: none;
}

.goaltv-row:hover {
    background: #fafafa;
}

/* Time */
.goaltv-time {
    width: 70px;
    font-weight: 700;
    color: #1a73e8;
    font-size: 15px;
}

/* Team logos */
.goaltv-logo img {
    width: 38px;
    height: 38px;
    border-radius: 6px;
    margin-right: 10px;
    object-fit: cover;
}

/* Match info */
.goaltv-info {
    flex: 1;
}

.goaltv-match {
    font-weight: 600;
    font-size: 16px;
    color: #222;
}

.goaltv-league {
    font-size: 13px;
    color: #777;
    margin-top: 3px;
}

/* Arrow */
.goaltv-arrow {
    width: 25px;
    text-align: right;
    color: #bbb;
}

.goaltv-arrow i {
    font-size: 14px;
}

/* General page background */
body {
    background: #f3f3f3;
}

/* =====================================
   GOALTV MATCH PAGE (match.php)
   ===================================== */
.match-wrapper {
    max-width: 800px;
    margin: 60px auto;
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 14px;
    box-shadow: 0 5px 22px rgba(0,0,0,0.08);
    text-align: center;
}

.match-title {
    font-size: 28px;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
}

.match-time {
    font-size: 18px;
    color: #1a73e8;
    font-weight: 600;
    margin-bottom: 30px;
}

/* =====================================
   BLACK FAKE VIDEO PLAYER
   ===================================== */
.fake-player-box {
    width: 100%;
    height: 350px;
    background: #000000; /* BLACK */
    border-radius: 14px;
    box-shadow:
        inset 0 0 25px rgba(255,255,255,0.05),
        0 6px 18px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.2s;
}

/* Hover effect */
.fake-player-box:hover {
    transform: scale(1.015);
    box-shadow:
        inset 0 0 35px rgba(255,255,255,0.08),
        0 8px 20px rgba(0,0,0,0.4);
}

/* Play icon */
.fake-player-box svg {
    width: 90px;
    height: 90px;
    fill: #ffffff; /* WHITE */
    transition: 0.2s;
}

.fake-player-box:hover svg {
    fill: #1a73e8; /* Blue hover */
}

/* Back button */
.match-back {
    display: inline-block;
    margin-top: 30px;
    font-size: 16px;
    font-weight: 600;
    color: #1a73e8;
    text-decoration: none;
    transition: color 0.2s;
}

.match-back:hover {
    color: #0c5fcc;
    text-decoration: underline;
}

/* Mobile responsiveness */
@media (max-width: 600px) {
    .match-wrapper {
        padding: 25px 20px;
    }

    .fake-player-box {
        height: 240px;
    }

    .match-title {
        font-size: 22px;
    }
}

/* Header Ad Container */
.header-ad {
    text-align: center;
    margin: 10px 0;
}

/* Desktop banner default */
.ad-desktop {
    width: 728px;
    height: 90px;
}

/* Mobile banner hidden by default */
.ad-mobile {
    display: none;
    width: 300px;
    height: 50px;
}

/* Mobile View */
@media (max-width: 768px) {
    .ad-desktop {
        display: none;
    }
    .ad-mobile {
        display: inline-block;
    }
}

/* ==============================
   TELEGRAM + WHATSAPP CTA
   ============================== */
.social-cta {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 15px auto 25px;
  padding: 0 10px;
  max-width: 520px;
}

.social-cta .cta-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
  font-weight: 600;
  padding: 14px 0;
  border-radius: 50px;
  text-decoration: none;
  font-size: 15px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
  transition: all 0.25s ease;
}

/* Telegram */
.social-cta .telegram {
  background: linear-gradient(135deg, #229ED9, #1c8ac9);
}

.social-cta .telegram:hover {
  background: linear-gradient(135deg, #1c8ac9, #167ab3);
  transform: translateY(-2px);
}

/* WhatsApp */
.social-cta .whatsapp {
  background: linear-gradient(135deg, #25D366, #1ebe5d);
}

.social-cta .whatsapp:hover {
  background: linear-gradient(135deg, #1ebe5d, #128C7E);
  transform: translateY(-2px);
}

.social-cta i {
  font-size: 18px;
}

/* Mobile – yenə yan-yana qalır */
@media (max-width: 576px) {
  .social-cta {
    gap: 8px;
  }

  .social-cta .cta-btn {
    font-size: 14px;
    padding: 13px 0;
  }
}
