/* ================== */
/* TEMEL YAPILANDIRMA */
/* ================== */
:root {
  --primary: #4a6bff;
  --secondary: #00c9a7;
  --dark: #1a2a4d;
  --light: #f8f9fa;
  --gray: #6c757d;
  --danger: #ff4757;
  --warning: #ffb142;
  --success: #2ed573;
  --purple: #a55eea;
  --orange: #ff7f50;
  --pink: #fd79a8;
  --teal: #00cec9;
  --card-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  --transition: all 0.3s ease;
  --border-radius: 4px;
  --font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-family);
}

body {
  background-color: #f0f2f5;
  color: #333;
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-bottom: 60px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  width: 100%;
}

.section-title {
  text-align: center;
  margin-bottom: 25px;
  color: var(--dark);
  font-size: 22px;
}

.btn {
  max-width: 100px;
  padding: 7px 14px;
  border-radius: var(--border-radius);
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
  font-size: 14px;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
}

.btn-primary {
  background: var(--primary);
  color: white;
}

.btn-primary:hover {
  background: #3a5be0;
}

.btn-sm {
  padding: 8px 15px;
  font-size: 13px;
  border-radius: 5px;
  font-weight: 600;
}

.btn-icon {
  display: flex;
  align-items: center;
  gap: 6px;
}

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

.btn-success:hover {
  background: #25b163;
}

/* =============== */
/* BAŞLIK BÖLÜMÜ */
/* =============== */
header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  z-index: 1000;
  padding: 12px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu-toggle {
  font-size: 22px;
  cursor: pointer;
  color: var(--dark);
}

.logo {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}

.auth-buttons {
  display: flex;
  gap: 8px;
}

.user-profile {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.user-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 16px;
}

.user-info {
  display: flex;
  flex-direction: column;
}

.user-name {
  font-weight: 600;
  color: var(--dark);
  font-size: 14px;
}

.user-balance {
  font-size: 12px;
  color: var(--success);
}

.user-dropdown {
  display: none;
  position: fixed;
  top: 60px;
  right: 0;
  background: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-radius: var(--border-radius);
  width: 220px;
  z-index: 1001;
}

.user-dropdown.active {
  display: block;
}

.user-dropdown ul {
  list-style: none;
}

.user-dropdown ul li {
  padding: 10px 12px;
  border-bottom: 1px solid #f0f0f0;
  cursor: pointer;
  transition: background 0.2s;
  font-size: 14px;
}

.user-dropdown ul li:hover {
  background: #f8f9fa;
}

.user-dropdown ul li i {
  margin-right: 8px;
  width: 18px;
  text-align: center;
  color: var(--gray);
  font-size: 14px;
}

.language-switcher {
  position: absolute;
  top: 15px;
  gap: 5px;
}

.language-switcher button {
  background: #f0f2f5;
  border: none;
  padding: 5px 10px;
  border-radius: 3px;
  cursor: pointer;
  font-size: 12px;
  transition: var(--transition);
}

.language-switcher button:hover {
  background: var(--primary);
  color: white;
}

.language-switcher button.active {
  background: var(--primary);
  color: white;
}

/* =============== */
/* ANA İÇERİK */
/* =============== */
main {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 30px 15px;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

/* =============== */
/* YAN MENÜ */
/* =============== */
.sidebar {
  position: fixed;
  top: 0;
  left: -250px;
  width: 250px;
  height: 100%;
  background-color: white;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  z-index: 1001;
  transition: var(--transition);
  overflow-y: auto;
  padding-top: 70px;
}

.sidebar.active {
  left: 0;
}

.sidebar ul {
  list-style: none;
  padding: 15px;
}

.sidebar ul li {
  padding: 10px 12px;
  border-bottom: 1px solid #eee;
  cursor: pointer;
  transition: var(--transition);
  font-size: 14px;
}

.sidebar ul li:hover {
  background-color: #f5f5f5;
  color: var(--primary);
}

.sidebar ul li i {
  margin-right: 8px;
  width: 18px;
  text-align: center;
  font-size: 14px;
}

.sidebar ul li a {
  display: block;
  color: inherit;
  text-decoration: none;
  padding: 10px 12px;
  margin: -10px -12px;
}

.sidebar ul li:hover a {
  color: var(--primary);
}

.sidebar ul li i {
  width: 20px;
  margin-right: 10px;
  text-align: center;
}

.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  border-bottom: 1px solid #eee;
}

.sidebar-header span {
  font-weight: bold;
  font-size: 1.2rem;
}

.sidebar-header .close-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #666;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: none;
}

.overlay.active {
  display: block;
}

/* =============== */
/* DOMEN ARAMA */
/* =============== */
.domain-search {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  padding: 30px 15px;
  text-align: center;
  color: white;
  border-radius: 8px;
  margin-bottom: 30px;
}

.domain-search h2 {
  margin-bottom: 15px;
  font-size: 24px;
}

.search-container {
  max-width: 700px;
  margin: 0 auto;
}

.search-box {
  position: relative;
  display: flex;
}

.search-box input {
  flex: 1;
  padding: 12px;
  border: none;
  border-radius: var(--border-radius) 0 0 var(--border-radius);
  font-size: 14px;
}

.search-box button {
  padding: 12px 20px;
  background: var(--dark);
  color: white;
  border: none;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
}

.suggestions {
  background: white;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  margin-top: 12px;
  max-height: 250px;
  overflow-y: auto;
  display: none;
}

.suggestion-item {
  padding: 10px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eee;
  transition: background-color 0.2s;
  font-size: 14px;
}

.suggestion-item:hover {
  background-color: #f8f9fa;
}

.suggestion-item:last-child {
  border-bottom: none;
}

.suggestion-item span {
  color: var(--dark);
  font-weight: 500;
}

.suggestion-item button {
  background: var(--secondary);
  color: white;
  border: none;
  padding: 4px 10px;
  border-radius: 3px;
  cursor: pointer;
  font-size: 13px;
}

.highlight {
  color: var(--primary);
  font-weight: bold;
}

.info-text {
  margin-top: 12px;
  font-size: 13px;
  color: #e0f7fa;
  background: rgba(0, 0, 0, 0.1);
  padding: 6px 12px;
  border-radius: var(--border-radius);
  display: inline-block;
}

/* =============== */
/* SEKMELER */
/* =============== */
.tabs-container {
  background: white;
  position: sticky;
  top: 70px;
  z-index: 999;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}

.tabs {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding: 0 15px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 1px;
  scrollbar-width: thin;
}

.tabs::-webkit-scrollbar {
  height: 4px;
}

.tabs::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.tabs::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: var(--border-radius);
}

.tab {
  flex: 1 1 auto;
  min-width: max-content;
  padding: 12px 5px;
  cursor: pointer;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  font-weight: 500;
  color: var(--gray);
  transition: var(--transition);
  font-size: 14px;
  text-align: center;
}

.tab.active {
  color: var(--primary);
  border-bottom: 3px solid var(--primary);
}

.tab-content {
  max-width: 1200px;
  margin: 15px auto;
  padding: 0 15px;
  width: 100%;
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
  animation: fadeIn 0.5s;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* =============== */
/* HİZMETLER GRID */
/* =============== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 15px;
}

.service-card {
  background: white;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.card-header {
  background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
  color: white;
  padding: 15px 20px;
  display: flex;
  align-items: center;
}

.service-icon {
  font-size: 24px;
  margin-right: 15px;
}

.service-title {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.card-body {
  padding: 20px;
}

.service-detail {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

.service-detail:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.detail-label {
  font-weight: 600;
  color: #555;
}

.detail-value {
  color: #333;
}

.status-active {
  color: #28a745;
  font-weight: 600;
}

.status-inactive {
  color: #dc3545;
  font-weight: 600;
}

.status-pending {
  color: #ffc107;
  font-weight: 600;
}

.no-services {
  text-align: center;
  padding: 30px;
  color: #6c757d;
  font-size: 16px;
}

.popular-badge {
  position: absolute;
  top: 8px;
  right: -25px;
  background: var(--success);
  color: white;
  padding: 4px 25px;
  transform: rotate(45deg);
  font-size: 11px;
  font-weight: bold;
}

.services-tabs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  max-width: 100%;
  overflow: hidden;
  border-radius: 12px;
  background: #f8f9fa;
  padding: 5px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.service-tab {
  padding: 10px 5px;
  text-align: center;
  background: #f0f0f0;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
  font-weight: 600;
  color: #444;
  font-size: 13px;
  border: 2px solid transparent;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.service-tab:hover {
  background: #e0e0e0;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-tab.active {
  background: #3498db;
  color: white;
  border-color: #2980b9;
  box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
}

.action-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.action-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #f0f2f5;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.action-btn:hover {
  background: #e0e0e0;
}

.new-badge {
  position: absolute;
  top: 40px;
  right: 25px;
  background-color: #4CAF50;
  color: white;
  padding: 5px 10px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: bold;
  z-index: 1;
}

.popular-badge-table {
  top: 8px;
  right: -25px;
  background: var(--success);
  color: white;
  padding: 4px 25px;
  transform: rotate(45deg);
  font-size: 11px;
  font-weight: bold;
}

.new-badge-table {
  top: 10px;
  background-color: #4CAF50;
  color: white;
  padding: 5px 10px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: bold;
  z-index: 1;
}

.card-header {
  padding: 15px;
  text-align: center;
  background: var(--light);
  border-bottom: 1px solid #eee;
}

.card-header i {
  font-size: 32px;
  margin-bottom: 10px;
}

.reseller i {
  color: var(--purple);
}

.hosting i {
color: #0aa178;
}

.vps i {
  color: var(--orange);
}

.card-header h3 {
  color: var(--dark);
  font-size: 18px;
  margin-bottom: 5px;
}

.features {
  list-style: none;
  margin: 12px 0;
}

.features li {
  padding: 7px 0;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
}

.features li:last-child {
  border-bottom: none;
}

.price-summary {
  max-width: 400px;
  margin: 20px auto;
  padding: 20px;
  background-color: #f8f9fa;
  border: 1px solid #ddd;
  border-radius: 12px;
  box-shadow: var(--card-shadow);
  font-family: var(--font-family);
  font-size: 16px;
  color: #333;
}

.price-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #e9ecef;
}

.price-item:last-child {
  border-bottom: none;
}

.price-item.price-total {
  font-weight: bold;
  font-size: 18px;
  color: #000;
  margin-top: 10px;
}

.price {
font-size: 20px;
    font-weight: 700;
    text-align: center;
    margin: 12px 0;
}


.reseller .price {
  color: var(--purple);
}

.vps .price {
  color: var(--orange);
}


.price span {
  font-size: 13px;
  color: var(--gray);
  font-weight: normal;
}

.price-details {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 8px;
}

.price-item {
  text-align: center;
}

.price-item .label {
  font-size: 12px;
  color: var(--gray);
}

.price-item .value {
  font-weight: 600;
  margin-top: 3px;
  font-size: 14px;
}

.card-footer {
  padding: 0 15px 15px;
  text-align: center;
}

/* =============== */
/* MODAL YAPILARI */
/* =============== */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1100;
  justify-content: center;
  align-items: center;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: white;
  border-radius: 8px;
  width: 90%;
  max-width: 450px;
  max-height: 90vh;
  overflow-y: auto;
  animation: modalFade 0.3s;
}

@keyframes modalFade {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

.modal-header {
  padding: 12px 15px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h3 {
  color: var(--dark);
  font-size: 18px;
}

.close-btn {
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--gray);
}

.modal-body {
  padding: 15px;
}

.form-group {
  margin-bottom: 12px;
}

.form-group label {
  display: block;
  margin-bottom: 4px;
  color: var(--dark);
  font-weight: 500;
  font-size: 14px;
}

.form-group input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  font-size: 14px;
}

.phone-input {
  display: flex;
  gap: 8px;
}

.phone-input input:first-child {
  width: 30%;
}

.phone-input input:last-child {
  width: 70%;
}

.modal-tabs {
  display: flex;
  border-bottom: 1px solid #eee;
  margin-bottom: 15px;
}

.modal-tab {
  flex: 1;
  text-align: center;
  padding: 8px;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  font-size: 14px;
}

.modal-tab.active {
  border-bottom: 3px solid var(--primary);
  color: var(--primary);
}

.modal-footer {
  padding: 12px 15px;
  border-top: 1px solid #eee;
  text-align: right;
}

/* =============== */
/* DOMEN SONUÇLARI */
/* =============== */
.domain-result {
  padding: 15px;
  text-align: center;
}

.domain-status {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}

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

.domain-status.taken {
  color: var(--danger);
}

.domain-details {
  text-align: left;
  margin: 15px 0;
  padding: 12px;
  background: #f8f9fa;
  border-radius: var(--border-radius);
  font-size: 14px;
}

.domain-details p {
  padding: 7px 0;
  border-bottom: 1px solid #eee;
}

.domain-details p:last-child {
  border-bottom: none;
}

.tld-examples {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}

.tld-example {
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--border-radius);
  padding: 3px 6px;
  font-size: 12px;
  cursor: pointer;
  transition: var(--transition);
}

.tld-example:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.tld-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 15px;
  margin-top: 15px;
}

.tld-card {
  background: white;
  border-radius: 6px;
  padding: 15px;
  text-align: center;
  box-shadow: var(--card-shadow);
  transition: transform 0.3s;
}

.tld-card:hover {
  transform: translateY(-3px);
}

.tld-name {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 8px;
  color: var(--primary);
}

.tld-price {
  font-size: 16px;
  color: var(--dark);
  margin-bottom: 10px;
}

.tld-desc {
  font-size: 13px;
  color: var(--gray);
  margin-top: 8px;
}

.special-tld {
  border: 2px solid var(--secondary);
  position: relative;
}

.special-badge {
  position: absolute;
  top: -8px;
  right: 8px;
  background: var(--secondary);
  color: white;
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: bold;
}

/* =============== */
/* ARTIRMA KARTLARI */
/* =============== */
.auction-card {
  background: white;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}

.auction-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.auction-header {
  padding: 15px;
  text-align: center;
  background: var(--light);
  border-bottom: 1px solid #eee;
  position: relative;
}

.auction-header h3 {
  color: var(--dark);
  font-size: 18px;
  margin-bottom: 5px;
}

.auction-body {
  padding: 15px;
}

.auction-detail {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 14px;
}

.auction-detail:last-child {
  border-bottom: none;
}

.auction-detail .label {
  color: var(--gray);
}

.auction-detail .value {
  font-weight: 600;
}

.auction-price {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin: 12px 0;
  color: var(--success);
}

.auction-timer {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.timer-block {
  background: var(--dark);
  color: white;
  border-radius: var(--border-radius);
  padding: 8px;
  min-width: 50px;
  text-align: center;
}

.timer-value {
  font-size: 18px;
  font-weight: bold;
}

.timer-label {
  font-size: 10px;
  text-transform: uppercase;
  margin-top: 3px;
}

.bid-form {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.bid-form input {
  flex: 1;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  font-size: 14px;
  width: 20px;
}

.bidder-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 8px 0;
  font-size: 14px;
  color: var(--dark);
  background: #f8f9fa;
  padding: 6px;
  border-radius: var(--border-radius);
}

.bidder-info i {
  color: var(--primary);
}

/* =============== */
/* DOMEN TABLOSU */
/* =============== */
.domain-table-container,
.services-table-container {
  overflow-x: auto;
  margin-top: 20px;
  border-radius: 8px;
  box-shadow: var(--card-shadow);
  background: white;
  padding: 15px;
}

.domain-table,
.services-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 250px;
}

.domain-table th,
.domain-table td,
.services-table th,
.services-table td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #eee;
}

.domain-table th,
.services-table th {
  background-color: #f8f9fa;
  font-weight: 600;
  color: var(--dark);
  font-size: 14px;
}

.domain-table tbody tr:hover,
.services-table tbody tr:hover {
  background-color: #f8fafc;
}

.tld-cell {
  font-weight: 600;
  color: var(--primary);
  font-size: 16px;
}

.price-cell {
  font-weight: 600;
  color: var(--dark);
}

.renewal-cell {
  color: var(--gray);
}

.ns-cell {
  color: var(--success);
  font-weight: 600;
}

.ns-cell.no {
  color: var(--danger);
}

.order-cell {
  text-align: center;
}

.order-btn-small {
  padding: 6px 12px;
  font-size: 13px;
}

.special-row {
  background-color: rgba(0, 201, 167, 0.05);
  border-left: 3px solid var(--secondary);
}

.special-badge-table {
  background: var(--secondary);
  color: white;
  padding: 2px 8px;
  border-radius: var(--border-radius);
  font-size: 11px;
  font-weight: bold;
  margin-left: 5px;
}

.services-table .service-name {
  font-weight: 600;
  color: var(--primary);
  font-size: 16px;
}

.services-table .price-cell {
  font-weight: 600;
  color: var(--dark);
}

.services-table .status-cell {
  font-weight: 600;
}

.status-won {
  background-color: #4CAF50;
  color: white;
}

.status-outbid {
  background-color: #f44336;
  color: white;
}

/* =============== */
/* PROFİL SAYFASI */
/* =============== */
#profile-pages {
  display: flex;
  flex-direction: column;
  max-width: 1200px;
  margin: 30px auto;
  padding: 0 15px;
  width: 100%;
}

.profile-section {
  display: none;
  background: white;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  margin-bottom: 30px;
}

.profile-section.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

.profile-header {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  padding: 25px 30px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.profile-header i {
  font-size: 28px;
  background: rgba(255, 255, 255, 0.2);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-header h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
}

.profile-content {
  padding: 30px;
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.profile-card {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 20px;
  transition: var(--transition);
  border: 1px solid #eee;
}

.profile-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.card-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e0e0e0;
}

.card-title i {
  font-size: 22px;
  color: var(--primary);
}

.card-title h3 {
  margin: 0;
  font-size: 18px;
  color: var(--dark);
}

.info-item {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 14px;
}

.info-item:last-child {
  border-bottom: none;
}

.info-label {
  color: var(--gray);
  font-weight: 500;
}

.info-value {
  color: var(--dark);
  font-weight: 600;
  text-align: right;
}

.info-value.status-active {
  color: var(--success);
}

.info-value.status-expired {
  color: var(--danger);
}

.info-value.status-pending {
  color: var(--warning);
}

.action-buttons {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.profile-form {
  max-width: 800px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--dark);
  font-weight: 600;
  font-size: 14px;
}

.form-group input, 
.form-group select, 
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  transition: var(--transition);
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(74, 107, 255, 0.2);
  outline: none;
}

.form-footer {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

/* =============== */
/* ABONELİK PLANLARI */
/* =============== */
.plan-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 20px;
}

.plan-card {
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}

.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.plan-card.popular::before {
  content: 'Ən Populyar';
  position: absolute;
  top: 15px;
  right: -30px;
  background: var(--secondary);
  color: white;
  padding: 5px 35px;
  transform: rotate(45deg);
  font-size: 12px;
  font-weight: bold;
  z-index: 1;
}

.plan-header {
  text-align: center;
  padding: 25px 20px;
  background: linear-gradient(135deg, #f5f7fa, #e4e8f0);
  border-bottom: 1px solid #eee;
}

.plan-header h3 {
  margin: 0 0 10px;
  font-size: 22px;
  color: var(--primary);
}

.plan-price {
  font-size: 32px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 5px;
}

.plan-price span {
  font-size: 16px;
  color: var(--gray);
  font-weight: normal;
}

.plan-duration {
  color: var(--gray);
  font-size: 14px;
}

.plan-features {
  padding: 25px 20px;
}

.plan-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.plan-features li {
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.plan-features li:last-child {
  border-bottom: none;
}

.plan-features li i {
  color: var(--success);
  font-size: 16px;
}

.plan-footer {
  padding: 0 20px 25px;
  text-align: center;
}

/* =============== */
/* ALT BİLGİ */
/* =============== */
.desktop-footer, .mobile-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: white;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
  padding: 0;
  height: 60px;
}

.desktop-footer .footer-nav,
.mobile-footer .footer-nav {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  height: 100%;
  margin: 0;
  padding: 0;
}

.desktop-footer .nav-item,
.mobile-footer .nav-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #5478a2;
  font-size: 11px;
  background: #ffffff;
  margin-right: 1px;
  height: 100%;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
}

.desktop-footer .nav-item:last-child,
.mobile-footer .nav-item:last-child {
  margin-right: 0;
}

.desktop-footer .nav-item.active,
.mobile-footer .nav-item.active {
  background-color: #eaeaea;
  text-decoration: underline;
}

.desktop-footer .nav-item i,
.mobile-footer .nav-item i {
  font-size: 18px;
  margin-bottom: 3px;
}

/* =============== */
/* BİLDİRİMLER */
/* =============== */
.notification-panel {
  position: fixed;
  bottom: 70px;
  left: 15px;
  right: 15px;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.notification {
  padding: 12px 15px;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  animation: slideIn 0.3s ease-out;
  transform: translateY(0);
}

.notification.success {
  background-color: #d4edda;
  color: #155724;
  border-left: 4px solid #28a745;
}

.notification.error {
  background-color: #f8d7da;
  color: #721c24;
  border-left: 4px solid #dc3545;
}

.notification.info {
  background-color: #cce5ff;
  color: #004085;
  border-left: 4px solid #007bff;
}

.notification.warning {
  background-color: #fff3cd;
  color: #856404;
  border-left: 4px solid #ffc107;
}

.notification .close {
  cursor: pointer;
  font-weight: bold;
  margin-left: 10px;
}

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

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

.notification.slide-out {
  animation: slideOut 0.3s ease-out forwards;
}

/* =============== */
/* ŞİFRE GÜVENLİĞİ */
/* =============== */
.password-strength {
  margin-top: 5px;
  height: 5px;
  background: #eee;
  border-radius: 3px;
  overflow: hidden;
}

.strength-bar {
  height: 100%;
  width: 0%;
  transition: width 0.3s ease;
}

.strength-bar.weak {
  background: #e74c3c;
}

.strength-bar.medium {
  background: #f39c12;
}

.strength-bar.strong {
  background: #2ecc71;
}

.strength-text {
  margin-top: 5px;
  font-size: 12px;
  text-align: right;
}

.strength-text.weak {
  color: #e74c3c;
}

.strength-text.medium {
  color: #f39c12;
}

.strength-text.strong {
  color: #2ecc71;
}

/* =============== */
/* RESPONSIVE TASARIM */
/* =============== */
@media (max-width: 768px) {
  .desktop-footer {
    display: none;
  }
  
  .domain-table th, 
  .domain-table td,
  .services-table th,
  .services-table td {
    padding: 10px 8px;
    font-size: 13px;
  }
  
  .services-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
  
  .profile-header {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
  
  .profile-header i {
    margin-bottom: 15px;
  }
  
  .profile-content {
    padding: 20px;
  }
  
  .action-buttons {
    flex-direction: column;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
}

@media (min-width: 769px) {
  .mobile-footer {
    display: none;
  }
}

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .plan-cards {
    grid-template-columns: 1fr;
  }
  
}

#nsServers input {
  flex: 1;
  padding: 8px 12px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: var(--border-radius);
  outline: none;
  transition: border-color 0.3s;
}

.add-field-btn,
.remove-field-btn {
  padding: 8px 16px;
  font-size: 14px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  align-items: center;
  gap: 6px;
  transition: background-color 0.3s;
}

.add-field-btn {
  background-color: #28a745;
  color: white;
}

.add-field-btn:hover {
  background-color: #218838;
}

.remove-field-btn {
  background-color: #dc3545;
  color: white;
}

.remove-field-btn:hover {
  background-color: #c82333;
}

.service-action-btn {
  padding: 8px;
  margin-bottom: 5px;
  background: #f0f4f8;
  border: 1px solid #d1d8e0;
  border-radius: var(--border-radius);
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
}

.service-action-btn:hover {
  background: #e3eaf3;
  border-color: #a7b6c9;
}

.service-action-btn i {
  margin-right: 8px;
  width: 20px;
  text-align: center;
}

.actions-cell {
  min-width: 200px;
}

.dns-row {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.dns-row input {
  flex: 1;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
}

.dns-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.add-field-btn, .remove-field-btn {
  padding: 8px 15px;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  align-items: center;
  gap: 5px;
}

.add-field-btn:hover {
  background: #4CAF50;
  color: white;
}

.remove-field-btn:hover {
  background: #f44336;
  color: white;
}

/* Optimallaşdırılmış seçicilər */
.btn,
.action-btn,
.service-tab,
.service-action-btn,
.search-box button,
.modal-tab,
.tab {
  will-change: transform, box-shadow;
}

/* ================== */
/* RADIO GROUP TABS   */
/* ================== */
.radio-group {
  display: flex;
  background: #f8f9fa;
  border-radius: var(--border-radius);
  padding: 4px;
  margin: 15px 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.radio-option {
  flex: 1;
  text-align: center;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: var(--border-radius);
  transition: var(--transition);
  font-weight: 500;
  font-size: 14px;
  position: relative;
  z-index: 1;
}

.radio-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.radio-option:not(:last-child) {
  margin-right: 4px;
}

.radio-option:hover {
  background: #e9ecef;
}

.radio-option input[type="radio"]:checked + span {
  color: var(--primary);
}

.radio-option input[type="radio"]:checked {
  background: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  color: var(--primary);
  font-weight: 600;
}

.radio-option input[type="radio"]:checked::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: white;
  border-radius: var(--border-radius);
  z-index: -1;
  box-shadow: var(--card-shadow);
}

/* Optimallaşdırılmış animasiyalar */
@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes slideIn {
  0% { transform: translateY(100px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

@keyframes slideOut {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(100px); opacity: 0; }
}

@keyframes modalFade {
  0% { opacity: 0; transform: translateY(-20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ... mevcut stillere ekle ... */

.stats-charts {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.chart-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.chart-item {
    flex: 1;
    background: white;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.chart-item.full-width {
    flex: 0 0 100%;
}

.chart-item canvas {
    max-height: 250px;
}

/* ... digər kodlar ... */

/* Yükləmə animasiyası */
.loading-spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 2s linear infinite;
    margin: 0 auto 10px;
}

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

.domain-status {
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 15px;
    text-align: center;
    font-weight: bold;
}

.domain-status.available {
    background-color: #d4edda;
    color: #155724;
}

.domain-status.taken {
    background-color: #f8d7da;
    color: #721c24;
}

.domain-status.error {
    background-color: #fff3cd;
    color: #856404;
}

.domain-details {
    margin-top: 20px;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 5px;
}

.domain-details p {
    margin: 8px 0;
}