.home,
.wave {
  background: linear-gradient(to bottom, #171717, #171717);
}

.media h1,
.products {
    padding-top: 3rem;
	margin-top: 0rem;
}
#backToTop,
.home .container button:hover,
.product button {
    background-color: #4799ff;
}
#backToTop:hover,
.home .container button,
.product button:hover {
    background-color: #4160e8;
}
body {
    background-color: #171717;
}
.navbar {
    position: fixed;
    width: 100%;
    z-index: 500;
}
.navbar-brand {
    margin-left: 1.5rem;
    float: left;
}
.navbar-brand a {
    color: #fff;
    text-decoration: none;
    font-family: "Roboto Mono";
    font-size: 22px;
}
.navbar-links {
    display: flex;
    margin-top: 1rem;
    margin-right: 2rem;
    list-style: none;
    font-family: Roboto;
    font-weight: 300;
    font-size: 16px;
}
#backToTop,
.answer {
    display: none;
}
.navbar-links a {
    color: #fff;
    text-decoration: none;
    transition: 0.1s;
}
.faq,
.media img,
.product {
    transition: 0.2s;
}
.navbar-links a .fa-brands {
    font-size: 24px;
}
.home .container a + a,
.navbar-links a + a {
    margin-left: 1rem;
}
.navbar-mobile {
    display: none;
    margin-right: 1rem;
    color: #fff;
    font-size: 18px;
}
.navbar-mobile:hover,
.product .table {
    color: #fff;
}
.home {
    height: 25rem;
    color: #fff;
    align-items: center;
}
.features,
.products {
    color: #e0e0e0;
}
.home .container {
    padding-top: 8rem;
}
.home .container h1 {
    font-family: Roboto;
    font-weight: 700;
    font-size: 42px;
}
.home .container p {
    color: #e1e1e1;
    font-family: "Roboto Mono";
    max-width: 30rem;
}
.home .container button {
    border: 0;
    border-radius: 25px;
    padding: 15px 20px;
    font-family: Roboto;
    font-weight: 400;
    font-size: 18px;
    color: #fff;
    text-decoration: none;
    transition: 0.1s;
}
.wave {
    height: 0px;
    overflow: hidden;
}
.faqs,
.products {
    background: #171717;
}
.wave svg {
    height: 100%;
    width: 100%;
}
.features .feature {
    text-align: left;
    border-radius: 5px;
    padding: 1rem;
    transition: 0.2s;
}
.features .feature i {
    text-align: center;
    display: block;
    height: 3.5rem;
    width: 3.5rem;
    border-radius: 50%;
    border: 1px solid #2c2c2c;
    font-size: 20px;
    padding-top: 1rem;
    transition: 0.15s;
}
.features .feature i:hover {
    background: #2c2c2c;
}
.features .feature h2 {
    font-family: Roboto;
    font-weight: 400;
    color: #4799ff;
    font-size: 20px;
}
.features .feature p {
    font-family: Roboto;
    font-weight: 300;
    font-size: 14px;
    color: #aaa;
}
.features .feature:hover {
    box-shadow: rgba(0, 0, 0, 0.35) 0 5px 15px;
}
.features-header h1,
.products .products-header h1 {
    font-family: Roboto;
    font-weight: 700;
}
.products {
    padding-bottom: 2rem;
}
.products .products-header p {
    font-family: "Roboto Mono";
    font-weight: 400;
    font-size: 14px;
}

.copyright {
    padding-bottom: 2rem;
    color: #646464;
}
.copyright a {
    color: #646464;
    text-decoration: none;
    transition: 0.15s;
}
.copyright img {
    opacity: 1;
}
#backToTop {
    cursor: pointer;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    border: none;
    outline: 0;
    color: #fff;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 20px;
    transition: 0.15s;
}

#media h1, 
#faqs h1 {
  color: #4799ff; /* Match your accent blue color */
  font-family: Roboto;
  font-weight: 700;
}

@media only screen and (max-width: 425px) {
    .home,
    .navbar-links {
        text-align: center;
    }
    .navbar {
        background: #1d1d1d;
    }
    .navbar-mobile {
        display: block;
    }
    .navbar-links {
        display: none;
    }
    .navbar-links a + a {
        margin-left: 0.01rem;
    }
    .media img {
        max-width: 260px;
        max-height: 140px;
		cursor: pointer;
    }
    .home .container {
        padding-top: 1rem;
    }
    .home .container a + a {
        display: block;
        margin-top: 1rem;
        margin-right: 1rem;
    }
    #backToTop {
        padding: 8px 16px;
    }
}

/* FINAL PRODUCT BLOĞU */
.product {
  background-color: #222;
  border-radius: 15px;
  padding: 2.5rem;
  max-width: 800px;
  margin: 2rem auto;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
  transition: 0.3s ease;
  text-align: center;
}

.product h2 {
  font-family: Roboto;
  font-weight: 400;
  font-size: 28px;
  color: #4799ff;
  margin-bottom: 1rem;
}

.product p {
  color: #b8b8b8;
  font-family: Roboto;
  font-weight: 300;
  font-size: 15px;
  margin-bottom: 1.5rem;
}

.product button {
  background: linear-gradient(135deg, #4799ff, #4160e8);
  margin: 1rem 0;
  font-size: 16px;
  padding: 12px 24px;
  border-radius: 25px;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: 0.3s ease;
}

.product button:hover {
  background-color: #4160e8;
}

.product table {
  width: 100%;
  margin-top: 1rem;
  color: #ccc;
  font-family: "Roboto Mono";
  border-collapse: collapse;
}

.product table th,
.product table td {
  padding: 12px;
  border-bottom: 1px solid #333;
}

/* Vouch kartları: img ve iframe */
.media img,
.media iframe {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover efekti */
.media img:hover,
.media iframe:hover {
  transform: scale(1.08); /* biraz daha büyük */
  box-shadow: 0 15px 40px rgba(71, 153, 255, 0.5);
}


/* Ratio container düzeltmesi */
.media .ratio {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 14px;
  background-color: #000;
  position: relative;
  display: block;
}

/* Video oran problemi çözümü */
.media .ratio iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Responsive uyum için */
@media (max-width: 768px) {
  .media img,
  .media iframe {
    height: 180px;
  }
}

/* Daha iyi düzen için Mobil uyum eklemeleri */
@media (max-width: 425px) {
  .media img,
  .media iframe {
    height: 160px;
  }
}

.faq {
  background-color: #1f1f1f;
  border: 1px solid #2a2a2a;
  padding: 16px 20px;
  margin-bottom: 1rem;
  border-radius: 12px;
  color: #fff;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.faq:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(71,153,255,0.4);
}

.faq h4 {
  font-size: 18px;
  font-weight: 500;
  color: #4799ff;
  margin-bottom: 0.5rem;
}

.faq.active {
  background-color: #171717;
  color: #fff;
}

.answer {
  background-color: #272727;
  padding: 12px 20px;
  border-radius: 8px;
  margin-top: 10px;
  font-size: 15px;
  color: #cfcfcf;
  box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
}
.product-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  margin-top: 1.5rem;
  text-align: left;
}

.detail-group {
  width: 100%;
  background-color: #2c2c2c;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.detail-group:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(255, 255, 255, 0.1); /* gri ton, daha soft */
}



.detail-group h4 {
  color: #4799ff;
  margin-bottom: 0.8rem;
  font-family: Roboto, sans-serif;
}

.detail-group ul {
  list-style-type: none;
  padding: 0;
}

.detail-group ul li {
  color: #d0d0d0;
  padding: 0.35rem 0;
  font-family: 'Segoe UI', 'Roboto', sans-serif;
  font-size: 15.5px;
}

.detail-group ul li i {
  color: #4799ff;
  margin-right: 8px;
}

.media .media-img-wrapper {
  overflow: hidden;
  border-radius: 14px;
}

.media .media-img-wrapper img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.3s ease;
  border-radius: 14px;
}

.media .media-img-wrapper img:hover {
  transform: scale(1.08);
}

.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.95);
}

#imageModal {
  position: fixed;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.95);
}




.modal-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10000;
}

@media (max-width: 768px) {
  .modal-content {
    max-width: 95%;
    max-height: 80%;
  }
}
