
body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: #f5f5f5;
  padding-bottom: 80px;
  padding-top: 40px;
}
.top-bar {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: black;
  color: orange;
  text-align: center;
  padding: 10px 0;
  font-size: 14px;
  z-index: 9999;
  border-bottom: 2px solid orange;
}
.footer-menu {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: black;
  border-top: 2px solid orange;
  z-index: 9998;
  text-align: center;
  padding: 10px 0;
}
.footer-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-flex;
  gap: 20px;
}
.footer-menu-list li {
  position: relative;
}
.footer-menu-list > li > a {
  text-decoration: none;
  color: black;
  padding: 5px 15px;
  background-color: orange;
  border-radius: 3px;
  transition: background-color 0.3s;
  display: inline-block;
   font-size: 12px;
}
.footer-menu-list > li > a:hover {
  background-color: #ff6600;
  color: black;
   font-size: 12px;
}
.footer-menu-list li.dropdown .dropdown-content {
    position: absolute;
    bottom: 140%;
    left: 50%;
    transform: translateX(-50%);
    background-color: orange;

    min-width: 240px;
    width: auto;

    box-shadow: 0 0 5px black;
    border-radius: 3px;
    text-align: left;
    z-index: 10000;

    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.5s ease;

    list-style: none;
    margin: 0;
    padding: 5px 0;
	 font-size: 12px;
}
.footer-menu-list li.dropdown:hover .dropdown-content {
  visibility: visible;
  opacity: 1;
}
.dropdown-content li a {
    display: block;
    padding: 8px 15px;
    color: black;
    text-decoration: none;
    white-space: nowrap;
}
.dropdown-content li a:hover {
  background-color: #ff6600;
}
.slider-container {
  width: 1200px;
  margin: 15px auto 0 auto;
  position: relative;
  overflow: visible;
}
.slider {
  width: 1205px;
  height: 150px;
  margin: 15px 355px 10px; 
  position: relative;
  border: 3px solid #002147;
  overflow: hidden;
  border-radius: 5px;
}
.slides {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease-in-out;

}
.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  line-height: 150px;
  font-size: 24px;
  text-align: center;
  color: black;
  background-color: orange;
  opacity: 0;
  transition: opacity 1s ease, filter 1s ease;
  filter: blur(5px);
}
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: black;
  color: orange;
  border: none;
  padding: 10px;
  cursor: pointer;
  font-size: 18px;
  border-radius: 3px;
  opacity: 0.7;
  transition: opacity 0.3s;
  z-index: 10;
}
.sidebar-block h4 {
  background-color: #002147 !important;
  color: #ffffff !important;
  padding: 4px 8px;
  line-height: 1.1;
  border-radius: 6px;
  margin: 0 0 8px 0;
  font-size: 12px;
  font-weight: 600;
  display: block;
}
.slide.active {
  opacity: 1;
  filter: blur(0);
}
.prev:hover, .next:hover {
  opacity: 1;
}
.prev {
  left: -60px;
}
.next {
  right: -60px;
}
.maillist-popup {
  position: fixed;
  bottom: -100%;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  background-color: orange;
  border: 2px solid #002147;
  border-radius: 5px;
  box-shadow: 0 0 10px black;
  z-index: 10001;
  transition: bottom 0.5s ease;
  padding: 20px;
  text-align: center;
}
.maillist-popup input {
  width: 80%;
  padding: 8px;
  margin: 5px 0;
  border: 1px solid #002147;
  border-radius: 3px;
}
.maillist-popup button {
  margin: 5px;
  padding: 8px 15px;
  background-color: black;
  color: orange;
  border: none;
  border-radius: 3px;
  cursor: pointer;
}
.maillist-popup button:hover {
  background-color: #002147;
  color: orange;
}
.content-wrapper {
  width: 1200px;
  margin: 15px auto 0 auto;
  display: flex;
  gap: 0px;
}
.left-content {
  width: 1000px;
}
.top-bar-inner {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.top-logo a {
  color: orange;
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;
  letter-spacing: 1px;
}
.top-logo a:hover {
  color: #ff6600;
}
.top-copy {
  font-size: 13px;
  color: orange;
}
.right-sidebar {
  width: 200px;
  margin-left: 15px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.sidebar-block {
  background-color: #f0f0f0;
  padding: 10px;
  border: 2px solid #002147;
  border-radius: 5px;
}
.sidebar-block h4 {
  margin: 0 0 10px 0;
  font-size: 16px;
  color: #002147;
}
.sidebar-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sidebar-block ul li {
  margin-bottom: 5px;
}
.sidebar-block ul li a {
  text-decoration: none;
  color: black;
}
.sidebar-block ul li a:hover {
  color: #ff6600;
}
.left-content {
  width: 1000px;
  margin: 0 auto;
}
.blog-item {
  display: flex;
  gap: 15px;
  border: 1px solid #ccc;
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 5px;
  background-color: #f5f5f5;
}
.blog-item img {
  width: 200px;
  height: 150px;
  object-fit: cover;
  border-radius: 5px;
  border: 1px solid #002147;
}
.blog-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 150px;
  transition: transform 0.2s ease;
}
.blog-item:hover .blog-right {
  transform: translateY(-2px);
}
.blog-right h3 {
  margin: 0 0 5px 0;
}
.blog-right hr {
  border: 0;
  border-top: 1px solid #ccc;
  margin: 5px 0;
}
.meta-info {
  font-size: 12px;
  color: #555;
}
.blog-right p {
  margin: 5px 0;
  flex: 1;
}
.read-more {
  display: flex;
  justify-content: flex-end;
}
.read-more button {
  padding: 5px 10px;
  background-color: black;
  color: orange;
  border: none;
  border-radius: 3px;
  cursor: pointer;
}
.read-more button:hover {
  background-color: #002147;
  color: orange;
}
.kat-hit-list li {
  list-style: none;
}
.kat-hit-list li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
}
.kat-isim {
  text-align: left;
}
.kat-hit {
  text-align: right;
  font-size: 12px;
  color: #888;
}
.sayac-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sayac-list li {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
  font-size: 12px;
}
.sayac-isim {
  color: #333;
}
.sayac-sayi {
  font-weight: bold;
  color: #002147;
}
.kedi-resim {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 8px;
}
.kedi-detay {
    line-height: 1.7;
    font-size: 15px;
}
.sayfalama {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    display: flex;
    gap: 5px;
}
.sayfalama li {
    margin: 0;
}
.sayfalama li a,
.sayfalama li strong {
    display: block;         
    text-align: center;
    padding: 5px 10px;
    background-color: #002147;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
	font-size: 12px;
}
.sayfalama li a:hover {
    background-color: #003366;
}
.kedcs-wrapper {
    text-align: center;
    padding: 10px 0;
}
.kedcs {
    background-color: #002147;
    color: white;
    display: inline-block;     
    padding: 8px 12px;         
    margin: 0 3px;             
    text-align: center;
    border-radius: 3px;        
    transition: background-color 0.3s, transform 0.2s;
	 font-size: 10px;
}
.kedcs a {
    color: white;
    text-decoration: none;
	 font-size: 10px;
}
.kedcs:hover {
    background-color: #003199;
    transform: translateY(-2px);
}
.sartcs {
    border-radius: 5px;
    overflow: hidden;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    max-width: 100%;
    margin: 2px auto;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.sartcs .sart-baslik {
    background-color: #002147 !important;
    color: white;
    padding: 15px 20px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
}
.sartcs .sart-aciklama {
    background-color: white;
    color: black;
    padding: 15px 20px;
    font-size: 14px;
}
.iletics {
    margin-top: 20px;
    background-color: #f9f9f9;
    padding: 15px 20px;
    border-radius: 5px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}
.iletics label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}
.iletics input[type="text"],
.iletics input[type="email"],
.iletics textarea,
.iletics select {
    width: 100%;
    padding: 8px 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
}
.iletics textarea {
    resize: vertical;
    min-height: 100px;
}
.iletics button {
    background-color: #002147;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s;
}
.iletics button:hover {
    background-color: #003080;
}
.final-soz {
    margin-top: 40px;
    text-align: center;
    font-size: 17px;
    color: #333;
}
.final-soz span {
    display: block;
    margin-top: 8px;
    font-size: 22px;
    font-weight: bold;
}
.hakkimizda {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 14px;
    line-height: 1.8;
    color: #333;
}
.sol-reklam {
    left: 10px;
     position: fixed !important;
    top: 300px !important;
    width: 250px;
    height: 250px;
    z-index: 999;
    border-radius: 135px;
    overflow: hidden;
}
.sol-reklam img {
    width: 250px;
    height: 250px;
    display: block;
    border-radius: 135px;
}
.tooltip {
    position: relative;
}
.tooltip-text {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    color: #333;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10;
}
.tooltip:hover .tooltip-text {
    opacity: 1;
    visibility: visible;
}
.tooltip-text::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: #fff transparent transparent transparent;
}
.defrek-banner {
    display: flex;
    justify-content: center;
    margin: 20px 0;
    border-top: 1px solid transparent;
}
.defrek-banner img {
    width: 1000px;
    height: 175px;
    border-radius: 6px;
}
.skeleton-ads {
    position: relative;
    width: 175px;
    height: 300px;
    background: #e6e6e6;
    border-radius: 8px;
    overflow: hidden;
}
.skeleton-ads::before {
    content: "";
    position: absolute;
    top: 0;
    left: -70%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.7),
        transparent
    );
    animation: shimmerAds 1.4s infinite;
}
@keyframes shimmerAds {
    100% { left: 120%; }
}
.skeleton-ads img {
    width: 100%;
    height: 100%;
    display: block;
    opacity: 0;
    transition: opacity .3s ease;
}
.skeleton-ads.loaded {
    background: none;
}
.skeleton-ads.loaded::before {
    display: none;
}
.skeleton-ads.loaded img {
    opacity: 1;
}
.defrek-banner.skeleton-banner {
    position: relative;
    width: 750px;
    height: 150px;
    margin: 20px auto;
    margin: 20px auto;
    border-radius: 12px;
    overflow: hidden;
    background: #e6e6e6;
}
.defrek-banner.skeleton-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: -60%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.6),
        transparent
    );
    animation: shimmerBanner 1.5s infinite;
}
@keyframes shimmerBanner {
    100% { left: 120%; }
}
.dds-table{
    width: 100%;
	 border-collapse: separate;
    border-spacing: 0 10px;
}
.dds-text{
    white-space: nowrap;
    padding-right: 8px;
    font-size: 13px;
}
.dds-bar-td{
    width: 100%;
}
.dds-bar{
    width: 100%;
    height: 14px;
    background: #e0e0e0;
    border-radius: 7px;
    overflow: hidden;
}
.dds-dolgu{
    width: 0;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        #4caf50,
        #4caf50 10px,
        #66bb6a 10px,
        #66bb6a 20px
    );
    animation: dds-move 1s linear infinite;
    transition: width 1.2s ease;
}
@keyframes dds-move{
    from{ background-position: 0 0; }
    to{ background-position: 40px 0; }
}
.dds-yuzde{
    white-space: nowrap;
    padding-left: 8px;
    font-size: 12px;
}
.yorumMenu{
    display:flex;
    background:#ffffff;
    padding:1px 1px 0 0;
    border-radius:8px 8px 0 0;
}
.menuItem{
    padding:10px 30px;
    cursor:pointer;
    color:#ff6600;
    background:#002147;
    margin-right:11px;
    font-weight:600;
    border-radius:8px 8px 0 0;
}
.menuItem:hover{
    background:#ff6600;
    color:#fff;
}
.menuItem.aktif{
    background:#002147;
    color:#fff;
}
.icerik{
    display:none;
    border:1px solid #002147;
    padding:16px;
    border-radius:0 0 8px 8px;
}
.yorumBalon{
    position:relative;
    background:#f7f7f7;
    border:1px solid #ddd;
    padding:14px 16px;
    border-radius:10px;
    margin-bottom:15px;
}
.yorumBalon:before{
    content:"";
    position:absolute;
    left:25px;
    top:-10px;
    border-width:0 10px 10px 10px;
    border-style:solid;
    border-color:transparent transparent #f7f7f7 transparent;
}
.yorumUst{
    font-size:13px;
    color:#555;
    margin-bottom:8px;
}
.yorumUst .adsoyad{
    font-weight:bold;
    color:#002147;
}
.yorumUst .email{
    color:#ff6600;
}
.yorumMetin{
    font-size:14px;
    line-height:1.5;
    color:#333;
}
.yorumForm{
    background:#fff;
    border:1px solid #002147;
    padding:20px;
    border-radius:0 0 8px 8px;
}
.formSatir{
    margin-bottom:15px;
}
.formSatir label{
    display:block;
    margin-bottom:5px;
    font-weight:600;
    color:#002147;
}
.formSatir input,
.formSatir textarea{
    width:90%;
    padding:10px;
    border:1px solid #ccc;
    border-radius:6px;
    font-size:14px;
}
.formSatir textarea{
    min-height:120px;
    resize:vertical;
}
.formSatir input:focus,
.formSatir textarea:focus{
    border-color:#ff6600;
    outline:none;
}
.formButon{
    text-align:right;
}
.formButon button{
    background:#002147;
    color:#ff6600;
    border:none;
    padding:10px 25px;
    font-weight:600;
    border-radius:6px;
    cursor:pointer;
}
.formButon button:hover{
    background:#ff6600;
    color:#fff;
}