/* Solarized Light 

For use with Jekyll and Pygments

http://ethanschoonover.com/solarized

SOLARIZED HEX      ROLE
--------- -------- ------------------------------------------
base01    #586e75  body text / default code / primary content
base1     #93a1a1  comments / secondary content
base3     #fdf6e3  background
orange    #cb4b16  constants
red       #dc322f  regex, special keywords
blue      #268bd2  reserved keywords
cyan      #2aa198  strings, numbers
green     #859900  operators, other keywords
*/
.highlight {
  background-color: #fdf6e3;
  color: #586e75;
}

.highlight .c {
  color: #93a1a1;
} /* Comment */
.highlight .err {
  color: #586e75;
} /* Error */
.highlight .g {
  color: #586e75;
} /* Generic */
.highlight .k {
  color: #859900;
} /* Keyword */
.highlight .l {
  color: #586e75;
} /* Literal */
.highlight .n {
  color: #586e75;
} /* Name */
.highlight .o {
  color: #859900;
} /* Operator */
.highlight .x {
  color: #cb4b16;
} /* Other */
.highlight .p {
  color: #586e75;
} /* Punctuation */
.highlight .cm {
  color: #93a1a1;
} /* Comment.Multiline */
.highlight .cp {
  color: #859900;
} /* Comment.Preproc */
.highlight .c1 {
  color: #93a1a1;
} /* Comment.Single */
.highlight .cs {
  color: #859900;
} /* Comment.Special */
.highlight .gd {
  color: #2aa198;
} /* Generic.Deleted */
.highlight .ge {
  color: #586e75;
  font-style: italic;
} /* Generic.Emph */
.highlight .gr {
  color: #dc322f;
} /* Generic.Error */
.highlight .gh {
  color: #cb4b16;
} /* Generic.Heading */
.highlight .gi {
  color: #859900;
} /* Generic.Inserted */
.highlight .go {
  color: #586e75;
} /* Generic.Output */
.highlight .gp {
  color: #586e75;
} /* Generic.Prompt */
.highlight .gs {
  color: #586e75;
  font-weight: bold;
} /* Generic.Strong */
.highlight .gu {
  color: #cb4b16;
} /* Generic.Subheading */
.highlight .gt {
  color: #586e75;
} /* Generic.Traceback */
.highlight .kc {
  color: #cb4b16;
} /* Keyword.Constant */
.highlight .kd {
  color: #268bd2;
} /* Keyword.Declaration */
.highlight .kn {
  color: #859900;
} /* Keyword.Namespace */
.highlight .kp {
  color: #859900;
} /* Keyword.Pseudo */
.highlight .kr {
  color: #268bd2;
} /* Keyword.Reserved */
.highlight .kt {
  color: #dc322f;
} /* Keyword.Type */
.highlight .ld {
  color: #586e75;
} /* Literal.Date */
.highlight .m {
  color: #2aa198;
} /* Literal.Number */
.highlight .s {
  color: #2aa198;
} /* Literal.String */
.highlight .na {
  color: #586e75;
} /* Name.Attribute */
.highlight .nb {
  color: #B58900;
} /* Name.Builtin */
.highlight .nc {
  color: #268bd2;
} /* Name.Class */
.highlight .no {
  color: #cb4b16;
} /* Name.Constant */
.highlight .nd {
  color: #268bd2;
} /* Name.Decorator */
.highlight .ni {
  color: #cb4b16;
} /* Name.Entity */
.highlight .ne {
  color: #cb4b16;
} /* Name.Exception */
.highlight .nf {
  color: #268bd2;
} /* Name.Function */
.highlight .nl {
  color: #586e75;
} /* Name.Label */
.highlight .nn {
  color: #586e75;
} /* Name.Namespace */
.highlight .nx {
  color: #586e75;
} /* Name.Other */
.highlight .py {
  color: #586e75;
} /* Name.Property */
.highlight .nt {
  color: #268bd2;
} /* Name.Tag */
.highlight .nv {
  color: #268bd2;
} /* Name.Variable */
.highlight .ow {
  color: #859900;
} /* Operator.Word */
.highlight .w {
  color: #586e75;
} /* Text.Whitespace */
.highlight .mf {
  color: #2aa198;
} /* Literal.Number.Float */
.highlight .mh {
  color: #2aa198;
} /* Literal.Number.Hex */
.highlight .mi {
  color: #2aa198;
} /* Literal.Number.Integer */
.highlight .mo {
  color: #2aa198;
} /* Literal.Number.Oct */
.highlight .sb {
  color: #93a1a1;
} /* Literal.String.Backtick */
.highlight .sc {
  color: #2aa198;
} /* Literal.String.Char */
.highlight .sd {
  color: #586e75;
} /* Literal.String.Doc */
.highlight .s2 {
  color: #2aa198;
} /* Literal.String.Double */
.highlight .se {
  color: #cb4b16;
} /* Literal.String.Escape */
.highlight .sh {
  color: #586e75;
} /* Literal.String.Heredoc */
.highlight .si {
  color: #2aa198;
} /* Literal.String.Interpol */
.highlight .sx {
  color: #2aa198;
} /* Literal.String.Other */
.highlight .sr {
  color: #dc322f;
} /* Literal.String.Regex */
.highlight .s1 {
  color: #2aa198;
} /* Literal.String.Single */
.highlight .ss {
  color: #2aa198;
} /* Literal.String.Symbol */
.highlight .bp {
  color: #268bd2;
} /* Name.Builtin.Pseudo */
.highlight .vc {
  color: #268bd2;
} /* Name.Variable.Class */
.highlight .vg {
  color: #268bd2;
} /* Name.Variable.Global */
.highlight .vi {
  color: #268bd2;
} /* Name.Variable.Instance */
.highlight .il {
  color: #2aa198;
} /* Literal.Number.Integer.Long */
/* RESET & BASE STYLES */
* {
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #f5f5f5;
  line-height: 1.6;
  font-size: 16px;
}

/* HEADER */
header {
  background: #111;
  color: #fff;
  padding: 15px 0;
}

.header-inner {
  max-width: 900px;
  margin: auto;
  padding: 0 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
}

.logo span {
  color: #e63946;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  padding: 5px 0;
}

nav a:hover {
  text-decoration: underline;
}

/* BREADCRUMB */
.breadcrumb {
  max-width: 900px;
  margin: 10px auto;
  padding: 0 15px;
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.breadcrumb a {
  text-decoration: none;
  color: #333;
}

.breadcrumb span {
  color: #777;
}

/* MAIN */
.container {
  max-width: 900px;
  margin: auto;
  display: flex;
  gap: 20px;
  padding: 20px 15px;
}

.content {
  flex: 1;
  background: #fff;
  padding: 15px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  min-width: 0;
}

.sidebar {
  width: 300px;
  background: #fff;
  padding: 15px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

/* LEAGUE LIST (Homepage) */
.league-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.league-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f8f9fa;
  padding: 12px 15px;
  border-radius: 5px;
  border-left: 4px solid #e63946;
}

.league-item span {
  flex: 1;
  margin-right: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: bold;
}

.view-button {
  background: #e63946;
  color: #fff;
  border: none;
  padding: 8px 15px;
  cursor: pointer;
  border-radius: 3px;
  font-size: 14px;
  white-space: nowrap;
  font-weight: bold;
  transition: background 0.3s;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  min-width: 60px;
}

.view-button:hover {
  background: #c1121f;
  color: #fff;
  text-decoration: none;
}

.ads {
  margin: 20px 0;
  text-align: center;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.ad-unit {
  background: #ddd;
  padding: 10px;
  border-radius: 5px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  margin: 0 auto;
  /* Fix untuk Google Ads */
}
.ad-unit ins.adsbygoogle {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  overflow: hidden !important;
}

@media (max-width: 768px) {
  .ads {
    margin: 15px 0;
  }
  .ad-unit {
    padding: 8px;
  }
}
@media (max-width: 480px) {
  .ads {
    margin: 10px 0;
  }
  .ad-unit {
    padding: 5px;
    border-radius: 3px;
  }
}
/* FAQ Section (Homepage) */
.faq {
  margin-top: 20px;
}

.faq p {
  margin-bottom: 15px;
}

/* SIDEBAR WIDGETS */
.sidebar-widget {
  margin-bottom: 25px;
}

.sidebar-widget h3 {
  background: #111;
  color: white;
  padding: 10px 15px;
  margin: 0 -15px 15px -15px;
  font-size: 16px;
}

.upcoming-match {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.upcoming-match:last-child {
  border-bottom: none;
}

/* FOOTER */
footer {
  background: #111;
  color: #fff;
  padding: 20px 0;
  margin-top: 30px;
}

.footer-inner {
  max-width: 900px;
  margin: auto;
  text-align: center;
  padding: 0 15px;
}

.footer-links {
  margin-bottom: 15px;
}

.footer-links a {
  color: #fff;
  margin: 0 8px;
  text-decoration: none;
  font-size: 14px;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* =========================================== */
/* SIMPLE MATCH SCHEDULE (Format dari contoh) */
/* =========================================== */
/* SIMPLE MATCH SCHEDULE - persis contoh */
.simple-schedule {
  margin: 20px 0;
}

.simple-match {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f8f9fa;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 10px;
  border-left: 4px solid #e63946;
  transition: all 0.3s ease;
}

.simple-match:hover {
  background: #f0f7ff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.match-info {
  flex: 1;
  margin-right: 20px;
}

.team-names {
  font-weight: bold;
  margin-bottom: 5px;
  font-size: 16px;
  color: #333;
}

.match-time {
  color: #666;
  font-size: 14px;
  line-height: 1.4;
}

/* LIVE HERE BUTTON - persis contoh */
.live-here-btn {
  background: #e63946;
  color: #fff;
  border: none;
  padding: 8px 15px;
  cursor: pointer;
  border-radius: 3px;
  font-size: 14px;
  white-space: nowrap;
  font-weight: bold;
  transition: background 0.3s;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  min-width: 100px;
}

.live-here-btn:hover {
  background: #c1121f;
  color: #fff;
  text-decoration: none;
}

/* HEADER untuk schedule di halaman live */
.simple-schedule h2 {
  color: #333;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f0f0f0;
  font-size: 1.5rem;
}

/* FEATURED INFO BOX */
.featured-info {
  background: #e8f4fc;
  border-left: 4px solid #2a8fbd;
  padding: 15px;
  margin: 20px 0;
  border-radius: 0 5px 5px 0;
}

.featured-info h3 {
  color: #2a8fbd;
  margin-top: 0;
}

.warning-box {
  background: #fff8e8;
  border-left: 4px solid #ff9800;
  padding: 15px;
  margin: 20px 0;
  border-radius: 0 5px 5px 0;
}

/* ARTICLE CONTENT STYLES */
.article-content {
  margin: 30px 0;
}
.article-content h2 {
  color: #333;
  margin: 25px 0 15px;
  border-bottom: 2px solid #f0f0f0;
  padding-bottom: 10px;
  font-size: 1.5rem;
}
.article-content h3 {
  color: #444;
  margin: 20px 0 10px;
  font-size: 1.3rem;
}
.article-content p {
  margin-bottom: 15px;
  text-align: justify;
  line-height: 1.7;
}
.article-content ul, .article-content ol {
  margin-bottom: 15px;
  padding-left: 20px;
}
.article-content ul li, .article-content ol li {
  margin-bottom: 8px;
  line-height: 1.6;
}
.article-content strong {
  color: #333;
  font-weight: 700;
}

/* POST LAYOUT STYLES */
.post-content .post-title {
  color: #333;
  margin: 20px 0 25px 0;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.3;
  border-bottom: 2px solid #e63946;
  padding-bottom: 15px;
}

/* Hapus styles yang tidak diperlukan */
.match-card,
.match-title,
.match-details,
.match-divider,
.match-action,
.live-here-btn-screenshot,
.live-here-section,
.match-schedule-side,
.match-item-side,
.match-content,
.match-title-side,
.match-info-side,
.match-action-side,
.match-divider-side {
  /* Hapus styles yang tidak digunakan */
}

/* RESPONSIVE STYLES */
@media (max-width: 920px) {
  .container {
    flex-direction: column;
    gap: 15px;
  }
  .sidebar {
    width: 100%;
  }
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .logo {
    margin-bottom: 10px;
    font-size: 1.8rem;
  }
  nav {
    justify-content: space-between;
    width: 100%;
  }
  nav a {
    font-size: 13px;
  }
}
@media (max-width: 600px) {
  body {
    font-size: 14px;
  }
  .container {
    padding: 15px 10px;
  }
  .content, .sidebar {
    padding: 12px;
  }
  /* League List di Homepage */
  .league-item {
    padding: 10px 12px;
    flex-wrap: wrap;
  }
  .league-item span {
    margin-right: 0;
    margin-bottom: 8px;
    width: 100%;
    white-space: normal;
  }
  .view-button {
    padding: 6px 12px;
    font-size: 13px;
    align-self: flex-end;
    min-width: 55px;
  }
  /* Simple Match di Live Page */
  .simple-match {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .match-info {
    margin-right: 0;
    margin-bottom: 10px;
    width: 100%;
  }
  .live-here-btn {
    align-self: stretch;
    text-align: center;
    width: 100%;
    min-width: auto;
    padding: 10px 15px;
    font-size: 14px;
  }
  .simple-schedule h2 {
    font-size: 1.3rem;
  }
  .post-content .post-title {
    font-size: 1.5rem;
    margin: 15px 0 20px 0;
  }
  .breadcrumb {
    font-size: 13px;
    padding: 0 10px;
  }
  .footer-links a {
    margin: 0 5px;
    font-size: 13px;
  }
  .article-content h2 {
    font-size: 1.3rem;
  }
  .article-content h3 {
    font-size: 1.1rem;
  }
  .featured-info,
  .warning-box {
    padding: 12px;
  }
}
@media (max-width: 400px) {
  .logo {
    font-size: 1.5rem;
  }
  nav {
    flex-direction: column;
    gap: 5px;
  }
  nav a {
    padding: 3px 0;
  }
  /* League List di Homepage */
  .league-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .league-item span {
    margin-right: 0;
    white-space: normal;
    width: 100%;
  }
  .view-button {
    align-self: stretch;
    text-align: center;
    width: 100%;
  }
  /* Simple Match di Live Page */
  .simple-match {
    padding: 12px;
  }
  .team-names {
    font-size: 15px;
  }
  .match-time {
    font-size: 13px;
  }
  .live-here-btn {
    padding: 8px 12px;
    font-size: 13px;
  }
}
/* =========================================== */
/* MATCH DETAIL PAGE STYLES */
/* =========================================== */
/* MATCH HEADER */
.match-header {
  text-align: center;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid #f0f0f0;
}

.match-title {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 10px;
  font-weight: 700;
}

.match-subtitle {
  color: #666;
  font-size: 1.1rem;
}

/* EVENT DETAILS */
.event-details {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  margin: 20px 0;
  border-left: 4px solid #e63946;
}

.event-details h3 {
  margin-top: 0;
  color: #333;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
  font-size: 1.2rem;
}

.detail-item {
  margin-bottom: 12px;
  display: flex;
}

.detail-label {
  font-weight: bold;
  width: 80px;
  color: #555;
}

.detail-value {
  flex: 1;
  color: #333;
}

/* TV CHANNELS */
.tv-channels {
  margin: 25px 0;
}

.tv-channels h3 {
  color: #333;
  margin-bottom: 15px;
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 10px;
  font-size: 1.2rem;
}

.channel-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.channel-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f8f9fa;
  padding: 12px 15px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.channel-item:hover {
  background: #f0f7ff;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.channel-name {
  font-weight: bold;
  color: #333;
}

.watch-button {
  background: #e63946;
  color: white;
  border: none;
  padding: 8px 15px;
  border-radius: 3px;
  font-weight: bold;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.3s;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  min-width: 100px;
}

.watch-button:hover {
  background: #c1121f;
  color: white;
  text-decoration: none;
}

/* RESPONSIVE untuk Match Page */
@media (max-width: 768px) {
  .match-title {
    font-size: 1.5rem;
  }
  .match-subtitle {
    font-size: 1rem;
  }
  .channel-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .watch-button {
    align-self: stretch;
    text-align: center;
    width: 100%;
  }
  .detail-item {
    flex-direction: column;
  }
  .detail-label {
    width: 100%;
    margin-bottom: 5px;
  }
}
@media (max-width: 480px) {
  .match-title {
    font-size: 1.3rem;
  }
  .event-details {
    padding: 15px;
  }
  .tv-channels h3,
  .event-details h3 {
    font-size: 1.1rem;
  }
}

/*# sourceMappingURL=style.css.map */