/**
 * MYK Tema - Ana Stiller
 */

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
  background: var(--myk-dark);
  color: #fff;
  padding: 10px 0;
  font-size: 13px;
}
.top-bar .container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.top-bar-links a {
  color: #aaa;
  text-decoration: none;
  transition: var(--transition);
  font-size: 12px;
}
.top-bar-links a:hover { color: var(--myk-gold); }

/* ============================================
   HEADER
   ============================================ */
.main-header {
  background: #fff;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.main-header .container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.logo-section {
  display: flex;
  align-items: center;
  gap: 14px;
}
.site-logo {
  max-height: 50px;
  width: auto;
}
.logo-emblem {
  width: 50px;
  height: 50px;
  background: var(--myk-red);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  box-shadow: 0 4px 15px rgba(198,40,40,0.3);
  flex-shrink: 0;
}
.logo-text h1 {
  font-size: 17px;
  font-weight: 700;
  color: var(--myk-dark);
  line-height: 1.2;
  letter-spacing: 0.3px;
}
.logo-text h1 a {
  color: inherit;
  text-decoration: none;
}
.logo-text h1 a:hover {
  color: var(--myk-red);
}
.logo-text span {
  font-size: 11px;
  color: var(--myk-gray);
  font-weight: 400;
  letter-spacing: 0.3px;
}

/* ============================================
   NAVIGATION
   ============================================ */
.main-nav ul {
  display: flex;
  list-style: none;
  gap: 2px;
  align-items: center;
}
.main-nav li { 
  position: relative; 
}
.main-nav a {
  text-decoration: none;
  color: #444;
  font-weight: 500;
  font-size: 14px;
  padding: 10px 14px;
  border-radius: 8px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.main-nav a:hover, .main-nav a.active {
  background: var(--myk-red);
  color: #fff;
}
.main-nav .has-dropdown::after {
  content: '▼';
  font-size: 7px;
  margin-left: 4px;
  opacity: 0.6;
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #fff;
  min-width: 260px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  border: 1px solid var(--myk-border);
  z-index: 1001;
}
.dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 30px;
  width: 12px;
  height: 12px;
  background: #fff;
  transform: rotate(45deg);
  border-left: 1px solid var(--myk-border);
  border-top: 1px solid var(--myk-border);
}
.main-nav li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  color: #555;
  font-size: 13px;
  margin-bottom: 2px;
  font-weight: 400;
}
.dropdown a:hover {
  background: #fff5f5;
  color: var(--myk-red);
}

/* ============================================
   HEADER ACTIONS
   ============================================ */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.search-btn, .lang-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--myk-border);
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: var(--transition);
  color: #444;
}
.search-btn:hover, .lang-btn:hover {
  background: var(--myk-red);
  color: #fff;
  border-color: var(--myk-red);
}
.portal-btn {
  background: var(--myk-red);
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.portal-btn:hover {
  background: var(--myk-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(198,40,40,0.3);
}
.mobile-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: none;
  background: var(--myk-red);
  color: #fff;
  border-radius: 8px;
  font-size: 20px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

/* ============================================
   ARAMA MODALI
   ============================================ */
.search-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.8);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.search-modal-content {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  position: relative;
}
.search-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: none;
  background: var(--myk-light);
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #444;
}
.search-modal-close:hover {
  background: var(--myk-red);
  color: #fff;
}
.search-modal form {
  display: flex;
  gap: 12px;
}
.search-modal input[type="search"] {
  flex: 1;
  padding: 14px 20px;
  border: 2px solid var(--myk-border);
  border-radius: 10px;
  font-size: 16px;
  font-family: inherit;
}
.search-modal input[type="search"]:focus {
  outline: none;
  border-color: var(--myk-red);
}
.search-modal button[type="submit"] {
  padding: 14px 28px;
  background: var(--myk-red);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  background: var(--myk-dark);
  position: relative;
  overflow: hidden;
  padding: 90px 0 70px;
}
.hero-bg-pattern {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(198,40,40,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(212,160,23,0.1) 0%, transparent 40%);
  pointer-events: none;
}
.hero .container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-content h2 {
  font-size: 44px;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 18px;
}
.hero-content h2 span {
  color: var(--myk-gold);
}
.hero-content p {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 30px;
  max-width: 520px;
}
.hero-stats {
  display: flex;
  gap: 28px;
  margin-bottom: 36px;
}
.stat-item h3 {
  font-size: 34px;
  font-weight: 800;
  color: var(--myk-gold);
  line-height: 1;
}
.stat-item p {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  margin: 6px 0 0 0;
  line-height: 1.4;
}
.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--myk-red);
  color: #fff;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--myk-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(198,40,40,0.4);
  color: #fff;
}
.btn-outline {
  background: transparent;
  color: #fff;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  border: 2px solid rgba(255,255,255,0.25);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
  color: #fff;
}

/* Hero Cards */
.hero-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.quick-card {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 24px 20px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: block;
}
.quick-card:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.2);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.quick-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--myk-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 14px;
  transition: transform 0.3s ease;
}
.quick-card:hover .quick-card-icon {
  transform: scale(1.1);
}
.quick-card h4 {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}
.quick-card p {
  color: rgba(255,255,255,0.5);
  font-size: 11px;
  margin: 0;
  line-height: 1.5;
}

/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */
.announcement-bar {
  background: var(--myk-red);
  color: #fff;
  padding: 12px 0;
  overflow: hidden;
  position: relative;
}
.announcement-track {
  display: flex;
  gap: 60px;
  animation: scroll 30s linear infinite;
  white-space: nowrap;
  width: max-content;
}
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.announcement-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
}
.announcement-item .badge {
  background: var(--myk-gold);
  color: var(--myk-dark);
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
  padding: 80px 0;
  background: var(--myk-light);
}
.section-header {
  text-align: center;
  margin-bottom: 50px;
}
.section-header h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--myk-dark);
  margin-bottom: 10px;
}
.section-header p {
  color: var(--myk-gray);
  font-size: 15px;
}
.section-header .line {
  width: 50px;
  height: 4px;
  background: var(--myk-red);
  margin: 14px auto 0;
  border-radius: 2px;
}
.services-grid {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  background: #fff;
  border-radius: 14px;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--myk-border);
  transition: var(--transition);
  cursor: pointer;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
  border-color: transparent;
}
.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: #fff5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 28px;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: var(--myk-red);
  color: #fff;
  transform: scale(1.1);
}
.service-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--myk-dark);
  margin-bottom: 8px;
}
.service-card p {
  font-size: 12px;
  color: var(--myk-gray);
  line-height: 1.6;
}

/* ============================================
   NEWS SECTION
   ============================================ */
.news-section {
  padding: 80px 0;
  background: #fff;
}
.news-section .container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}
.news-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.news-main {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 400px;
  cursor: pointer;
}
.news-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}
.news-main:hover img { transform: scale(1.05); }
.news-main-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 36px;
  background: linear-gradient(transparent 20%, rgba(0,0,0,0.85) 100%);
  color: #fff;
}
.news-main-overlay .date {
  background: var(--myk-red);
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 10px;
}
.news-main-overlay h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
}
.news-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.news-item {
  display: flex;
  gap: 16px;
  padding: 18px;
  border-radius: 14px;
  border: 1px solid var(--myk-border);
  transition: var(--transition);
  cursor: pointer;
  align-items: flex-start;
}
.news-item:hover {
  background: var(--myk-light);
  border-color: var(--myk-red);
  transform: translateX(4px);
}
.news-item-date {
  min-width: 52px;
  text-align: center;
  flex-shrink: 0;
}
.news-item-date .day {
  font-size: 26px;
  font-weight: 800;
  color: var(--myk-red);
  line-height: 1;
}
.news-item-date .month {
  font-size: 11px;
  color: var(--myk-gray);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.news-item h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--myk-dark);
  line-height: 1.4;
  margin-bottom: 4px;
}
.news-item h4 a {
  color: inherit;
  text-decoration: none;
}
.news-item h4 a:hover {
  color: var(--myk-red);
}
.news-item p {
  font-size: 12px;
  color: var(--myk-gray);
  line-height: 1.5;
}

/* ============================================
   STATS BANNER
   ============================================ */
.stats-banner {
  background: var(--myk-dark);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.stats-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.stats-banner .container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  z-index: 2;
}
.stat-box {
  text-align: center;
  padding: 20px;
}
.stat-box .icon {
  font-size: 36px;
  margin-bottom: 14px;
  color: var(--myk-gold);
}
.stat-box .number {
  font-size: 40px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1;
}
.stat-box .label {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}

/* ============================================
   QUICK LINKS SECTION
   ============================================ */
.quick-links-section {
  padding: 80px 0;
  background: var(--myk-light);
}
.quick-links-section .container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}
.links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.link-card {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--myk-border);
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
}
.link-card:hover {
  background: var(--myk-red);
  color: #fff;
  transform: translateX(6px);
  box-shadow: 0 10px 30px rgba(198,40,40,0.2);
  border-color: var(--myk-red);
}
.link-card:hover h4 { color: #fff; }
.link-card:hover p { color: rgba(255,255,255,0.8); }
.link-card:hover .link-icon {
  background: rgba(255,255,255,0.2);
  color: #fff;
}
.link-icon {
  min-width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #fff5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--myk-red);
  transition: var(--transition);
  flex-shrink: 0;
}
.link-card h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--myk-dark);
  margin-bottom: 3px;
  transition: color 0.3s ease;
}
.link-card p {
  font-size: 11px;
  color: var(--myk-gray);
  transition: color 0.3s ease;
}

/* ============================================
   FOOTER
   ============================================ */
.main-footer {
  background: #0f0f1a;
  color: #fff;
  padding: 70px 0 0;
}
.main-footer .container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
}
.footer-brand .logo-emblem {
  margin-bottom: 18px;
}
.footer-brand p {
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--myk-red);
  transform: translateY(-3px);
}
.footer-col h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}
.footer-col ul {
  list-style: none;
}
.footer-col li {
  margin-bottom: 10px;
}
.footer-col a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 13px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-col a:hover {
  color: var(--myk-gold);
  padding-left: 6px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 50px;
  padding: 22px 0;
  text-align: center;
  color: rgba(255,255,255,0.3);
  font-size: 12px;
}


/* ============================================
   LINK KARTLARI (1. resimdeki gibi)
   ============================================ */
.link-cards-section {
  padding: 60px 0;
  background: linear-gradient(180deg, #f0f0f0 0%, #e8e8e8 100%);
}
.link-cards-section .container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}
.link-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.link-card-item {
  background: linear-gradient(180deg, #ffffff 0%, #d0d0d0 100%);
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  text-decoration: none;
  transition: all 0.4s ease;
  border: 1px solid rgba(255,255,255,0.5);
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 180px;
  justify-content: center;
}
.link-card-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.15);
  border-color: var(--myk-red);
}
.link-card-image {
  width: 70px;
  height: 70px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.link-card-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.link-card-icon-default {
  width: 60px;
  height: 60px;
  background: var(--myk-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
}
.link-card-title {
  font-size: 14px;
  font-weight: 600;
  color: #1a2a4a;
  line-height: 1.4;
  margin: 0;
}

/* ============================================
   SLIDER (2. resimdeki gibi)
   ============================================ */
.myk-slider-section {
  padding: 40px 0;
  background: #f5f5f5;
}
.myk-slider-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}
.myk-slider-wrapper {
  display: flex;
  transition: transform 0.5s ease-in-out;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}
.myk-slide {
  min-width: 100%;
  position: relative;
}
.myk-slide-link {
  display: block;
  position: relative;
}
.myk-slide img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
}
.myk-slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(26,26,46,0.85) 0%, rgba(26,26,46,0.4) 50%, transparent 100%);
  display: flex;
  align-items: center;
  padding: 0 60px;
}
.myk-slide-overlay h3 {
  color: #fff;
  font-size: 32px;
  font-weight: 800;
  max-width: 500px;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* Slider Kontrolleri */
.myk-slider-prev,
.myk-slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--myk-dark);
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.myk-slider-prev:hover,
.myk-slider-next:hover {
  background: var(--myk-red);
  color: #fff;
}
.myk-slider-prev {
  left: 44px;
}
.myk-slider-next {
  right: 44px;
}

/* Slider Noktalar */
.myk-slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}
.myk-slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--myk-red);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}
.myk-slider-dot.active {
  background: var(--myk-red);
  transform: scale(1.2);
}
.myk-slider-dot:hover {
  background: var(--myk-red);
  opacity: 0.7;
}

/* ============================================
   RESPONSIVE - Link Kartları & Slider
   ============================================ */
@media (max-width: 1200px) {
  .link-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .myk-slide img {
    height: 280px;
  }
  .myk-slide-overlay h3 {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .link-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .link-card-item {
    padding: 20px 12px;
    min-height: 140px;
  }
  .link-card-image {
    width: 50px;
    height: 50px;
  }
  .link-card-title {
    font-size: 12px;
  }
  .myk-slide img {
    height: 200px;
  }
  .myk-slide-overlay {
    padding: 0 20px;
  }
  .myk-slide-overlay h3 {
    font-size: 18px;
  }
  .myk-slider-prev,
  .myk-slider-next {
    width: 36px;
    height: 36px;
  }
  .myk-slider-prev {
    left: 30px;
  }
  .myk-slider-next {
    right: 30px;
  }
}

@media (max-width: 480px) {
  .link-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
