/* OxiPlayer Theme */

/* Renkler */
:root {
  --orange: #ff6600;
  --orange-dark: #e65c00;
  --light-gray: #f9f9f9;
}

.text-orange {
  color: var(--orange) !important;
}

.btn-orange {
  background-color: var(--orange);
  border: none;
}
.btn-orange:hover {
  background-color: var(--orange-dark);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #fff7f0 0%, #fff 100%);
  padding: 100px 0;
}
.hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
}
.hero p {
  font-size: 1.2rem;
  color: #555;
}

/* Features */
.feature-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 25px;
  transition: all 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 8px 20px rgba(0,0,0,0.08);
}

/* Pricing */
.pricing-card {
  border: 2px solid var(--orange);
  border-radius: 10px;
  padding: 30px;
  background: #fff;
  transition: 0.3s;
}
.pricing-card:hover {
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}
.pricing-card h3 {
  color: var(--orange);
  font-weight: bold;
}

h2.text-center.mb-4 {
  position: relative;
  display: inline-block;
}

h2.text-center.mb-4::after {
  content: "";
  display: block;
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #ffcc33, #ff6600);
  margin: 12px auto 0;
  border-radius: 3px;
}
.oxiplayer-text {
  font-weight: 700;
  font-size: 1.3em;
  background: url('assets/img/oxiplayer_icon.png') no-repeat left center;
  background-size: 26px 26px;
  padding-left: 34px; /* ikon ile yazı arası boşluk */
}

.oxiplayer-text::first-letter {
  color: #000; /* Oxi siyah */
}

.oxiplayer-text {
  color: #ff6600; /* Player turuncu */
}
.list-group-item img {
  border-radius: 6px;
}
.list-group-item {
  font-weight: 500;
  font-size: 15px;
}
