html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
}

* {
    box-sizing: border-box !important;
}


    /* Loading indicator */
    .loading-indicator {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background: linear-gradient(90deg, #007bff, #28a745);
        transform: translateX(-100%);
        animation: loading 2s infinite;
        z-index: 9999;
    }
    
    @keyframes loading {
        0% { transform: translateX(-100%); }
        100% { transform: translateX(100%); }
    }
@media only screen and (max-width: 1000px) {
  .introslider-placeholder img {
    display: none;
  }
}
@media (max-width: 1008px) {
    .product-image {
        display: none !important;
    }
}
        .domainSearch__inner {
            background: transparent;
            border-radius: 20px;
            padding: 50px;
            text-align: center;
            max-width: 800px;
            width: 100%;
            position: relative;
            overflow: hidden;
            transition: transform 0.3s ease;
        }

        .domainSearch__inner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #667eea, #764ba2);
            display: none;
        }

        /* Paket Title Styles */
        .pakettitle {
            margin-bottom: 40px;
            text-align: center;
        }

        .pakettitle h1 {
            /* font-size: 32px; */
            /* font-weight: 700; */
            /* color: #2d3748; */
            /* margin-bottom: 15px; */
            /* line-height: 1.2; */
            /* transition: color 0.3s ease; */
        }

        .pakettitle h2 {
            font-size: 18px;
            color: #4a5568;
            line-height: 1.5;
            font-weight: 400;
            transition: color 0.3s ease;
        }

        /* Dark mode paket title */
        body.dark-mode .pakettitle h1 {
            color: #f7fafc;
        }

        body.dark-mode .pakettitle h2 {
            color: #a0aec0;
        }


        .gonderbtn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(var(--coretema-primary-rgb), 0.08);
            border: 0 8px 15px 5px rgba(var(--coretema-primary-rgb), 0.2);
            border-radius: 50px;
            padding: 12px 24px;
            text-decoration: none;
            color: var(--coretema-primary);
            font-size: 14px;
            font-weight: 600;
            transition: all 0.3s ease;
            cursor: pointer;
            user-select: none;
        }

        .alert-modern {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(102, 126, 234, 0.1);
            border: 1px solid rgba(102, 126, 234, 0.2);
            border-radius: 50px;
            padding: 12px 20px;
            margin-bottom: 30px;
            animation: slideInDown 0.6s ease-out;
            transition: all 0.3s ease;
        }

        /* Dark mode alert - sadece manual class ile */

        body.dark-mode .alert-modern {
            background: rgba(102, 126, 234, 0.15);
            border: 1px solid rgba(102, 126, 234, 0.3);
        }

        .badge {
            background: #667eea;
            color: white;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        .alert-content {
            color: #4a5568;
            font-size: 14px;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        /* Dark mode alert content - sadece manual class ile */

        body.dark-mode .alert-content {
            color: #cbd5e0;
        }

        .alert-content b {
            color: #667eea;
            font-weight: 700;
        }

        .domainSearch__inner-title {
            font-size: 28px;
            font-weight: 700;
            color: #2d3748;
            margin-bottom: 15px;
            line-height: 1.2;
            animation: slideInUp 0.6s ease-out 0.2s both;
            transition: color 0.3s ease;
        }

        /* Dark mode title - sadece manual class ile */

        body.dark-mode .domainSearch__inner-title {
            color: #f7fafc;
        }

        .domainSearch__inner-text {
            font-size: 16px;
            color: #4a5568;
            line-height: 1.5;
            animation: slideInUp 0.6s ease-out 0.4s both;
            transition: color 0.3s ease;
        }

        /* Dark mode text - sadece manual class ile */

        body.dark-mode .domainSearch__inner-text {
            color: #a0aec0;
        }

        .domainSearch__inner-text strong {
            color: #667eea;
            font-weight: 700;
            font-size: 18px;
        }

        /* Clear utility */
        .clear {
            clear: both;
        }

        /* Animasyonlar */
        @keyframes slideInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        body.dark-mode .alert-modern:hover {
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
        }

        /* Hover efektleri */
        .alert-modern:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.2);
        }

        .domainSearch__inner:hover {
            transform: translateY(-2px);
        }

        /* Responsive tasarım */
        @media (max-width: 768px) {
            .domainSearch__inner {
                padding: 40px 20px;
                margin: 20px;
            }

            .pakettitle h1 {
                font-size: 26px;
            }

            .pakettitle h2 {
                font-size: 16px;
            }

            .domainSearch__inner-title {
                font-size: 24px;
            }

            .alert-modern {
                flex-direction: column;
                gap: 8px;
                text-align: center;
            }


            .gonderbtn {
                width: 100%;
                max-width: 300px;
                justify-content: center;
            }
        }

        /* Dekoratif elementler */
        .domainSearch__inner::after {
            display: none;
        }

        /* AOS Animation Support */
        [data-aos] {
            opacity: 0;
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        [data-aos].aos-animate {
            opacity: 1;
        }

        [data-aos="fade-up"] {
            transform: translateY(30px);
        }

        [data-aos="fade-up"].aos-animate {
            transform: translateY(0);
        }
    :root {
      /* Aydınlık mod değişkenleri */
      --bg-primary: #ffffff;
      --bg-secondary: #f8fbf9;
      --bg-tertiary: #f7fcfa;
      --text-primary: #1e293b;
      --text-secondary: #2c3e50;
      --text-tertiary: #64748b;
      --border-color: rgba(226, 232, 240, 0.6);
      --border-light: #f1f5f9;
      --border-hover: #e6efec;
      --accent-primary: #4caf50;
      --accent-secondary: #2e7d32;
      --icon-bg-gradient: linear-gradient(135deg, #f0f9ed 0%, #e3f2e0 100%);
      --icon-bg-hover: linear-gradient(135deg, #e3f2e0 0%, #d0e8cc 100%);
      --box-shadow: 0 10px 25px rgba(15, 23, 42, 0.04);
      --item-shadow: 0 4px 12px rgba(46, 125, 50, 0.08);
      --button-shadow: 0 3px 8px rgba(76, 175, 80, 0.15);
      --badge-gradient: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
      --discount-bg: #e53935;
      --container-width: 920px;
    }

    /* Domain kategorisi için renkler */
    .domain-menu {
      --accent-primary: #2196F3;
      --accent-secondary: #1565C0;
      --icon-bg-gradient: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
      --icon-bg-hover: linear-gradient(135deg, #bbdefb 0%, #90caf9 100%);
      --item-shadow: 0 4px 12px rgba(21, 101, 192, 0.08);
      --button-shadow: 0 3px 8px rgba(33, 150, 243, 0.15);
    }

    /* SSL kategorisi için renkler */
    .ssl-menu {
      --accent-primary: #9c27b0;
      --accent-secondary: #7b1fa2;
      --icon-bg-gradient: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%);
      --icon-bg-hover: linear-gradient(135deg, #e1bee7 0%, #ce93d8 100%);
      --item-shadow: 0 4px 12px rgba(123, 31, 162, 0.08);
      --button-shadow: 0 3px 8px rgba(156, 39, 176, 0.15);
    }

    /* Reseller kategorisi için renkler */
    .reseller-menu {
      --accent-primary: #ff9800;
      --accent-secondary: #f57c00;
      --icon-bg-gradient: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
      --icon-bg-hover: linear-gradient(135deg, #ffe0b2 0%, #ffcc80 100%);
      --item-shadow: 0 4px 12px rgba(245, 124, 0, 0.08);
      --button-shadow: 0 3px 8px rgba(255, 152, 0, 0.15);
    }

    /* Sunucu kategorisi için renkler */
    .server-menu {
      --accent-primary: #607d8b;
      --accent-secondary: #455a64;
      --icon-bg-gradient: linear-gradient(135deg, #eceff1 0%, #cfd8dc 100%);
      --icon-bg-hover: linear-gradient(135deg, #cfd8dc 0%, #b0bec5 100%);
      --item-shadow: 0 4px 12px rgba(69, 90, 100, 0.08);
      --button-shadow: 0 3px 8px rgba(96, 125, 139, 0.15);
    }

    /* Web Yazılımları kategorisi için renkler */
    .software-menu {
      --accent-primary: #3f51b5;
      --accent-secondary: #303f9f;
      --icon-bg-gradient: linear-gradient(135deg, #e8eaf6 0%, #c5cae9 100%);
      --icon-bg-hover: linear-gradient(135deg, #c5cae9 0%, #9fa8da 100%);
      --item-shadow: 0 4px 12px rgba(48, 63, 159, 0.08);
      --button-shadow: 0 3px 8px rgba(63, 81, 181, 0.15);
    }

    /* Diğer kategorisi için renkler */
    .other-menu {
      --accent-primary: #8bc34a;
      --accent-secondary: #689f38;
      --icon-bg-gradient: linear-gradient(135deg, #f1f8e9 0%, #dcedc8 100%);
      --icon-bg-hover: linear-gradient(135deg, #dcedc8 0%, #c5e1a5 100%);
      --item-shadow: 0 4px 12px rgba(104, 159, 56, 0.08);
      --button-shadow: 0 3px 8px rgba(139, 195, 74, 0.15);
    }

    /* Kurumsal kategorisi için renkler */
    .corporate-menu {
      --accent-primary: #795548;
      --accent-secondary: #5d4037;
      --icon-bg-gradient: linear-gradient(135deg, #efebe9 0%, #d7ccc8 100%);
      --icon-bg-hover: linear-gradient(135deg, #d7ccc8 0%, #bcaaa4 100%);
      --item-shadow: 0 4px 12px rgba(93, 64, 55, 0.08);
      --button-shadow: 0 3px 8px rgba(121, 85, 72, 0.15);
    }

    /* Hosting kategorisi için renkler */
    .hosting-menu { 
      --accent-primary: #00BCD4; 
      --accent-secondary: #0097A7; 
      --icon-bg-gradient: linear-gradient(135deg, #E0F7FA 0%, #B2EBF2 100%); 
      --icon-bg-hover: linear-gradient(135deg, #B2EBF2 0%, #80DEEA 100%); 
      --item-shadow: 0 4px 12px rgba(0, 151, 167, 0.08); 
      --button-shadow: 0 3px 8px rgba(0, 188, 212, 0.15); 
    }

    [data-theme="dark"] {
      /* Karanlık mod değişkenleri */
      --bg-primary: #0f172a;
      --bg-secondary: #0d1524;
      --bg-tertiary: #121e36;
      --text-primary: #f1f5f9;
      --text-secondary: #e2e8f0;
      --text-tertiary: #94a3b8;
      --border-color: rgba(51, 65, 85, 0.5);
      --border-light: #1e293b;
      --border-hover: #2c3f2e;
      --accent-primary: #4caf50;
      --accent-secondary: #81c784;
      --icon-bg-gradient: linear-gradient(135deg, #1a2e1c 0%, #243c26 100%);
      --icon-bg-hover: linear-gradient(135deg, #243c26 0%, #2d4c30 100%);
      --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
      --item-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
      --button-shadow: 0 3px 8px rgba(76, 175, 80, 0.1);
      --badge-gradient: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
      --discount-bg: #c62828;
    }

    /* Ana kapsayıcı */
    .megahedars-mega-menu-container {
      max-width: var(--container-width);
      width: 90%;
      margin: 0 auto;
      border-radius: 16px;
      display: flex;
      align-items: stretch;
      padding: 0;
      overflow: hidden;
      background-color: var(--bg-primary);
      box-shadow: var(--box-shadow);
      border: 1px solid var(--border-color);
      position: relative;
      transition: all 0.3s ease;
    }

    /* Sütunlar ve görsel alanı */
    .megahedars-mega-menu-columns {
      display: flex;
      flex: 1;
      position: relative;
      width: 100%;
    }

    /* Sol ve orta sütunlar */
    .megahedars-mega-menu-column {
      flex: 1;
      display: flex;
      flex-direction: column;
      position: relative;
      padding: 24px 20px;
      z-index: 1;
    }

    /* Kolonlar arası çizgi */
    .megahedars-mega-menu-column:not(:last-child) {
      border-right: 1px solid var(--border-light);
    }

    /* Sütun başlığı */
    .megahedars-column-title {
      font-size: 1rem;
      font-weight: 700;
      color: var(--text-primary);
      margin-bottom: 20px;
      padding-bottom: 10px;
      border-bottom: 1px solid var(--border-light);
      position: relative;
      transition: color 0.3s ease;
      letter-spacing: 0.02em;
    }

    .megahedars-column-title::after {
      content: '';
      position: absolute;
      bottom: -1px;
      left: 0;
      width: 40px;
      height: 2px;
      background: var(--accent-primary);
      transition: background 0.3s ease;
    }

    /* Menü öğeleri */
    .megahedars-dropdown-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      text-decoration: none;
      padding: 12px;
      margin-bottom: 12px;
      color: var(--text-secondary);
      background-color: var(--bg-primary);
      transition: all 0.25s ease-in-out;
      border-radius: 10px;
      font-size: 0.9rem;
      position: relative;
      cursor: pointer;
      border: 1px solid var(--border-light);
    }

    .megahedars-dropdown-item:last-child {
      margin-bottom: 0;
    }

    .megahedars-dropdown-item:hover,
    .megahedars-dropdown-item:focus {
      background-color: var(--bg-tertiary);
      color: var(--accent-secondary);
      border-color: var(--border-hover);
      transform: translateY(-2px);
      box-shadow: var(--item-shadow);
    }

    /* İkon kutusu */
    .megahedars-dropdown-icon {
      width: 42px;
      height: 42px;
      background: var(--icon-bg-gradient);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 17px;
      color: var(--accent-primary);
      flex-shrink: 0;
      transition: all 0.3s ease;
      box-shadow: 0 2px 6px rgba(46, 125, 50, 0.06);
      position: relative;
      z-index: 1;
    }

    .megahedars-dropdown-icon::after {
      content: '';
      position: absolute;
      inset: 2px;
      border-radius: 8px;
      background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 100%);
      z-index: -1;
      transition: background 0.3s ease;
    }

    .megahedars-dropdown-item:hover .megahedars-dropdown-icon,
    .megahedars-dropdown-item:focus .megahedars-dropdown-icon {
      background: var(--icon-bg-hover);
      color: var(--accent-secondary);
      transform: scale(1.05);
    }

    /* Yazı alanı */
    .megahedars-dropdown-content {
      display: flex;
      flex-direction: column;
      gap: 4px;
      padding-top: 2px;
    }

    .megahedars-title {
      font-weight: 600;
      font-size: 0.95rem;
      color: inherit;
      line-height: 1.3;
      transition: color 0.3s ease;
    }

    .megahedars-description {
      font-size: 0.8rem;
      color: var(--text-tertiary);
      line-height: 1.5;
      transition: color 0.3s ease;
    }

    /* Orta görsel kutusu */
    .megahedars-mega-menu-image {
      width: 220px;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      position: relative;
      background-color: var(--bg-secondary);
      border-left: 1px solid var(--border-light);
      border-right: 1px solid var(--border-light);
      transition: background-color 0.3s ease;
    }

    .megahedars-mega-menu-image::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(0deg, rgba(32, 134, 43, 0.02) 0%, rgba(139, 195, 74, 0.04) 100%);
      z-index: 1;
      transition: background 0.3s ease;
    }

    /* Domain menü için görsel kutusu arka planı */
    .domain-menu .megahedars-mega-menu-image::before {
      background: linear-gradient(0deg, rgba(21, 101, 192, 0.02) 0%, rgba(33, 150, 243, 0.04) 100%);
    }

    /* SSL menü için görsel kutusu arka planı */
    .ssl-menu .megahedars-mega-menu-image::before {
      background: linear-gradient(0deg, rgba(123, 31, 162, 0.02) 0%, rgba(156, 39, 176, 0.04) 100%);
    }


    [data-theme="dark"] .megahedars-mega-menu-image img {
      filter: brightness(0.85);
    }

    .megahedars-mega-menu-image:hover img {
      transform: scale(1.03);
    }

    /* İçerik bölgesini kaplayan overlay */
    .megahedars-image-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 18px 16px;
      background: linear-gradient(0deg, 
                var(--bg-primary) 0%, 
                rgba(255,255,255,0.7) 70%, 
                rgba(255,255,255,0) 100%);
      z-index: 2;
      text-align: center;
      transition: background 0.3s ease;
    }

    [data-theme="dark"] .megahedars-image-overlay {
      background: linear-gradient(0deg, 
                var(--bg-primary) 0%, 
                rgba(15,23,42,0.7) 70%, 
                rgba(15,23,42,0) 100%);
    }

    .megahedars-image-title {
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--accent-secondary);
      margin-bottom: 8px;
      transition: color 0.3s ease;
    }

    .megahedars-image-text {
      font-size: 0.85rem;
      color: var(--text-tertiary);
      margin-bottom: 14px;
      transition: color 0.3s ease;
    }

    .megahedars-image-button {
      display: inline-block;
      padding: 8px 18px;
      background-color: var(--accent-primary);
      color: white;
      border-radius: 24px;
      font-size: 0.85rem;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.3s ease;
      border: none;
      box-shadow: var(--button-shadow);
    }

    .megahedars-image-button:hover {
      background-color: var(--accent-secondary);
      transform: translateY(-2px);
      box-shadow: 0 5px 12px rgba(76, 175, 80, 0.25);
    }

    /* Domain menü için buton hover efekti */
    .domain-menu .megahedars-image-button:hover {
      box-shadow: 0 5px 12px rgba(33, 150, 243, 0.25);
    }

    /* SSL menü için buton hover efekti */
    .ssl-menu .megahedars-image-button:hover {
      box-shadow: 0 5px 12px rgba(156, 39, 176, 0.25);
    }

    /* Badge */
    .megahedars-badge {
      position: absolute;
      top: -6px;
      right: -6px;
      background: var(--badge-gradient);
      color: white;
      font-size: 0.65rem;
      font-weight: 600;
      padding: 3px 8px;
      border-radius: 20px;
      box-shadow: 0 3px 5px rgba(0, 0, 0, 0.12);
      z-index: 2;
    }

    /* İndirim rozeti */
    .megahedars-discount-badge {
      position: absolute;
      top: -8px;
      right: -8px;
      background: var(--discount-bg);
      color: white;
      font-size: 0.65rem;
      font-weight: 700;
      padding: 3px 8px;
      border-radius: 20px;
      box-shadow: 0 3px 8px rgba(229, 57, 53, 0.25);
      z-index: 2;
      transform: rotate(5deg);
    }

    /* Menü başlık stil */
    .menu-category-title {
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--text-primary);
      margin: 30px 0 15px;
      text-align: center;
    }

    /* Responsive */
    @media (max-width: 900px) {
      .megahedars-mega-menu-columns {
        flex-wrap: wrap;
      }
      
      .megahedars-mega-menu-image {
        order: -1;
        width: 100%;
        height: 160px;
        border-bottom: 1px solid var(--border-light);
        border-left: none;
        border-right: none;
      }
    }

    @media (max-width: 768px) {
      .megahedars-mega-menu-container {
        flex-direction: column;
        padding: 0;
        width: 85%;
      }
      
      .megahedars-mega-menu-columns {
        flex-direction: column;
      }
      
      .megahedars-mega-menu-column {
        border-right: none !important;
        border-bottom: 1px solid var(--border-light);
        padding: 20px 16px;
      }
      
      .megahedars-mega-menu-column:last-child {
        border-bottom: none;
      }
      
      .megahedars-image-overlay {
        padding: 12px;
      }
      
      .megahedars-image-title {
        font-size: 0.95rem;
      }
    }

    @media (max-width: 480px) {
      .megahedars-mega-menu-container {
        width: 95%;
      }
      
      .megahedars-dropdown-item {
        padding: 10px;
      }
      
      .megahedars-dropdown-icon {
        width: 36px;
        height: 36px;
        font-size: 15px;
      }
      
      .megahedars-title {
        font-size: 0.9rem;
      }
      
      .megahedars-description {
        font-size: 0.75rem;
      }
      
      .megahedars-mega-menu-image {
        height: 140px;
      }
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        outline: 0 !important;
    }

    :root {
        --font-family: 'Poppins', sans-serif;
        --primary-color: var(--coretema-primary);
        --secondary-color: #183B56;
        --primary-color-rgb: var(--coretema-primary-rgb);
        --background: #f3f6fe;
        --card-background: #ffffff;
        --card-hover: #E7EDFF;
        --text: #4b5563;
        --title: #183b56;
        --border: #e2e8f0;
        --sub-border: #E7EDFF;
        --shadow: 0 4px 8px rgba(0, 0, 0, 0.05), 0 2px 4px rgba(0, 0, 0, 0.03);
        --hover-shadow: 0 6px 12px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.05);
        
        /* Dinamik renk değişkenleri */
        --dynamic-primary-rgb: 0, 117, 252;
        --dynamic-secondary-rgb: 0, 117, 252;
        --dynamic-accent-rgb: 0, 117, 252;
        --dynamic-primary-hex: #0075fc;
        --dynamic-secondary-hex: #0075fc;
        --dynamic-text-color: #ffffff;
    }

    [data-theme="dark"],
    body.dark-mode {
        --background: #0F172A;
        --card-background: #1E293B;
        --card-hover: #334155;
        --text: #94a3b8;
        --title: #e2e8f0;
        --border: #334155;
        --sub-border: #1E293B;
        --shadow: 0 4px 8px rgba(0, 0, 0, 0.2), 0 2px 4px rgba(0, 0, 0, 0.1);
        --hover-shadow: 0 6px 12px rgba(0, 0, 0, 0.25), 0 2px 4px rgba(0, 0, 0, 0.15);
    }

    @keyframes fadeInUp {
        from { opacity: 0; transform: translateY(10px); }
        to { opacity: 1; transform: translateY(0); }
    }

    @keyframes scaleIn {
        from { opacity: 0; transform: scale(0.95); }
        to { opacity: 1; transform: scale(1); }
    }
 
    @keyframes float {
        0%, 100% { transform: translateY(0px); }
        50% { transform: translateY(-5px); }
    }

    @keyframes floatingCircles {
        0%, 100% { transform: translateY(0px) rotate(0deg); }
        50% { transform: translateY(-10px) rotate(180deg); }
    }

    /* BÜYÜK CONTAINER - 1400px */
    .introslider-container {
        margin: 0 auto;
        padding: 20px 20px;
        overflow: hidden;
    }

    .introslider-single-card {
        background: var(--card-background);
        border-radius: 20px;
        display: flex;
        justify-content: space-between;
        height: 255px;
        max-height: 285px;
        overflow: hidden;
        position: relative;
        box-shadow: var(--shadow);
        transition: all 0.3s ease;
        padding: 15px 20px;
        margin: 0 auto;
        max-width: 1200px;
    }

    .introslider-single-card:hover {
        box-shadow: var(--hover-shadow);
        transform: translateY(-2px);
    }

    .introslider-single-card::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        right: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="8" height="8" patternUnits="userSpaceOnUse"><circle cx="2" cy="2" r="0.8" fill="rgba(0,117,252,0.08)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
        opacity: 0.6;
        z-index: 0;
        border-radius: 20px;
    }


    .introslider-header-section {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 15px;
    }

    .introslider-badge {
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: 11px;
        padding: 6px 12px;
        border-radius: 20px;
        border: 1.5px dashed var(--coretema-primary);
        color: var(--coretema-primary);
        font-weight: 500;
        background: rgba(var(--coretema-primary-rgb), 0.05);
        animation: fadeInUp 0.6s ease-out 0.1s forwards;
        opacity: 0;
        white-space: nowrap;
    }

    .introslider-icon {
        width: 14px;
        height: 14px;
        fill: var(--coretema-primary);
        flex-shrink: 0;
    }

    .introslider-title {
        color: var(--title);
        font-size: 22px;
        line-height: 1.2;
        margin-bottom: 8px;
        font-weight: 700;
        animation: fadeInUp 0.6s ease-out 0.2s forwards;
        opacity: 0;
    }

    .introslider-title-highlight {
        color: var(--coretema-primary);
        font-weight: 700;
    }

    .introslider-description {
        font-size: 17px;
        color: var(--text);
        line-height: 1.4;
        margin-bottom: 12px;
        animation: fadeInUp 0.6s ease-out 0.3s forwards;
        opacity: 0;
    }

    .introslider-meta-section {
        display: flex;
        align-items: center;
        gap: 20px;
        flex-wrap: wrap;
        animation: fadeInUp 0.6s ease-out 0.4s forwards;
        opacity: 0;
    }

    /* SOSYAL MEDYA ALANI - GÜZEL TASARIM */
    .introslider-social-area {
        display: flex;
        align-items: center;
        border-radius: 25px;
        background: var(--shape-color);
        position: relative;
        overflow: hidden;
        border: 2px solid rgba(var(--coretema-primary-rgb), 0.1);
    }

    .introslider-social-area::before {
        content: "";
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(var(--coretema-primary-rgb), 0.15) 0%, transparent 70%);
        animation: floatingCircles 4s ease-in-out infinite;
        z-index: 0;
    }

    .introslider-social-area > * {
        position: relative;
        z-index: 1;
    }

    /* Sosyal medya ikonları */
    .introslider-social-area a,
    .introslider-social-area .social-icon {
        width: 28px !important;
        height: 28px !important;
        padding: 6px !important;
        border-radius: 50% !important;
        background: var(--card-bg);
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        transition: all 0.3s ease !important;
        cursor: pointer !important;
        text-decoration: none !important;
        margin: 0 4px !important;
        border: 2px solid rgba(var(--coretema-primary), 0.2) !important;
    }

    .introslider-social-area a:hover,
    .introslider-social-area .social-icon:hover {
        background: var(--coretema-primary) !important;
        transform: scale(1.15) !important;
        border-color: var(--coretema-primary) !important;
    }

    .introslider-social-area a svg,
    .introslider-social-area .social-icon svg,
    .introslider-social-area a i,
    .introslider-social-area .social-icon i {
        height: 14px !important;
        fill: var(--coretema-primary);
        color: var(--coretema-primary);
        transition: all 0.3s ease !important;
        font-size: 14px !important;
    }

    .introslider-social-area a:hover svg,
    .introslider-social-area .social-icon:hover svg,
    .introslider-social-area a:hover i,
    .introslider-social-area .social-icon:hover i {
        fill: #fff !important;
        color: #fff !important;
    }

    /* BUTON - SCROLL ÖZELLİĞİ İLE */
    .introslider-view-btn {
        display: inline-flex !important;
        align-items: center !important;
        gap: 8px !important;
        padding: 12px 24px !important;
        border: 2px solid var(--coretema-primary) !important;
        border-radius: 25px !important;
        color: var(--coretema-primary) !important;
        background: transparent !important;
        transition: all 0.3s ease !important;
        text-decoration: none !important;
        font-weight: 600 !important;
        font-size: 14px !important;
        position: relative !important;
        z-index: 1 !important;
        cursor: pointer !important;
    }

    .introslider-view-btn:hover {
        background: var(--coretema-primary) !important;
        color: #fff !important;
        transform: translateY(-3px) !important;
        box-shadow: 0 6px 16px rgba(var(--coretema-primary-rgb), 0.4) !important;
    }

    .introslider-view-btn:active {
        transform: translateY(1px) !important;
    }

    /* GÖRSEL ALAN - DİNAMİK RENK SİSTEMİ */
    .introslider-image-section {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .introslider-image-container {
        width: 280px !important;
        height: 280px !important;
        border-radius: 25px !important;
        overflow: visible;
        display: flex;
        align-items: center;
        justify-content: center;
        background: transparent;
        animation: scaleIn 0.6s ease forwards;
        opacity: 0;
        position: relative;
    }

    /* DİNAMİK RENK GRADYEN EFEKTLERİ */
    .introslider-image-container::before {
        content: "";
        position: absolute;
        top: -25px;
        left: -25px;
        right: -25px;
        bottom: -25px;
        background: radial-gradient(circle at center, 
            rgba(var(--dynamic-primary-rgb), 0.15) 0%, 
            rgba(var(--dynamic-secondary-rgb), 0.08) 40%, 
            transparent 70%);
        border-radius: 35px;
        z-index: -1;
        animation: floatingCircles 6s ease-in-out infinite;
        filter: blur(10px);
        transition: all 0.8s ease;
    }

    .introslider-image-container::after {
        content: "";
        position: absolute;
        top: -40px;
        left: -40px;
        right: -40px;
        bottom: -40px;
        background: conic-gradient(from 0deg, 
            rgba(var(--dynamic-primary-rgb), 0.12), 
            rgba(var(--dynamic-accent-rgb), 0.05), 
            rgba(var(--dynamic-secondary-rgb), 0.1));
        border-radius: 45px;
        z-index: -2;
        animation: floatingCircles 8s ease-in-out infinite reverse;
        filter: blur(15px);
        transition: all 0.8s ease;
    }



    .introslider-placeholder {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 10px;
    }

    .introslider-placeholder img {
        object-fit: cover !important;
        border-radius: 20px !important;
    }

    .introslider-float-icon {
        width: 22px;
        height: 22px;
        fill: #fff;
    }

    /* Desktop Responsive */
    @media (max-width: 1200px) {
        .introslider-container {
            padding: 20px 15px;
        }
        
        .introslider-single-card {
            padding: 18px;
        }
        
        .introslider-title {
            font-size: 28px;
        }

        .introslider-image-container {
            width: 220px !important;
            height: 220px !important;
        }

        .introslider-main-image {
            width: 190px !important;
            height: 190px !important;
        }
    }

    /* Tablet Responsive */
    @media (max-width: 992px) {
        .introslider-single-card {
            flex-direction: column;
            text-align: center;
            padding: 20px 20px;
            min-height: auto;
        }

        .introslider-title {
            font-size: 26px;
        }

        .introslider-description {
            font-size: 13px;
        }

        .introslider-meta-section {
            justify-content: center;
        }

        .introslider-image-container {
            width: 180px !important;
            height: 180px !important;
        }
        .introslider-main-image {
            width: 150px !important;
            height: 150px !important;
        }
    }

    /* Mobile Responsive */
    @media (max-width: 768px) {
        .introslider-container {
            padding: 20px 15px;
        }

        .introslider-single-card {
            padding: 25px 20px;
            border-radius: 15px;
        }

        .introslider-title {
            font-size: 26px;
            margin-bottom: 10px;
        }

        .introslider-description {
            font-size: 15px;
            margin-bottom: 15px;
        }

        .introslider-badge {
            font-size: 10px;
            padding: 5px 10px;
        }

        .introslider-meta-section {
            gap: 15px;
            flex-direction: column;
            align-items: center;
        }

        .introslider-social-area {
            padding: 1px;
        }

        .introslider-view-btn {
            padding: 10px 20px !important;
            font-size: 13px !important;
        }

        .introslider-image-container {
            width: 140px !important;
            height: 140px !important;
        }

        .introslider-main-image {
            width: 115px !important;
            height: 115px !important;
        }
        
        .introslider-float-icon {
            width: 18px;
            height: 18px;
        }
    }

    /* Extra Small Mobile */
    @media (max-width: 480px) {
        .introslider-single-card {
            padding: 20px 15px;
        }
        
        .introslider-title {
            font-size: 26px;
        }

        .introslider-header-section {
            flex-direction: column;
            gap: 8px;
        }

        .introslider-meta-section {
            gap: 12px;
        }

        .introslider-image-container {
            width: 100px !important;
            height: 100px !important;
        }

        .introslider-main-image {
            width: 80px !important;
            height: 80px !important;
        }
    }

        /* Tema değişkenleri */
        :root[data-theme="dark"] {
            --bg-color: var(--coreservercart-bg);
            --text-color: #ffffff;
            --secondary-text: rgba(255, 255, 255, 0.8);
            --card-bg: rgba(30, 41, 59, 0.8);
            --highlight-color: #ffffff;
            --btn-gradient: var(--coretema-primary-gradient);
            --btn-text: #ffffff;
            --shape-color: rgba(255, 255, 255, 0.08);
            --card-border: rgba(255, 255, 255, 0.06);
            --card-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
            --card-highlight: #4353e0;
            --input-bg: rgba(17, 25, 40, 0.8);
            --input-text: #ffffff;
            --input-border: rgba(255, 255, 255, 0.05);
            --tld-item-bg: rgba(30, 41, 59, 0.9);
            --dashboard-card-bg: rgba(30, 41, 59, 0.8);
            --notification-card-bg: rgba(30, 41, 59, 0.8);
            --notification-highlight: #ff8c35;
            --slider-dot-active: #ffffff;
            --slider-dot-inactive: rgba(255, 255, 255, 0.3);
            --navbar-bg: rgba(15, 21, 38, 0.95);
        }
        
        :root[data-theme="light"] {
            --bg-color: #f8fafc;
            --text-color: #1e293b;
            --secondary-text: rgba(30, 41, 59, 0.8);
            --card-bg: rgba(255, 255, 255, 0.9);
            --highlight-color: #1e293b;
            --btn-gradient: var(--coretema-primary-gradient);
            --btn-text: #ffffff;
            --shape-color: rgba(30, 41, 59, 0.05);
            --card-border: rgba(30, 41, 59, 0.08);
            --card-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
            --card-highlight: #4d6fff;
            --input-bg: rgba(255, 255, 255, 0.9);
            --input-text: #1e293b;
            --input-border: rgba(30, 41, 59, 0.1);
            --tld-item-bg: rgba(255, 255, 255, 0.9);
            --dashboard-card-bg: rgba(255, 255, 255, 0.9);
            --notification-card-bg: rgba(255, 255, 255, 0.9);
            --notification-highlight: #ff6b2b;
            --slider-dot-active: #1e293b;
            --slider-dot-inactive: rgba(30, 41, 59, 0.3);
            --navbar-bg: rgba(255, 255, 255, 0.95);
            
        } 
        @media (min-width: 1024px) {
    .hosting-container {
        display: grid;
        
    }
            .domain-input {
            width: 55%;
        }
}
        /* Main content padding for fixed navbar */
        .hosting-container {
            margin-top: 20px;
            max-width: 1400px;
            margin-left: auto;
            margin-right: auto;
            grid-template-columns: 75% 25%;
            gap: 20px;
            padding: 0 20px;
        }
        
        /* Slider Bölümü */
        .slider-main {
            position: relative;
            background: var(--coretema-primary-gradient);
            border-radius: 16px;
            overflow: hidden;
            backdrop-filter: blur(10px);
            border: 1px solid var(--card-border);
            box-shadow: var(--card-shadow);
            height: 100%;
        }
        
        .slider-content {
            display: flex;
            position: relative;
            transition: opacity 0.6s ease;
            height: 100%;
        }
        
        .slider-content.active {
            opacity: 1;
            transform: translateX(0);
            display: flex;
        }
        
        .slider-left {
            flex: 1;
            padding: 50px;
        }
        
        .tag-wrapper {
            display: inline-flex;
            align-items: center;
            background: var(--notification-card-bg);
            padding: 5px 8px;
            border-radius: 20px;
            margin-bottom: 20px;
        }
        
        .slider-tag-badge {
            background: var(--btn-gradient);
            color: #ffffff;
            padding: 5px 10px;
            border-radius: 16px;
            font-size: 13px;
            font-weight: 500;
            box-shadow: 0 8px 15px -3px rgba(var(--coretema-primary-rgb), 0.2);
        }
        
        .slider-tag-text {
            font-size: 13px;
            opacity: 0.9;
            margin-left: 8px;
            font-weight: 400;
        }
        
        .slider-title {
            font-size: 36px;
            font-weight: 600;
            line-height: 1.2;
            margin-bottom: 20px;
            letter-spacing: -0.3px;
        }
        
        .highlight {
            color: rgba(255, 255, 255, 0.7);
            position: relative;
            display: inline-block;
            font-weight: 750;
        }
        
        .slider-description {
            font-size: 16px;
            line-height: 1.5;
            margin-bottom: 30px;
            color: rgba(255, 255, 255, 0.7);
            font-weight: 400;
        }
        
        .slider-button {
            background: var(--btn-gradient);
            color: var(--btn-text);
            border: none;
            padding: 14px 28px;
            border-radius: 10px;
            font-size: 15px;
            font-weight: 500;
            cursor: pointer;
            display: inline-block;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 8px 15px -3px rgba(var(--coretema-primary-rgb), 0.2);
            position: relative;
            overflow: hidden;
        }
        
        .slider-button::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: 0.5s;
        }
        
        .slider-button:hover::after {
            left: 100%;
        }
        
        .slider-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 15px -3px rgba(var(--coretema-primary-rgb), 0.2);
        }
        
.slider-right {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    overflow: hidden;
}
        
        .product-image:hover {
            transform: translateY(-4px);
        }
        
        /* Animasyonlu şekiller */
        .animated-shapes {
            position: absolute;
            /* width: 100%; */
            /* height: 100%; */
            top: 0;
            left: 0;
            z-index: 1;
            overflow: hidden;
        }
        
        .shape {
            position: absolute;
            background-color: var(--shape-color);
            border-radius: 50%;
            transition: transform 3.5s ease;
        }
        
        .shape-1 {
            width: 100px;
            height: 100px;
            top: -20px;
            left: 8%;
            opacity: 0.5;
        }
        
        .shape-2 {
            width: 70px;
            height: 70px;
            top: 55%;
            left: -15px;
            opacity: 0.6;
        }
        
        .shape-3 {
            width: 50px;
            height: 50px;
            bottom: -15px;
            left: 25%;
            opacity: 0.4;
        }
        
        .shape-4 {
            width: 130px;
            height: 130px;
            top: 8%;
            right: -25px;
            opacity: 0.3;
        }
        
        .shape-line-1, .shape-line-2 {
            position: absolute;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--shape-color), transparent);
        }
        
        .shape-line-1 {
            width: 180px;
            top: 30%;
            left: 8%;
            transform: rotate(45deg);
        }
        
        .shape-line-2 {
            width: 220px;
            bottom: 20%;
            right: 4%;
            transform: rotate(-45deg);
        }
    
        
        /* Slider Navigation */
        .slider-navigation {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 15px 0;
            position: absolute;
            bottom: 8px;
            width: 100%;
        }
        
        .slider-arrow {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            margin: 0 8px;
            transition: all 0.3s ease;
            color: rgb(255, 255, 255);
        }
        
        .slider-arrow:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }
        
        .slider-pagination {
            display: flex;
            align-items: center;
            margin: 0 15px;
        }
        
        .slider-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background-color: var(--slider-dot-inactive);
            margin: 0 4px;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        
        .slider-dot.active {
            background-color: rgb(255, 255, 255);;
            transform: scale(1.2);
            border-color: var(--card-border);
        }
        

        /* Domain Arama Kartı */
        .domain-card {
            background: var(--card-bg);
            border-radius: 16px;
            padding: 25px;
            backdrop-filter: blur(10px);
            border: 1px solid var(--card-border);
            box-shadow: var(--card-shadow);
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .card-icon {
            font-size: 28px;
            margin-bottom: 15px;
        }
        
        .card-title {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--highlight-color);
        }
        
        .card-divider {
            height: 1px;
            background: linear-gradient(to right, var(--card-border), transparent);
            margin-bottom: 20px;
        }
        
        .domain-search-form {
            margin-bottom: 20px;
        }
        
        
        .domain-input:focus {
            border-color: 0 8px 15px -3px rgba(var(--coretema-primary-rgb), 0.2);
            box-shadow: 0 8px 15px -3px rgba(var(--coretema-primary-rgb), 0.2);
        }
        
        .domain-input::placeholder {
            color: var(--secondary-text);
            opacity: 0.6;
        }
        
        .tld-list {
            display: flex;
            overflow-x: auto;
            margin-bottom: 15px;
            padding: 5px 0;
            scrollbar-width: thin;
            scrollbar-color: var(--card-border) transparent;
        }
        
        .tld-list::-webkit-scrollbar {
            height: 5px;
        }
        
        .tld-list::-webkit-scrollbar-track {
            background: transparent;
        }
        
        .tld-list::-webkit-scrollbar-thumb {
            background-color: var(--card-border);
            border-radius: 10px;
        }
        
        .tld-item {
            flex: 0 0 auto;
            background: var(--shape-color);
            border-radius: 10px;
            padding: 6px 10px;
            margin-right: 6px;
            display: flex;
            flex-direction: column;
            align-items: center;
            min-width: 60px;
            max-width: 28%;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        .tld-item:hover {
            transform: translateY(-2px);
            background: rgba(255, 255, 255, 0.15);
        }
        
        .tld-item span {
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 2px;
        }
        
        .tld-item h5 {
            font-size: 11px;
            font-weight: 400;
            color: var(--secondary-text);
        }
        
        
        /* Enhanced Mobile Responsiveness */
        @media (max-width: 1200px) {
            .hosting-container {
                grid-template-columns: 1fr;
                gap: 15px;
                margin-top: 20px;
                padding: 0 15px;
            }
            
            .slider-content {
                padding: 25px;
                height: auto;
                flex-direction: column;
                display: flex;
            }
            
            .slider-left, .slider-right {
                padding: 15px;
                max-width: 100%;
                display: flex;
                flex-direction: column;
                align-items: center;
            }
            
            .slider-left {
                padding: 20px;
                text-align: center;
            }
            
            .slider-title {
                font-size: 28px;
                text-align: center;
            }
            
            .slider-description {
                font-size: 15px;
                text-align: center;
            }
            
            .notification-card {
                position: relative;
                bottom: 0;
                left: 0;
                margin: 15px auto;
                max-width: 100%;
            }
            
            .slider-button {
                width: 100%;
                text-align: center;
            }
            
            .product-image {
                max-height: 60%;
            }
        }
        
        @media (max-width: 768px) {
            .slider-content {
                padding: 15px;
            }
            
            .slider-left {
                padding: 15px;
                text-align: center;
                margin-bottom: 20px;
            }
            
            .domain-input {
            width: 100%;
        }
            .tag-wrapper {
                margin: 0 auto 15px;
            }
            
            .slider-title {
                font-size: 24px;
            }
            
            .slider-description {
                font-size: 14px;
            }
            
            .product-image {
                max-width: 100%;
                max-height: 50%;
            }
            
            .shape-line-1, .shape-line-2 {
                display: none;
            }
            
            .slider-navigation {
                padding: 10px 0;
            }
            
            .slider-arrow {
                width: 36px;
                height: 36px;
            }
            
            .slider-dot {
                width: 7px;
                height: 7px;
            }
            
                .domain-card {
                    margin-top: 1rem;
            }
            
            .card-title {
                font-size: 18px;
            }
            
            .domain-input {
                padding: 12px 16px;
                font-size: 14px;
            }
            
            .slider-button {
                padding: 12px 24px;
                font-size: 14px;
            }
        }
        
        @media (max-width: 480px) {
            .slider-title {
                font-size: 25px;
            }
            
            .slider-description {
                font-size: 10px;
            }
            
            .notification-text {
                font-size: 10px;
            }
            
            .tld-item {
                min-width: 35px;
            }
            
            .tld-item span {
                font-size: 12px;
            }
            
            .tld-item h5 {
                font-size: 10px;
            }
            
            .product-image {
                max-height: 40%;
            }
        }

/* Domain kategorisi için renkler */
.domain-menu { 
    --accent-primary: #2196F3; 
    --accent-secondary: #1565C0; 
    --icon-bg-gradient: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%); 
    --icon-bg-hover: linear-gradient(135deg, #bbdefb 0%, #90caf9 100%); 
    --item-shadow: 0 4px 12px rgba(21, 101, 192, 0.08); 
    --button-shadow: 0 3px 8px rgba(33, 150, 243, 0.15); 
}

/* SSL kategorisi için renkler */
.ssl-menu { 
    --accent-primary: #9c27b0; 
    --accent-secondary: #7b1fa2; 
    --icon-bg-gradient: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%); 
    --icon-bg-hover: linear-gradient(135deg, #e1bee7 0%, #ce93d8 100%); 
    --item-shadow: 0 4px 12px rgba(123, 31, 162, 0.08); 
    --button-shadow: 0 3px 8px rgba(156, 39, 176, 0.15); 
}

/* Reseller kategorisi için renkler */
.reseller-menu { 
    --accent-primary: #ff9800; 
    --accent-secondary: #f57c00; 
    --icon-bg-hover: linear-gradient(135deg, #ffe0b2 0%, #ffcc80 100%); 
    --item-shadow: 0 4px 12px rgba(245, 124, 0, 0.08); 
    --button-shadow: 0 3px 8px rgba(255, 152, 0, 0.15); 
}

/* Sunucu kategorisi için renkler */
.server-menu { 
    --accent-primary: #607d8b; 
    --accent-secondary: #455a64; 
    --icon-bg-gradient: linear-gradient(135deg, #eceff1 0%, #cfd8dc 100%); 
    --icon-bg-hover: linear-gradient(135deg, #cfd8dc 0%, #b0bec5 100%); 
    --item-shadow: 0 4px 12px rgba(69, 90, 100, 0.08); 
    --button-shadow: 0 3px 8px rgba(96, 125, 139, 0.15); 
}

/* Web Yazılımları kategorisi için renkler */
.software-menu { 
    --accent-primary: #3f51b5; 
    --accent-secondary: #303f9f; 
    --icon-bg-gradient: linear-gradient(135deg, #e8eaf6 0%, #c5cae9 100%); 
    --icon-bg-hover: linear-gradient(135deg, #c5cae9 0%, #9fa8da 100%); 
    --item-shadow: 0 4px 12px rgba(48, 63, 159, 0.08); 
    --button-shadow: 0 3px 8px rgba(63, 81, 181, 0.15); 
}

/* Diğer kategorisi için renkler */
.other-menu { 
    --accent-primary: #8bc34a; 
    --accent-secondary: #689f38; 
    --icon-bg-gradient: linear-gradient(135deg, #f1f8e9 0%, #dcedc8 100%); 
    --icon-bg-hover: linear-gradient(135deg, #dcedc8 0%, #c5e1a5 100%); 
    --item-shadow: 0 4px 12px rgba(104, 159, 56, 0.08); 
    --button-shadow: 0 3px 8px rgba(139, 195, 74, 0.15); 
}

/* Kurumsal kategorisi için renkler */
.corporate-menu { 
    --accent-primary: #795548; 
    --accent-secondary: #5d4037; 
    --icon-bg-gradient: linear-gradient(135deg, #efebe9 0%, #d7ccc8 100%); 
    --icon-bg-hover: linear-gradient(135deg, #d7ccc8 0%, #bcaaa4 100%); 
    --item-shadow: 0 4px 12px rgba(93, 64, 55, 0.08); 
    --button-shadow: 0 3px 8px rgba(121, 85, 72, 0.15); 
}

/* Hosting kategorisi için renkler */
.hosting-menu { 
    --accent-primary: #00BCD4; 
    --accent-secondary: #0097A7; 
    --icon-bg-gradient: linear-gradient(135deg, #E0F7FA 0%, #B2EBF2 100%); 
    --icon-bg-hover: linear-gradient(135deg, #B2EBF2 0%, #80DEEA 100%); 
    --item-shadow: 0 4px 12px rgba(0, 151, 167, 0.08); 
    --button-shadow: 0 3px 8px rgba(0, 188, 212, 0.15); 
}

/* Genel rozet stili */
.coretema-menu-badge {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 12px;
    margin-right: 6px;
    letter-spacing: 0.5px;
}

/* Gündüz modu (varsayılan) */
.badge-hosting {
    background-color: #E0F7FA; /* Açık mavi-turkuaz arka plan */
    color: #00BCD4; /* Koyu turkuaz yazı */
    border: 1px solid #B2EBF2;
}
.badge-domain {
    background-color: #E3F2FD; /* Açık mavi arka plan */
    color: #2196F3; /* Koyu mavi yazı */
    border: 1px solid #BBDEFB;
}
.badge-ssl {
    background-color: #F3E5F5; /* Açık mor arka plan */
    color: #9c27b0; /* Koyu mor yazı */
    border: 1px solid #E1BEE7;
}
.badge-reseller {
    background-color: #FFF3E0; /* Açık turuncu arka plan */
    color: #ff9800; /* Koyu turuncu yazı */
    border: 1px solid #FFE0B2;
}
.badge-server {
    background-color: #ECEFF1; /* Açık gri arka plan */
    color: #607d8b; /* Koyu gri yazı */
    border: 1px solid #CFD8DC;
}
.badge-software {
    background-color: #E8EAF6; /* Açık indigo arka plan */
    color: #3f51b5; /* Koyu indigo yazı */
    border: 1px solid #C5CAE9;
}
.badge-other {
    background-color: #F1F8E9; /* Açık yeşil arka plan */
    color: #8bc34a; /* Koyu yeşil yazı */
    border: 1px solid #DCEDC8;
}
.badge-corporate {
    background-color: #EFEBE9; /* Açık kahverengi arka plan */
    color: #795548; /* Koyu kahverengi yazı */
    border: 1px solid #D7CCC8;
}

/* Gece modu: Sistem tercihi veya manuel .dark-mode sınıfı */
@media (prefers-color-scheme: dark), html.dark-mode {
    .badge-hosting {
        background-color: rgba(0, 188, 212, 0.15) !important; /* Koyu mavi-turkuaz ar-ka plan */
        color: #4DD0E1 !important; /* Açık turkuaz yazı */
        border: 1px solid rgba(0, 188, 212, 0.3) !important;
    }
    .badge-domain {
        background-color: rgba(33, 150, 243, 0.15) !important; /* Koyu mavi arka plan */
        color: #64B5F6 !important; /* Açık mavi yazı */
        border: 1px solid rgba(33, 150, 243, 0.3) !important;
    }
    .badge-ssl {
        background-color: rgba(156, 39, 176, 0.15) !important; /* Koyu mor arka plan */
        color: #CE93D8 !important; /* Açık mor yazı */
        border: 1px solid rgba(156, 39, 176, 0.3) !important;
    }
    .badge-reseller {
        background-color: rgba(255, 152, 0, 0.15) !important; /* Koyu turuncu arka plan */
        color: #FFB74D !important; /* Açık turuncu yazı */
        border: 1px solid rgba(255, 152, 0, 0.3) !important;
    }
    .badge-server {
        background-color: rowspan>
        color: #90A4AE !important; /* Açık gri yazı */
        border: 1px solid rgba(96, 125, 139, 0.3) !important;
    }
    .badge-software {
        background-color: rgba(63, 81, 181, 0.15) !important; /* Koyu indigo arka plan */
        color: #9FA8DA !important; /* Açık indigo yazı */
        border: 1px solid rgba(63, 81, 181, 0.3) !important;
    }
    .badge-other {
        background-color: rgba(139, 195, 74, 0.15) !important; /* Koyu yeşil arka plan */
        color: #AED581 !important; /* Açık yeşil yazı */
        border: 1px solid rgba(139, 195, 74, 0.3) !important;
    }
    .badge-corporate {
        background-color: rgba(121, 85, 72, 0.15) !important; /* Koyu kahverengi arka plan */
        color: #A1887F !important; /* Açık kahverengi yazı */
        border: 1px solid rgba(121, 85, 72, 0.3) !important;
    }
}

/* Dropdown menüler için stil ayarları */
.coretema-dropdown-menu {
    border-color: var(--accent-primary, #2196F3);
}

.coretema-dropdown-item:hover {
    background: var(--icon-bg-hover, linear-gradient(135deg, #bbdefb 0%, #90caf9 100%));
}

.coretema-dropdown-icon {
    background: var(--icon-bg-gradient, linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%));
    color: var(--accent-secondary, #1565C0);
}

.coretema-dropdown-content .coretema-title {
    color: var(--accent-primary, #2196F3);
}

/* Mega menü öğeleri için stil ayarları */
.coretema-mega-item:hover {
    background: rgb(0 0 0 / 8%);
}


.domain-menu .coretema-drawer-link:hover .coretema-drawer-icon,
.domain-menu .coretema-drawer-item.active .coretema-drawer-arrow {
    background-color: #2196F3;
    color: white;
}


/* SSL menü için mobil stillemeler */
.ssl-menu .coretema-drawer-icon {
    background-color: rgba(156, 39, 176, 0.12);
    color: #9c27b0;
}

.ssl-menu.coretema-drawer-item.active,
.ssl-menu .coretema-drawer-link:hover,
.ssl-menu .coretema-drawer-submenu .coretema-submenu-item:hover,
.ssl-menu .coretema-drawer-mega .coretema-mega-item:hover {
    background-color: rgba(156, 39, 176, 0.12);
}

.ssl-menu .coretema-drawer-link:hover .coretema-drawer-icon,
.ssl-menu .coretema-drawer-item.active .coretema-drawer-arrow {
    background-color: #9c27b0;
    color: white;
}

.ssl-menu .coretema-drawer-badge {
    background-color: #F3E5F5;
    color: #9c27b0;
    border: 1px solid #E1BEE7;
}

/* Hosting menü için mobil stillemeler */
.hosting-menu .coretema-drawer-icon {
    background-color: rgba(0, 188, 212, 0.12);
    color: #00BCD4;
}

.hosting-menu.coretema-drawer-item.active,
.hosting-menu .coretema-drawer-link:hover,
.hosting-menu .coretema-drawer-submenu .coretema-submenu-item:hover,
.hosting-menu .coretema-drawer-mega .coretema-mega-item:hover {
    background-color: rgba(0, 188, 212, 0.12);
}

.hosting-menu .coretema-drawer-link:hover .coretema-drawer-icon,
.hosting-menu .coretema-drawer-item.active .coretema-drawer-arrow {
    background-color: #00BCD4;
    color: white;
}

.hosting-menu .coretema-drawer-badge {
    background-color: #E0F7FA;
    color: #00BCD4;
    border: 1px solid #B2EBF2;
}

/* Mobil menü genel düzeltmeleri */
.coretema-drawer-mega .coretema-mega-item:last-child {
    border-bottom: none;
}

@media (max-width: 767px) {
    /* Mobil badge düzeltmeleri */
    .coretema-drawer-badge {
        font-size: 9px;
        padding: 2px 6px;
    }
    
    /* Daha kompakt menü öğeleri */
    .coretema-drawer-link {
        padding: 12px 14px;
    }
    
    .coretema-mega-item,
    .coretema-submenu-item {
        padding: 10px 10px 10px 50px;
    }
    
    .coretema-mega-item:hover,
    .coretema-submenu-item:hover {
        padding-left: 55px;
    }
    
    .coretema-mega-icon {
        left: 25px;
    }
    
    .coretema-submenu-item:before {
        left: 34px;
    }
}

:root {
    /* ANA RENKLİ PALET */
    --sf-primary-color: var(--coretema-primary);
    --sf-primary-dark: var(--coretema-primary);
    --sf-primary-light: #ff8559;
    --sf-accent-color: #ff9500;
    --sf-success-color: #22c55e;
    --sf-error-color: #ef4444;
    --sf-warning-color: #f59e0b;
    --sf-info-color: #3b82f6;
    
    /* AÇIK TEMA */
    --sf-text-dark: #1a1a1a;
    --sf-text-light: #666666;
    --sf-text-muted: #999999;
    --sf-background-light: #f8f9fa;
    --sf-background-white: rgb(113 113 113 / 5%);
    --sf-border-color: #e9ecef;
    
    /* GÖLGELER */
    --sf-shadow-light: 0 2px 10px rgba(0, 0, 0, 0.08);
    --sf-shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.12);
    --sf-shadow-heavy: 0 8px 30px rgba(0, 0, 0, 0.15);
    
    /* BORDER RADIUS */
    --sf-radius-small: 6px;
    --sf-radius-medium: 10px;
    --sf-radius-large: 16px;
    --sf-radius-xl: 20px;
    
    /* SPACING */
    --sf-spacing-xs: 0.25rem;
    --sf-spacing-sm: 0.5rem;
    --sf-spacing-md: 1rem;
    --sf-spacing-lg: 1.5rem;
    --sf-spacing-xl: 2rem;
    --sf-spacing-2xl: 3rem;
    
    /* FONT SIZES */
    --sf-text-xs: 0.75rem;
    --sf-text-sm: 0.875rem;
    --sf-text-base: 1rem;
    --sf-text-lg: 1.125rem;
    --sf-text-xl: 1.25rem;
    --sf-text-2xl: 1.5rem;
    --sf-text-3xl: 1.875rem;
    --sf-text-4xl: 2.25rem;
}

/* KARKALIK TEMA */
[data-theme="dark"] {
    --sf-text-dark: #ffffff;
    --sf-text-light: #cccccc;
    --sf-text-muted: #888888;
    --sf-background-light: #2d2d2d;
    --sf-background-white: rgba(255, 255, 255, 0.08);
    --sf-border-color: #404040;
    --sf-shadow-light: 0 2px 10px rgba(0, 0, 0, 0.3);
    --sf-shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.4);
    --sf-shadow-heavy: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.container {
    margin: 0 auto;
    padding: 0 var(--sf-spacing-md);
}

/* SVG İKONLARI - DÜZELTİLMİŞ BOYUTLAR */
.icon-sm {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.icon-md {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.icon-lg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.icon-xl {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}


/* SEARCH CONTAINER */
.search-container {
    background: var(--sf-background-white);
    border-radius: var(--sf-radius-xl);
    padding: var(--sf-spacing-xl);
    border: 1px solid var(--sf-border-color);
    margin-bottom: var(--sf-spacing-xl);
    margin-left: auto;
    margin-right: auto;
}

/* SEARCH TABS */
.search-tabs {
    display: flex;
    background: var(--sf-background-light);
    border-radius: var(--sf-radius-medium);
    padding: 4px;
    margin-bottom: var(--sf-spacing-xl);
}


.search-tab.active {
    background: var(--sf-primary-color);
    color: white;
    box-shadow: var(--sf-shadow-light);
}

.search-tab:hover:not(.active) {
    background: var(--sf-border-color);
}

/* SEARCH FORMS */
.search-form {
    transition: all 0.3s ease;
}

.search-form.hidden {
    display: none;
}

.search-input-group {
    display: flex;
    gap: var(--sf-spacing-md);
    margin-bottom: var(--sf-spacing-lg);
}

.domain-input {
    flex: 1;
    padding: 16px 20px;
    border: 2px solid var(--sf-border-color);
    border-radius: var(--sf-radius-medium);
    font-size: var(--sf-text-lg);
    background: var(--sf-background-white);
    color: var(--sf-text-dark);
    transition: all 0.3s ease;
}

.domain-input:focus {
    outline: none;
    border-color: var(--sf-primary-color);
    box-shadow: 0 8px 15px -3px rgba(var(--coretema-primary-rgb), 0.2);
}

.search-buttons {
    display: flex;
    gap: var(--sf-spacing-md);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--sf-spacing-sm);
    padding: 16px 24px;
    border: none;
    border-radius: var(--sf-radius-medium);
    font-weight: 600;
    font-size: var(--sf-text-base);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--coretema-primary-gradient);
    color: white;
    box-shadow: var(--sf-shadow-light);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--sf-shadow-medium);
    background: linear-gradient(135deg, var(--sf-primary-dark), var(--sf-primary-color));
}

.btn-secondary {
    background: var(--sf-background-light);
    color: var(--sf-text-dark);
    border: 2px solid var(--sf-border-color);
}

.btn-secondary:hover {
    background: var(--sf-primary-color);
    color: white;
    border-color: var(--sf-primary-color);
}

/* TRANSFER SECTION */
.transfer-section {
    background: var(--sf-background-light);
    border-radius: var(--sf-radius-medium);
    padding: var(--sf-spacing-lg);
    margin-top: var(--sf-spacing-lg);
    text-align: center;
    display: none;
}

.transfer-title {
    color: var(--sf-text-dark);
    margin-bottom: var(--sf-spacing-md);
    font-size: var(--sf-text-lg);
}

.transfer-input-group {
    display: flex;
    gap: var(--sf-spacing-md);
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
}

.transfer-input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid var(--sf-border-color);
    border-radius: var(--sf-radius-small);
    background: var(--sf-background-white);
    color: var(--sf-text-dark);
}

/* AI SECTION - MOBİL UYUMLU */
.ai-section {
background: rgba(var(--coretema-primary-rgb), 0.04); /* %2 opaklık */
    border-radius: var(--sf-radius-xl);
    padding: var(--sf-spacing-xl);
    border: 1px solid var(--coretema-primary);
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.ai-header {
    text-align: center;
    margin-bottom: var(--sf-spacing-xl);
}

.ai-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--sf-spacing-md);
    background: var(--coretema-primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 8px 15px -3px rgba(var(--coretema-primary-rgb), 0.2);
}

.ai-title {
    font-size: var(--sf-text-3xl);
    font-weight: 700;
    color: var(--sf-text-dark);
    margin-bottom: var(--sf-spacing-sm);
}

.ai-subtitle {
    font-size: var(--sf-text-lg);
    color: var(--sf-text-light);
}

.ai-form-grid {
    display: grid;
    gap: var(--sf-spacing-lg);
    width: 100%;
}

.ai-input-group {
    display: flex;
    flex-direction: column;
    gap: var(--sf-spacing-sm);
    width: 100%;
}

.ai-label {
    display: flex;
    align-items: center;
    gap: var(--sf-spacing-sm);
    font-weight: 600;
    color: var(--sf-text-dark);
    font-size: var(--sf-text-sm);
}

.ai-textarea,
.ai-input,
.ai-select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--sf-border-color);
    border-radius: var(--sf-radius-medium);
    background: var(--sf-background-white);
    color: var(--sf-text-light);
    font-size: var(--sf-text-base);
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.ai-textarea:focus,
.ai-input:focus,
.ai-select:focus {
    outline: none;
    border-color: var(--sf-primary-color);
    box-shadow: 0 8px 15px -3px rgba(var(--coretema-primary-rgb), 0.2);
}

.ai-selects-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sf-spacing-lg);
    width: 100%;
}

/* KEYWORDS - MOBİL UYUMLU */
.keywords-input-wrapper {
    display: flex;
    gap: var(--sf-spacing-sm);
    width: 100%;
}

.keywords-container {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sf-spacing-sm);
    margin-top: var(--sf-spacing-sm);
    width: 100%;
}

.keyword-tag {
    display: inline-flex;
    align-items: center;
    gap: var(--sf-spacing-xs);
    background: var(--sf-primary-color);
    color: white;
    padding: 6px 12px;
    border-radius: var(--sf-radius-medium);
    font-size: var(--sf-text-sm);
    font-weight: 500;
}

.keyword-remove {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 2px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.keyword-remove:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* AI GENERATE BUTTON */
.ai-generate-btn {
    background: var(--coretema-primary-gradient);
    color: white;
    border: none;
    padding: 16px 24px;
    border-radius: var(--sf-radius-medium);
    font-size: var(--sf-text-lg);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--sf-spacing-sm);
    width: 100%;
    margin-top: var(--sf-spacing-lg);
    box-shadow: 0 8px 15px -3px rgba(var(--coretema-primary-rgb), 0.2);
}

.ai-generate-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.ai-generate-btn:not(:disabled):hover {
    background: linear-gradient(135deg, var(--sf-primary-dark), var(--sf-primary-color));
    transform: translateY(-2px);
    box-shadow: var(--sf-shadow-medium);
}

/* AI RESULTS */
.ai-results {
    margin-top: var(--sf-spacing-xl);
    background: var(--sf-background-white);
    border-radius: var(--sf-radius-medium);
    padding: var(--sf-spacing-lg);
    border: 2px solid var(--sf-border-color);
    display: none;
    width: 100%;
}

.ai-results.show {
    display: block;
    animation: fadeInUp 0.5s ease-out;
}

.ai-results-title {
    display: flex;
    align-items: center;
    gap: var(--sf-spacing-sm);
    font-size: var(--sf-text-xl);
    font-weight: 600;
    color: var(--sf-text-dark);
    margin-bottom: var(--sf-spacing-lg);
}

.ai-suggestions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--sf-spacing-md);
    margin-bottom: var(--sf-spacing-lg);
    width: 100%;
}

.ai-suggestion {
    background: var(--sf-background-light);
    border: 2px solid var(--sf-border-color);
    border-radius: var(--sf-radius-medium);
    padding: var(--sf-spacing-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    width: 100%;
}

.ai-suggestion:hover {
    border-color: var(--sf-primary-color);
    box-shadow: var(--sf-shadow-light);
}

.ai-suggestion-content {
    display: flex;
    align-items: center;
    gap: var(--sf-spacing-sm);
    flex: 1;
    min-width: 0;
}

.suggestion-domain {
    font-weight: 500;
    color: var(--sf-text-dark);
    word-break: break-all;
}

.suggestion-check-btn {
    background: var(--sf-primary-color);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: var(--sf-radius-small);
    font-size: var(--sf-text-sm);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.suggestion-check-btn:hover {
    background: var(--sf-primary-dark);
}

/* TLD SECTION */
.genelbaslik {
    text-align: center;
}

.genelbaslik-rozet {
    align-items: center;
}



/* TLD CAROUSEL */
.tld-section {
    padding: var(--sf-spacing-2xl) 0;
}

.tld-carousel-container {
    position: relative;
    overflow: hidden;
    margin: 0 -20px;
}

.tld-carousel {
    display: flex;
    gap: var(--sf-spacing-lg);
    transition: transform 0.5s ease;
    padding: 0 20px;
}

.tld-card {
    flex: 0 0 280px;
    background: var(--sf-background-white);
    border-radius: var(--sf-radius-large);
    padding: var(--sf-spacing-lg);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.tld-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--sf-primary-color), var(--sf-accent-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.tld-card:hover {
    transform: translateY(-8px);
    border-color: var(--sf-primary-color);
    box-shadow: var(--sf-shadow-medium);
}

.tld-card:hover::before {
    transform: scaleX(1);
}

.tld-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--sf-spacing-sm);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: var(--sf-text-sm);
    font-weight: 600;
    margin-bottom: var(--sf-spacing-lg);
}

.tld-badge.promo {
    color: rgb(255, 29, 29);
    background: rgba(255, 29, 29, 0.15);

}

.tld-badge.popular {
    color: rgb(54 121 241);
    background: rgb(29 66 255 / 15%);
}

.tld-badge.trending {
    color: rgb(235 144 9);
    background: rgb(255 166 29 / 15%);

}

.tld-badge.premium {
    color: rgb(131 74 241);
    background: rgb(135 29 255 / 15%);
}

.tld-info {
    display: flex;
    align-items: center;
    gap: var(--sf-spacing-md);
    margin-bottom: var(--sf-spacing-lg);
}

.tld-logo {
    width: 60px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: var(--sf-radius-small);
}

.tld-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.tld-name {
    font-size: var(--sf-text-xl);
    font-weight: 700;
    color: var(--sf-text-dark);
}

.tld-description {
    font-size: var(--sf-text-sm);
    color: var(--sf-text-light);
}

.tld-pricing {
    border-top: 1px solid var(--sf-border-color);
    padding-top: var(--sf-spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.original-price {
    text-decoration: line-through;
    color: var(--sf-text-muted);
    font-size: var(--sf-text-sm);
}

.current-price {
    text-align: right;
}

.price-amount {
    font-size: var(--sf-text-xl);
    font-weight: 700;
    color: var(--sf-text-dark);
}

.price-period {
    font-size: var(--sf-text-sm);
    display: block;
}

/* CAROUSEL CONTROLS */
.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--sf-spacing-lg);
    margin-top: var(--sf-spacing-xl);
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border: 2px solid var(--sf-border-color);
    background: var(--sf-background-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--sf-text-light);
}

.carousel-btn:hover {
    background: var(--sf-primary-color);
    border-color: var(--sf-primary-color);
    color: white;
}

.carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.carousel-indicators {
    display: flex;
    gap: var(--sf-spacing-sm);
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--sf-border-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--sf-primary-color);
}

/* RESULTS SECTION */
.domain-results {
    padding: var(--sf-spacing-2xl) 0;
    display: none;
}

.domain-results.show {
    display: block;
    animation: fadeInUp 0.6s ease-out;
}

.results-status {
    text-align: center;
    margin-bottom: var(--sf-spacing-xl);
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.status-message {
    font-size: var(--sf-text-xl);
    font-weight: 600;
}

.status-available {
    color: var(--sf-success-color);
}

.status-unavailable {
    color: var(--sf-error-color);
}

.loading-spinner {
    display: inline-flex;
    gap: var(--sf-spacing-xs);
}

.spinner-dot {
    width: 12px;
    height: 12px;
    background: var(--sf-primary-color);
    border-radius: 50%;
    animation: bounce 1.4s ease-in-out infinite both;
}

.spinner-dot:nth-child(1) { animation-delay: -0.32s; }
.spinner-dot:nth-child(2) { animation-delay: -0.16s; }

@keyframes bounce {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

@keyframes fadeInUp {from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* RESULTS TABLE */
.results-table {
    background: var(--sf-background-white);
    border-radius: var(--sf-radius-large);
    overflow: hidden;
    box-shadow: var(--sf-shadow-light);
    border: 1px solid var(--sf-border-color);
}

.table-header {
    background: var(--sf-background-light);
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 100px;
    gap: var(--sf-spacing-md);
    padding: var(--sf-spacing-lg);
    font-weight: 600;
    color: var(--sf-text-dark);
    border-bottom: 1px solid var(--sf-border-color);
}

.table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 100px;
    gap: var(--sf-spacing-md);
    padding: var(--sf-spacing-lg);
    border-bottom: 1px solid var(--sf-border-color);
    transition: all 0.2s ease;
    align-items: center;
}

.table-row:last-child {
    border-bottom: none;
}

.table-row:hover {
    background: var(--sf-background-light);
}

.domain-name {
    font-weight: 600;
    color: var(--sf-text-dark);
    font-size: var(--sf-text-lg);
}

.domain-status {
    display: flex;
    align-items: center;
    gap: var(--sf-spacing-sm);
}

.status-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.status-indicator.available {
    background: var(--sf-success-color);
}

.status-indicator.unavailable {
    background: var(--sf-error-color);
}

.status-indicator.premium {
    background: var(--sf-warning-color);
}

/* CHECKBOX STYLES */
.custom-checkbox {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid var(--sf-border-color);
    border-radius: var(--sf-radius-small);
    background: var(--sf-background-white);
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.custom-checkbox:checked {
    background: var(--sf-primary-color);
    border-color: var(--sf-primary-color);
}

.custom-checkbox:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

/* CONTINUE BUTTON */
.continue-btn {
    background: var(--coretema-primary-gradient);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: var(--sf-radius-medium);
    font-size: var(--sf-text-lg);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: var(--sf-spacing-sm);
    margin: var(--sf-spacing-xl) auto 0;
}

.continue-btn:not(:disabled):hover {
    background: linear-gradient(135deg, var(--sf-primary-dark), var(--sf-primary-color));
    transform: translateY(-2px);
    box-shadow: var(--sf-shadow-medium);
}

.continue-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* ACTION BUTTONS */
.action-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--sf-spacing-sm);
    padding: 5px px;
    border-radius: var(--sf-radius-small);
    text-decoration: none;
    font-size: var(--sf-text-sm);
    font-weight: 500;
    transition: all 0.2s ease;
    margin: 0 0.25rem;
    border: none;
    cursor: pointer;
}

.transfer-btn {
    background: var(--sf-info-color);
    color: white;
}

.whois-btn {
    background: var(--sf-text-muted);
    color: white;
}

.action-btn:hover {
    transform: translateY(-1px);
    box-shadow: var(--sf-shadow-light);
}

.section-title {
    font-size: var(--sf-text-4xl);
    font-weight: 700;
    color: var(--sf-text-dark);
    margin-bottom: var(--sf-spacing-md);
}

.section-subtitle {
    font-size: var(--sf-text-lg);
    color: var(--sf-text-light);
    max-width: 600px;
    margin: 0 auto;
}

.pricing-table {
    background: var(--sf-background-white);
    border-radius: var(--sf-radius-large);
    overflow: hidden;
    box-shadow: var(--sf-shadow-light);
}

.pricing-table table {
    width: 100%;
    border-collapse: collapse;
}

.pricing-table th {
    background: var(--sf-primary-color);
    color: white;
    padding: var(--sf-spacing-lg);
    text-align: left;
    font-weight: 600;
}

.pricing-table td {
    padding: var(--sf-spacing-md) var(--sf-spacing-lg);
    border-bottom: 1px solid var(--sf-border-color);
}

.pricing-table tr:hover {
    background: var(--sf-background-light);
}

.price-highlight {
    font-weight: 700;
    color: var(--sf-success-color);
    font-size: var(--sf-text-lg);
}

.price-old {
    text-decoration: line-through;
    color: var(--sf-text-muted);
    font-size: var(--sf-text-sm);
    display: block;
    margin-bottom: var(--sf-spacing-xs);
}


/* NOTIFICATION STYLES */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    padding: 16px 24px;
    border-radius: var(--sf-radius-medium);
    color: white;
    font-weight: 500;
    box-shadow: var(--sf-shadow-heavy);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    max-width: 350px;
    word-wrap: break-word;
}

.notification.show {
    transform: translateX(0);
}

.notification.success {
    background: var(--sf-success-color);
}

.notification.error {
    background: var(--sf-error-color);
}

.notification.warning {
    background: var(--sf-warning-color);
}

.notification.info {
    background: var(--sf-info-color);
}

/* RESPONSIVE DESIGN */
@media (max-width: 1200px) {
    .tld-card {
        flex: 0 0 calc(33.333% - var(--sf-spacing-md));
    }
    
    .ai-suggestions {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--sf-spacing-sm);
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .search-container {
        margin: 0 var(--sf-spacing-sm) var(--sf-spacing-xl);
        padding: var(--sf-spacing-lg);
    }
    
    .search-input-group {
        flex-direction: column;
    }
    
    .search-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .transfer-input-group {
        flex-direction: column;
    }
    
    .ai-selects-grid {
        grid-template-columns: 1fr;
    }
    
    .keywords-input-wrapper {
        flex-direction: column;
    }
    
    .ai-suggestions {
        grid-template-columns: 1fr;
    }
    
    .ai-suggestion {
        flex-direction: column;
        gap: var(--sf-spacing-md);
        text-align: center;
    }
    
    .ai-suggestion-content {
        justify-content: center;
    }
    
    .tld-carousel {
        padding: 0 var(--sf-spacing-sm);
    }
    
    .tld-card {
        flex: 0 0 280px;
    }
    
    .table-header,
    .table-row {
        grid-template-columns: 1fr;
        gap: var(--sf-spacing-sm);
        padding: var(--sf-spacing-md);
    }
    
    .table-header {
        display: none;
    }
    
    .table-row {
        border: 1px solid var(--sf-border-color);
        border-radius: var(--sf-radius-medium);
        margin-bottom: var(--sf-spacing-md);
    }
    
    .table-row > div {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: var(--sf-spacing-sm) 0;
    }
    
    .table-row > div::before {
        content: attr(data-label);
        font-weight: 600;
        color: var(--sf-text-dark);
    }
    
    .pricing-table {
        overflow-x: auto;
    }
    
    .genelbaslik-ana-baslik {
        font-size: var(--sf-text-3xl);
    }
    
    .section-title {
        font-size: var(--sf-text-3xl);
    }
}

@media (max-width: 480px) {
    .ai-section {
        padding: var(--sf-spacing-md);
    }
    
    .ai-icon {
        width: 60px;
        height: 60px;
    }
    
    .ai-title {
        font-size: var(--sf-text-2xl);
    }
    
    .search-container {
        padding: var(--sf-spacing-md);
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .tld-card {
        flex: 0 0 250px;
    }
}

/* LOADING STATES */
.btn-loading {
    opacity: 0.7;
    cursor: not-allowed;
    pointer-events: none;
}

.btn-loading::after {
    content: '';
    width: 16px;
    height: 16px;
    margin-left: var(--sf-spacing-sm);
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ACCESSIBILITY */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* FOCUS STATES */
.btn:focus-visible,
.search-tab:focus-visible,
.custom-checkbox:focus-visible,
.domain-input:focus-visible,
.transfer-input:focus-visible,
.ai-textarea:focus-visible,
.ai-input:focus-visible,
.ai-select:focus-visible {
    outline: 2px solid var(--sf-primary-color);
    outline-offset: 2px;
}

/* HIGH CONTRAST MODE */
@media (prefers-contrast: high) {
    :root {
        --sf-border-color: #000000;
        --sf-text-light: #000000;
        --sf-background-light: #ffffff;
    }
    
    [data-theme="dark"] {
        --sf-border-color: #ffffff;
        --sf-text-light: #ffffff;
        --sf-background-light: #000000;
    }
}

/* REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* PRINT STYLES */
@media print {
    .search-container,
    .carousel-controls,
    .btn,
    .action-btn,
    .notification {
        display: none !important;
    }
    
    .pricing-table,
    .faq-section {
        break-inside: avoid;
    }
} 

        /* TEMEL STİLLER VE RESETLEME */
        :root {
            --sf-primary-color: var(--coretema-primary);
            --sf-secondary-color: var(--sf-primary-color)
            --sf-accent-color: #FF9F1C;
            --sf-success-color: #8BC34A;
            --sf-error-color: #F44336;
            --sf-warning-color: #FF9800;
            --sf-text-dark: #183B56;
            --sf-text-light: #5A7184;
            --sf-text-muted: #A1ACD0;
            --sf-background-light: #F3F6FE;
            --sf-background-white: #FFFFFF;
            --sf-border-color: #E2EEFE;
            --sf-body-bg: #FAFCFF;
            --sf-shadow-light: 0 4px 20px rgba(0, 0, 0, 0.08);
            --sf-shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
            --sf-shadow-heavy: 0 15px 40px rgba(0, 0, 0, 0.15);
            --sf-radius-small: 8px;
            --sf-radius-medium: 12px;
            --sf-radius-large: 20px;
            --sf-radius-xl: 24px;
        }

        [data-theme="dark"] {
            --sf-primary-color: var(--coretema-primary);
            --sf-secondary-color: var(--sf-primary-color)
            --sf-accent-color: #FF9F1C;
            --sf-text-dark: #E8F4FD;
            --sf-text-light: #B8CDD9;
            --sf-text-muted: #6B7C93;
            --sf-background-light: #1E293B;
            --sf-background-white: #ffffff0a;
            --sf-border-color: #334155;
            --sf-body-bg: #0B1426;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 5px;
        }

        /* HERO BÖLÜMÜ */
        .domain-hero {
            padding: 10px;
            position: relative;
            overflow: hidden;
        }

        .hero-title {
            font-weight: 700;
            color: var(--sf-text-dark);
            margin-bottom: 1.5rem;
            line-height: 2.1;
        }



        /* SEARCH TABS */
        .search-tabs {
            display: flex;
            background: var(--sf-background-light);
            border-radius: var(--sf-radius-medium);
            padding: 4px;
            margin-bottom: 2rem;
        }

        .search-tab {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 12px 20px;
            border: none;
            background: transparent;
            color: var(--sf-text-light);
            border-radius: 50px;;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 500;
            font-size: 1rem;
        }

        .search-tab.active {
            background: var(--sf-primary-color);
            color: white;
            box-shadow: var(--sf-shadow-light);
        }

        .search-tab:hover:not(.active) {
            background: var(--sf-border-color);
        }

        /* SEARCH FORMS */
        .search-form {
            transition: all 0.3s ease;
        }

        .search-form.hidden {
            display: none;
        }

        .search-input-group {
            display: flex;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .search-icon {
            flex-shrink: 0;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--sf-accent-color), #FF7043);
            border-radius: var(--sf-radius-medium);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }

        .search-buttons {
            display: flex;
            gap: 1rem;
        }

        .btn {
            height: 60px;
            border: none;
            border-radius: var(--sf-radius-medium);
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            text-decoration: none;
            white-space: nowrap;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--sf-primary-color), var(--coretema-primary));
            color: white;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: var(--sf-shadow-medium);
        }

        .btn-secondary {
            background: var(--sf-background-light);
            color: var(--sf-text-dark);
            border: 2px solid var(--sf-border-color);
        }

        .btn-secondary:hover {
            background: var(--sf-secondary-color);
            color: white;
            border-color: var(--sf-secondary-color);
        }

        /* TRANSFER KODU BÖLÜMÜ */
        .transfer-section {
            background: var(--sf-background-light);
            border-radius: var(--sf-radius-medium);
            padding: 1.5rem;
            margin-top: 1.5rem;
            text-align: center;
            display: none;
        }

        .transfer-title {
            color: var(--sf-text-dark);
            margin-bottom: 1rem;
            font-size: 1.125rem;
        }

        .transfer-input-group {
            display: flex;
            gap: 1rem;
            justify-content: center;
            align-items: center;
            max-width: 500px;
            margin: 0 auto;
        }

        .transfer-input {
            flex: 1;
            height: 50px;
            border: 2px solid var(--sf-border-color);
            border-radius: var(--sf-radius-small);
            padding: 0 1rem;
            font-size: 1rem;
            background: var(--sf-background-white);
        }

        /* AI SECTION */
        .ai-section {
            background: radial-gradient(circle, rgba(var(--coretema-primary-rgb), 0.15) 0%, transparent 70%);
            border-radius: var(--sf-radius-xl);
            padding: 2rem;
            border: 1px solid var(--sf-primary-color);
            margin-bottom: 2rem;
        }

        .ai-header {
            text-align: center;
            margin-bottom: 2rem;
        }

        .ai-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 1rem;
            background: linear-gradient(135deg, var(--sf-primary-color), var(--coretema-primary));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            box-shadow: var(--sf-shadow-light);
        }

        .ai-title {
            font-size: 2rem;
            font-weight: 700;
            color: var(--sf-text-dark);
            margin-bottom: 0.5rem;
        }

        .ai-subtitle {
            font-size: 1.125rem;
            color: var(--sf-text-light);
        }

        .ai-form-grid {
            display: grid;
            gap: 1.5rem;
        }

        .ai-input-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .ai-label {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: 600;
            color: var(--sf-text-dark);
            font-size: 0.875rem;
        }

        .ai-textarea,
        .ai-input,
        .ai-select {
            padding: 12px 16px;
            border: 2px solid var(--sf-border-color);
            border-radius: var(--sf-radius-medium);
            background: var(--sf-background-white);
            color: var(--sf-text-light);
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .ai-textarea:focus,
        .ai-input:focus,
        .ai-select:focus {
            outline: none;
            border-color: var(--sf-primary-color);
            box-shadow: 0 0 0 4px rgba(129, 214, 87, 0.1);
        }

        .ai-selects-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }

        .keywords-input-wrapper {
            display: flex;
            gap: 0.5rem;
        }

        .keywords-container {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-top: 0.5rem;
        }

        .keyword-tag {
            display: inline-flex;
            align-items: center;
            gap: 0.25rem;
            background: var(--sf-primary-color);
            color: white;
            padding: 6px 12px;
            border-radius: var(--sf-radius-medium);
            font-size: 0.875rem;
            font-weight: 500;
        }

        .keyword-remove {
            background: none;
            border: none;
            color: white;
            cursor: pointer;
            padding: 2px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
        }

        .keyword-remove:hover {
            background: rgba(255, 255, 255, 0.2);
        }

        .ai-generate-btn {
            background: linear-gradient(135deg, var(--sf-primary-color);
            color: white;
            border: none;
            padding: 16px 24px;
            border-radius: var(--sf-radius-medium);
            font-size: 1.125rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            width: 100%;
            margin-top: 1.5rem;
            box-shadow: var(--sf-shadow-light);
        }

        .ai-generate-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        .ai-generate-btn:not(:disabled):hover {
            transform: translateY(-2px);
            box-shadow: var(--sf-shadow-medium);
        }

        .ai-results {
            margin-top: 2rem;
            background: var(--sf-background-white);
            border-radius: var(--sf-radius-medium);
            padding: 1.5rem;
            border: 2px solid var(--sf-border-color);
            display: none;
        }

        .ai-results.show {
            display: block;
            animation: fadeInUp 0.5s ease-out;
        }

        .ai-results-title {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--sf-text-dark);
            margin-bottom: 1.5rem;
        }

        .ai-suggestions {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .ai-suggestion {
            background: var(--sf-background-light);
            border: 2px solid var(--sf-border-color);
            border-radius: var(--sf-radius-medium);
            padding: 1rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            transition: all 0.3s ease;
        }

        .ai-suggestion:hover {
            border-color: var(--sf-primary-color);
            box-shadow: var(--sf-shadow-light);
        }

        .ai-suggestion-content {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            flex: 1;
            min-width: 0;
        }

        .suggestion-domain {
            font-weight: 500;
            color: var(--sf-text-dark);
            word-break: break-all;
        }

        .suggestion-check-btn {
            background: var(--sf-primary-color);
            color: white;
            border: none;
            padding: 8px 16px;
            border-radius: var(--sf-radius-small);
            font-size: 0.875rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .suggestion-check-btn:hover {
            background: #6BB946;
        }

        /* TLD SECTION */
        .tld-section {
            padding: 4rem 0;
        }


        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--sf-text-dark);
            margin-bottom: 1rem;
        }

        .section-subtitle {
            font-size: 1.125rem;
            color: var(--sf-text-light);
            max-width: 600px;
            margin: 0 auto;
        }

        .tld-carousel-container {
            position: relative;
            overflow: hidden;
            margin: 0 -20px;
        }

        .tld-carousel {
            display: flex;
            gap: 1.5rem;
            transition: transform 0.5s ease;
            padding: 0 20px;
        }

        .tld-card {
            flex: 0 0 280px;
            background: var(--sf-background-white);
            border-radius: var(--sf-radius-large);
            padding: 1.5rem;
            border: 2px solid transparent;
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .tld-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--sf-primary-color), var(--sf-secondary-color));
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .tld-card:hover {
            transform: translateY(-8px);
            border-color: var(--sf-primary-color);
            box-shadow: var(--sf-shadow-medium);
        }

        .tld-card:hover::before {
            transform: scaleX(1);
        }

        .tld-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.875rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
        }

        .tld-badge.promo {
            background: linear-gradient(135deg, var(--sf-success-color), #7CB342);
            color: white;
        }

        .tld-badge.popular {
            background: linear-gradient(135deg, var(--sf-accent-color), #FF7043);
            color: white;
        }

        .tld-info {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .tld-logo {
            width: 60px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--sf-background-light);
            border-radius: var(--sf-radius-small);
        }

        .tld-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }

        .tld-name {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--sf-text-dark);
        }

        .tld-description {
            font-size: 0.875rem;
            color: var(--sf-text-light);
        }

        .tld-pricing {
            border-top: 1px solid var(--sf-border-color);
            padding-top: 1rem;
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
        }

        .original-price {
            text-decoration: line-through;
            color: var(--sf-text-muted);
            font-size: 0.875rem;
        }

        .current-price {
            text-align: right;
        }

        .price-amount {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--sf-text-dark);
        }

        .price-period {
            font-size: 0.875rem;
            color: var(--sf-text-light);
            display: block;
        }

        /* CAROUSEL CONTROLS */
        .carousel-controls {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1rem;
            margin-top: 2rem;
        }

        .carousel-btn {
            width: 50px;
            height: 50px;
            border: 2px solid var(--sf-border-color);
            background: var(--sf-background-white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            color: var(--sf-text-light);
        }

        .carousel-btn:hover {
            background: var(--sf-primary-color);
            border-color: var(--sf-primary-color);
            color: white;
        }

        .carousel-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        .carousel-indicators {
            display: flex;
            gap: 0.5rem;
        }

        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--sf-border-color);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .indicator.active {
            background: var(--sf-primary-color);
        }

        /* RESULTS SECTION */
        .domain-results {
            padding: 2rem 0;
            display: none;
        }

        .domain-results.show {
            display: block;
            animation: fadeInUp 0.6s ease-out;
        }

        .results-status {
            text-align: center;
            margin-bottom: 2rem;
            min-height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .status-message {
            font-size: 1.5rem;
            font-weight: 600;
        }

        .status-available {
            color: var(--sf-success-color);
        }

        .status-unavailable {
            color: var(--sf-error-color);
        }

        .loading-spinner {
            display: inline-flex;
            gap: 0.25rem;
        }

        .spinner-dot {
            width: 12px;
            height: 12px;
            background: var(--sf-primary-color);
            border-radius: 50%;
            animation: bounce 1.4s ease-in-out infinite both;
        }

        .spinner-dot:nth-child(1) { animation-delay: -0.32s; }
        .spinner-dot:nth-child(2) { animation-delay: -0.16s; }

        @keyframes bounce {
            0%, 80%, 100% {
                transform: scale(0);
            }
            40% {
                transform: scale(1);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .results-table {
            background: var(--sf-background-white);
            border-radius: var(--sf-radius-large);
            overflow: hidden;
            box-shadow: var(--sf-shadow-light);
            border: 1px solid var(--sf-border-color);
        }

        .table-header {
            background: var(--sf-background-light);
            display: grid;
            grid-template-columns: 2fr 1fr 1.5fr 100px;
            gap: 1rem;
            padding: 1.5rem;
            font-weight: 600;
            color: var(--sf-text-dark);
            border-bottom: 1px solid var(--sf-border-color);
        }

        .table-row {
            display: grid;
            grid-template-columns: 2fr 1fr 1.5fr 100px;
            gap: 1rem;
            padding: 1.5rem;
            border-bottom: 1px solid var(--sf-border-color);
            transition: all 0.2s ease;
            align-items: center;
        }

        .table-row:last-child {
            border-bottom: none;
        }

        .table-row:hover {
            background: var(--sf-background-light);
        }

        .domain-name {
            font-weight: 600;
            color: var(--sf-text-dark);
            font-size: 1.125rem;
        }

        .domain-status {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .status-indicator {
            width: 8px;
            height: 8px;
            border-radius: 50%;
        }

        .status-indicator.available {
            background: var(--sf-success-color);
        }

        .status-indicator.unavailable {
            background: var(--sf-error-color);
        }

        .status-indicator.premium {
            background: var(--sf-warning-color);
        }

        /* CHECKBOX STİLLERİ */
        .custom-checkbox {
            appearance: none;
            width: 24px;
            height: 24px;
            border: 2px solid var(--sf-border-color);
            border-radius: var(--sf-radius-small);
            background: var(--sf-background-white);
            cursor: pointer;
            transition: all 0.2s ease;
            position: relative;
        }

        .custom-checkbox:checked {
            background: var(--sf-primary-color);
            border-color: var(--sf-primary-color);
        }

        .custom-checkbox:checked::after {
            content: '✓';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: white;
            font-size: 14px;
            font-weight: bold;
        }

        /* CONTINUE BUTTON */
        .continue-btn {
            background: linear-gradient(135deg, var(--sf-primary-color), #6BB946);
            color: white;
            padding: 1rem 2rem;
            border-radius: var(--sf-radius-medium);
            border: none;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            margin: 2rem auto 0;
        }

        .continue-btn:hover {
            background: var(--sf-secondary-color);
            transform: translateY(-2px);
            box-shadow: var(--sf-shadow-medium);
        }

        .continue-btn:disabled {
            background: var(--sf-text-muted);
            opacity: 0.5;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }

        /* ACTION BUTTONS */
        .action-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            border-radius: var(--sf-radius-small);
            text-decoration: none;
            font-size: 0.875rem;
            font-weight: 500;
            transition: all 0.2s ease;
            margin: 0 0.25rem;
        }

        .transfer-btn {
            background: var(--sf-secondary-color);
            color: white;
        }

        .whois-btn {
            background: var(--sf-text-muted);
            color: white;
        }

        .action-btn:hover {
            transform: translateY(-1px);
            box-shadow: var(--sf-shadow-light);
        }

        /* MOBİL UYUMLULUK */
        @media (max-width: 768px) {
            .search-input-group {
                flex-direction: column;
                gap: 1rem;
            }

            .search-icon {
                display: none;
            }

            .search-buttons {
                flex-direction: column;
                width: 100%;
            }

            .btn {
                width: 100%;
            }

            .transfer-input-group {
                flex-direction: column;
            }

            .ai-selects-grid {
                grid-template-columns: 1fr;
            }

            .keywords-input-wrapper {
                flex-direction: column;
            }

            .ai-suggestions {
                grid-template-columns: 1fr;
            }

            .ai-suggestion {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }

            .ai-suggestion-content {
                justify-content: center;
            }

            .tld-carousel {
                padding: 0 10px;
            }

            .tld-card {
                flex: 0 0 250px;
            }

            .table-header,
            .table-row {
                grid-template-columns: 1fr;
                gap: 0.5rem;
                padding: 1rem;
            }

            .table-header {
                display: none;
            }

            .table-row {
                border: 1px solid var(--sf-border-color);
                border-radius: var(--sf-radius-medium);
                margin-bottom: 1rem;
                position: relative;
            }

            .table-row > div {
                display: flex;
                justify-content: space-between;
                align-items: center;
                padding: 0.5rem 0;
            }

            .table-row > div::before {
                content: attr(data-label);
                font-weight: 600;
                color: var(--sf-text-dark);
            }

            .hero-title {
                font-size: 2rem;
            }

            .section-title {
                font-size: 2rem;
            }
        }

        /* PRICING SECTION */
        .pricing-section {
            padding: 4rem 0;
            background: var(--sf-background-light);
        }

        .pricing-table {
            background: var(--sf-background-white);
            border-radius: var(--sf-radius-large);
            overflow: hidden;
            box-shadow: var(--sf-shadow-light);
        }

        .pricing-table table {
            width: 100%;
            border-collapse: collapse;
        }

        .pricing-table th {
            background: var(--sf-primary-color);
            color: white;
            padding: 1.5rem;
            text-align: left;
            font-weight: 600;
        }

        .pricing-table td {
            padding: 1.25rem 1.5rem;
            border-bottom: 1px solid var(--sf-border-color);
        }

        .pricing-table tr:hover {
            background: var(--sf-background-light);
        }

        .price-highlight {
            font-weight: 700;
            color: var(--sf-success-color);
            font-size: 1.125rem;
        }

        .price-old {
            text-decoration: line-through;
            color: var(--sf-text-muted);
            font-size: 0.875rem;
            display: block;
            margin-bottom: 0.25rem;
        }

        /* FORM VALIDATION */
        .form-error {
            border-color: var(--sf-error-color) !important;
            box-shadow: 0 0 0 4px rgba(244, 67, 54, 0.1) !important;
        }

        .error-message {
            color: var(--sf-error-color);
            font-size: 0.875rem;
            margin-top: 0.5rem;
        }

        /* LOADING STATES */
        .btn-loading {
            opacity: 0.7;
            cursor: not-allowed;
            pointer-events: none;
        }

        /* ICONS */
        .btn-icon {
            width: 20px;
            height: 20px;
            fill: currentColor;
        }

        /* UTILITIES */
        .text-center { text-align: center; }
        .mb-1 { margin-bottom: 0.25rem; }
        .mb-2 { margin-bottom: 0.5rem; }
        .mb-3 { margin-bottom: 1rem; }
        .mb-4 { margin-bottom: 1.5rem; }
        .mt-1 { margin-top: 0.25rem; }
        .mt-2 { margin-top: 0.5rem; }
        .mt-3 { margin-top: 1rem; }
        .mt-4 { margin-top: 1.5rem; }

        /* THEME TOGGLE */
        .theme-toggle {
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 1000;
            background: var(--sf-background-white);
            border: 2px solid var(--sf-border-color);
            border-radius: 50%;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: var(--sf-shadow-light);
        }

        .theme-toggle:hover {
            background: var(--sf-primary-color);
            border-color: var(--sf-primary-color);
            color: white;
        }

        /* NOTIFICATION */
        .notification {
            position: fixed;
            top: 20px;
            right: 80px;
            z-index: 1000;
            padding: 1rem 1.5rem;
            border-radius: var(--sf-radius-medium);
            color: white;
            font-weight: 500;
            box-shadow: var(--sf-shadow-heavy);
            transform: translateX(100%);
            transition: transform 0.3s ease;
            max-width: 350px;
        }

        .notification.show {
            transform: translateX(0);
        }

        .notification.success {
            background: var(--sf-success-color);
        }

        .notification.error {
            background: var(--sf-error-color);
        }

        .notification.warning {
            background: var(--sf-warning-color);
        }

        .notification.info {
            background: var(--sf-secondary-color);
        }

        /* ACCESSIBILITY */
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }

        /* FOCUS STATES */
        .btn:focus-visible,
        .search-tab:focus-visible,
        .custom-checkbox:focus-visible,
        .domain-input:focus-visible,
        .transfer-input:focus-visible,
        .ai-textarea:focus-visible,
        .ai-input:focus-visible,
        .ai-select:focus-visible {
            outline: 2px solid var(--sf-primary-color);
            outline-offset: 2px;
        }

        /* ADDITIONAL MOBILE OPTIMIZATIONS */
        @media (max-width: 480px) {
            .ai-section {
                padding: 1rem;
            }
            
            .ai-icon {
                width: 60px;
                height: 60px;
            }
            
            .ai-title {
                font-size: 1.5rem;
            }
            
            .search-container {
                padding: 1rem;
            }
            
            .hero-title {
                font-size: 1.75rem;
            }
            
            .tld-card {
                flex: 0 0 220px;
            }
            
            .pricing-table {
                overflow-x: auto;
            }
        }

        /* HIGH CONTRAST MODE */
        @media (prefers-contrast: high) {
            :root {
                --sf-border-color: #000000;
                --sf-text-light: #000000;
                --sf-background-light: #ffffff;
            }
            
            [data-theme="dark"] {
                --sf-border-color: #ffffff;
                --sf-text-light: #ffffff;
                --sf-background-light: #000000;
            }
        }

        /* REDUCED MOTION */
        @media (prefers-reduced-motion: reduce) {
            * {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }

        /* PRINT STYLES */
        @media print {
            .search-container,
            .carousel-controls,
            .btn,
            .action-btn,
            .notification,
            .theme-toggle {
                display: none !important;
            }
            
            .pricing-table,
            .faq-section {
                break-inside: avoid;
            }
        
        }
        
/* EKLENEN TEMA TOGGLE SUPPORT - MANUEL */
.theme-toggle-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    background: var(--sf-background-white);
    border: 2px solid var(--sf-border-color);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--sf-transition);
    box-shadow: var(--sf-shadow-medium);
    color: var(--sf-text-dark);
}

.theme-toggle-btn:hover {
    background: var(--sf-primary-color);
    border-color: var(--sf-primary-color);
    color: white;
    transform: scale(1.1);
}

/* TOOLTIP STİLLERİ */
.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: var(--sf-text-dark);
    color: var(--sf-background-white);
    text-align: center;
    border-radius: var(--sf-radius-small);
    padding: 5px 8px;
    position: absolute;
    z-index: 1;
    top: 125%;
    left: 50%;
    margin-left: -60px;
    font-size: var(--sf-text-xs);
    opacity: 0;
    transition: opacity 0.3s;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

/* MODERN SCROLLBAR */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--sf-background-light);
    border-radius: var(--sf-radius-small);
}

::-webkit-scrollbar-thumb {
    background: var(--sf-border-color);
    border-radius: var(--sf-radius-small);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--sf-primary-color);
}

/* ENHANCED ANIMATIONS */
@keyframes slideInFromLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInFromRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInFromTop {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 107, 53, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0);
    }
}

.animate-pulse {
    animation: pulse 2s infinite;
}

.animate-slide-in-left {
    animation: slideInFromLeft 0.6s ease-out;
}

.animate-slide-in-right {
    animation: slideInFromRight 0.6s ease-out;
}

.animate-slide-in-top {
    animation: slideInFromTop 0.6s ease-out;
}

/* GELIŞMIŞ RESPONSIVE DESIGN */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .search-container {
        padding: var(--sf-spacing-md);
        margin: 0 var(--sf-spacing-xs) var(--sf-spacing-xl);
    }
    
    .ai-icon {
        width: 60px;
        height: 60px;
    }
    
    .ai-title {
        font-size: var(--sf-text-2xl);
    }
    
    .tld-card {
        flex: 0 0 220px;
        padding: var(--sf-spacing-md);
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .pricing-table {
        font-size: var(--sf-text-sm);
    }
    
    .pricing-table th,
    .pricing-table td {
        padding: var(--sf-spacing-sm);
    }
}

/* ULTRA WIDE SCREEN SUPPORT */
@media (min-width: 1400px) {
    
    .tld-card {
        flex: 0 0 320px;
    }
    
    .ai-suggestions {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    }
}

/* ENHANCED ACCESSIBILITY */
@media (prefers-reduced-motion: reduce) {
    .tld-carousel {
        scroll-behavior: auto;
    }
    
    .carousel-btn,
    .btn,
    .search-tab,
    .tld-card {
        transition: none;
    }
    
    .loading-spinner .spinner-dot {
        animation: none;
        opacity: 1;
    }
}

/* HIGH CONTRAST MODE IMPROVEMENTS */
@media (prefers-contrast: high) {
    .tld-badge,
    .btn-primary,
    .btn-secondary {
        border: 2px solid currentColor;
    }
    
    .status-indicator {
        border: 1px solid var(--sf-text-dark);
    }
    
    .custom-checkbox {
        border: 2px solid var(--sf-text-dark);
    }
}

/* PRINT OPTIMIZATIONS */
@media print {
    .domain-hero {
        background: none !important;
        color: black !important;
    }
    
    .search-container,
    .carousel-controls,
    .notification,
    .theme-toggle-btn {
        display: none !important;
    }
    
    .tld-card {
        border: 1px solid #000 !important;
        break-inside: avoid;
    }
    
    .pricing-table {
        break-inside: avoid;
    }
    
    .faq-item {
        break-inside: avoid;
    }
    
}

/* LOADING STATES ENHANCEMENT */
.skeleton {
    background: linear-gradient(90deg, var(--sf-background-light) 25%, var(--sf-border-color) 50%, var(--sf-background-light) 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.skeleton-text {
    height: 1rem;
    border-radius: var(--sf-radius-small);
    margin-bottom: var(--sf-spacing-sm);
}

.skeleton-text.short {
    width: 60%;
}

.skeleton-text.medium {
    width: 80%;
}

.skeleton-text.long {
    width: 100%;
}

/* ENHANCED BUTTON STATES */
.btn:active {
    transform: translateY(1px);
}

.btn:focus-visible {
    outline: 2px solid var(--sf-primary-color);
    outline-offset: 2px;
}

.btn[aria-pressed="true"] {
    background: var(--sf-primary-dark);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* ENHANCED FORM VALIDATION */
.form-group {
    position: relative;
    margin-bottom: var(--sf-spacing-lg);
}

.form-label {
    display: block;
    margin-bottom: var(--sf-spacing-sm);
    font-weight: 600;
    color: var(--sf-text-dark);
}

.form-control {
    width: 100%;
    padding: var(--sf-spacing-md);
    border: 2px solid var(--sf-border-color);
    border-radius: var(--sf-radius-medium);
    background: var(--sf-background-white);
    color: var(--sf-text-dark);
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--sf-primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-control.is-valid {
    border-color: var(--sf-success-color);
}

.form-control.is-invalid {
    border-color: var(--sf-error-color);
}

.invalid-feedback {
    display: block;
    width: 100%;
    margin-top: var(--sf-spacing-xs);
    font-size: var(--sf-text-sm);
    color: var(--sf-error-color);
}

.valid-feedback {
    display: block;
    width: 100%;
    margin-top: var(--sf-spacing-xs);
    font-size: var(--sf-text-sm);
    color: var(--sf-success-color);
}

/* ENHANCED MODAL SUPPORT */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--sf-background-white);
    border-radius: var(--sf-radius-large);
    padding: var(--sf-spacing-xl);
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal-overlay.show .modal-content {
    transform: scale(1);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--sf-spacing-lg);
    padding-bottom: var(--sf-spacing-md);
    border-bottom: 1px solid var(--sf-border-color);
}

.modal-title {
    font-size: var(--sf-text-xl);
    font-weight: 600;
    color: var(--sf-text-dark);
}

.modal-close {
    background: none;
    border: none;
    font-size: var(--sf-text-xl);
    cursor: pointer;
    color: var(--sf-text-muted);
    transition: color 0.2s ease;
}

.modal-close:hover {
    color: var(--sf-text-dark);
}

/* ENHANCED BADGES */
.badge {
    display: inline-flex;
    align-items: center;
    gap: var(--sf-spacing-xs);
    padding: var(--sf-spacing-xs) var(--sf-spacing-sm);
    border-radius: var(--sf-radius-medium);
    font-size: var(--sf-text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.badge.badge-success {
    background: var(--sf-success-color);
    color: white;
}

.badge.badge-warning {
    background: var(--sf-warning-color);
    color: white;
}

.badge.badge-error {
    background: var(--sf-error-color);
    color: white;
}

.badge.badge-info {
    background: var(--sf-info-color);
    color: white;
}

.badge.badge-light {
    background: var(--sf-background-light);
    color: var(--sf-text-dark);
}

/* FINAL TOUCH UPS */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--sf-spacing-xs); }
.mt-2 { margin-top: var(--sf-spacing-sm); }
.mt-3 { margin-top: var(--sf-spacing-md); }
.mt-4 { margin-top: var(--sf-spacing-lg); }
.mt-5 { margin-top: var(--sf-spacing-xl); }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--sf-spacing-xs); }
.mb-2 { margin-bottom: var(--sf-spacing-sm); }
.mb-3 { margin-bottom: var(--sf-spacing-md); }
.mb-4 { margin-bottom: var(--sf-spacing-lg); }
.mb-5 { margin-bottom: var(--sf-spacing-xl); }

.hidden { display: none !important; }
.visible { display: block !important; }

/* Transition utilities */
.transition-all { transition: all 0.3s ease; }
.transition-colors { transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease; }
.transition-transform { transition: transform 0.3s ease; }

/* Shadow utilities */
.shadow-sm { box-shadow: var(--sf-shadow-light); }
.shadow-md { box-shadow: var(--sf-shadow-medium); }
.shadow-lg { box-shadow: var(--sf-shadow-heavy); }
.shadow-none { box-shadow: none; }

/* Border radius utilities */
.rounded-sm { border-radius: var(--sf-radius-small); }
.rounded-md { border-radius: var(--sf-radius-medium); }
.rounded-lg { border-radius: var(--sf-radius-large); }
.rounded-xl { border-radius: var(--sf-radius-xl); }
.rounded-full { border-radius: 50%; }

/* Position utilities */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }

/* Z-index utilities */
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-30 { z-index: 30; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }

/* Overflow utilities */
.overflow-hidden { overflow: hidden; }
.overflow-auto { overflow: auto; }
.overflow-scroll { overflow: scroll; }


/* Flex utilities */
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }
.flex-nowrap { flex-wrap: nowrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.justify-center { justify-content: center; }
.justify-start { justify-content: flex-start; }
.justify-end { justify-content: flex-end; }
.justify-between { justify-content: space-between; }
.justify-around { justify-content: space-around; }
.flex-1 { flex: 1; }
.flex-auto { flex: auto; }
.flex-none { flex: none; }

/* Grid utilities */
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, 1fr); }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
.gap-1 { gap: var(--sf-spacing-xs); }
.gap-2 { gap: var(--sf-spacing-sm); }
.gap-3 { gap: var(--sf-spacing-md); }
.gap-4 { gap: var(--sf-spacing-lg); }
.gap-5 { gap: var(--sf-spacing-xl); }

/* Width utilities */
.w-full { width: 100%; }
.w-auto { width: auto; }
.w-fit { width: fit-content; }
.w-1\/2 { width: 50%; }
.w-1\/3 { width: 33.333333%; }
.w-2\/3 { width: 66.666667%; }
.w-1\/4 { width: 25%; }
.w-3\/4 { width: 75%; }

/* Height utilities */
.h-full { height: 100%; }
.h-auto { height: auto; }
.h-fit { height: fit-content; }

/* Cursor utilities */
.cursor-pointer { cursor: pointer; }
.cursor-not-allowed { cursor: not-allowed; }
.cursor-default { cursor: default; }

/* User select utilities */
.select-none { user-select: none; }
.select-text { user-select: text; }
.select-all { user-select: all; }

/* Pointer events utilities */
.pointer-events-none { pointer-events: none; }
.pointer-events-auto { pointer-events: auto; }