@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  background: linear-gradient(135deg, #2cb0e5, #25c4dd);
  background-attachment: fixed;
  background-size: 400% 400%;
  animation: gradientBG 20s ease infinite;
  color: #e0f0ff;
  min-height: 100vh; /* Sayfa yüksekliğini garanti altına al */
  display: flex;
  flex-direction: column;
}

@keyframes gradientBG {
  0% {background-position: 0% 50%;}
  50% {background-position: 100% 50%;}
  100% {background-position: 0% 50%;}
}

/* Sticky Header */
.sticky-header {
  position: sticky;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  background-color: #178bbd;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
}

nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

nav a.menu-button {
  background-color: #7c2bc1;
  color: #e0f0ff;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin: 0 5px;
}
nav a.menu-button:hover {
  background-color: #a347e6;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

h1 {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 1px;
}
h2 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-top: 2rem;
}

p {
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 70ch;
  margin-bottom: 1rem;
}

/* Hero Section */
.hero-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4rem 2rem;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 16px;
  margin: 2rem auto;
  max-width: 1200px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  animation: fadeIn 1s ease-in-out;
}

.hero-content {
  flex: 1;
  padding-right: 2rem;
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 400;
  color: #e0f0ff;
  margin-bottom: 2rem;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(to right, #7c2bc1, #a347e6);
  color: #ffffff;
  font-weight: 700;
  padding: 15px 30px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}
.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.hero-image {
  flex: 1;
  text-align: center;
}
.hero-image img {
  max-width: 200px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  display: block;
  margin: 0 auto;
}

.hero-video {
  width: 100%;
  max-width: 800px;
  margin: 20px auto 0;
  text-align: center;
}

.demo-video,
.app_demo {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

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

section { /* Genel section stili */
  max-width: 960px;
  margin: 2rem auto;
  padding: 3rem 2rem;
  backdrop-filter: blur(8px);
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}
section.tab-container { /* Tab container için özel */
  /* Bu blok section stylerının üstüne gelecektir */
}


/* Form elements */
form input,
form select,
form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 1rem;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.25);
  background-color: rgba(255,255,255,0.12);
  color: #ffffff;
  font-size: 1rem;
  transition: all 0.3s ease;
}
form input::placeholder,
form textarea::placeholder {
  color: #d0eaff;
  opacity: 1;
}
form input:focus,
form textarea:focus {
  outline: none;
  background-color: rgba(255,255,255,0.2);
  box-shadow: 0 0 0 2px #f0b65f;
  border-color: #f0b65f;
}

form button {
  background: linear-gradient(to right, #7c2bc1, #a347e6);
  color: #ffffff;
  font-weight: 700;
  padding: 12px 30px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.input-group {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.input-icon {
  font-size: 1.2rem;
  color: #d0eaff;
  margin-right: 10px;
  flex-shrink: 0;
}

.input-group input,
.input-group textarea {
  flex: 1;
  padding: 12px;
  margin-bottom: 0;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.25);
  background-color: rgba(255,255,255,0.12);
  color: #ffffff;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.pin-fields {
  display: block;
  margin-top: 0.5rem;
}

.pin-fields input {
  background-color: rgba(255,255,255,0.2);
  margin-bottom: 0.5rem;
}

label { /* Genel label stili, radyo/checkbox ile beraber kullanılanlar için */
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-weight: 500;
  margin: 0.5rem 0 1rem;
}

/* Tabs */
.tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.tab {
  padding: 12px 24px;
  cursor: pointer;
  font-weight: 600;
  color: #e0f0ff;
  background: rgba(0,0,0,0.3);
  border-radius: 12px 12px 0 0;
  margin: 0 5px;
  transition: all 0.3s ease;
}

.tab.active {
  background: #5e1ebc;
  color: #ffffff;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
}

.tab-content {
  display: none;
  padding: 1.5rem;
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  animation: fadeInTab 0.5s ease-in-out;
}

.tab-content.active {
  display: block;
}

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

.tab-content form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

.tab-content form input,
.tab-content form select,
.tab-content form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 0;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.25);
  background-color: rgba(255,255,255,0.12);
  color: #ffffff;
  font-size: 1rem;
}

.tab-content form label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-weight: 500;
  margin: 0.5rem 0;
}

.tab-content form button {
  align-self: center;
  margin-top: 1rem;
  background: linear-gradient(to right, #7c2bc1, #a347e6);
  padding: 12px 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}
.tab-content form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

#upload-result,
#purchase-result {
  margin-top: 1rem;
  text-align: center;
  color: #e0f0ff;
  font-size: 1.1rem;
  animation: fadeIn 0.5s ease-in-out;
}

/* PIN Göster için Stil */
.tab-content form label.show-pin-label {
  margin-top: 0.2rem;
  margin-bottom: 0.5rem;
}

/* Success and Error Messages */
.success-message {
  color: #00ff00;
  font-weight: 600;
  padding: 10px 20px;
  background: rgba(0, 255, 0, 0.1);
  border-radius: 8px;
  border: 1px solid #00ff00;
  display: inline-block;
}

.error-message {
  color: #ff4444;
  font-weight: 600;
  padding: 10px 20px;
  background: rgba(255, 68, 68, 0.1);
  border-radius: 8px;
  border: 1px solid #ff4444;
  display: inline-block;
}

/* Product Cards */
.products-section {
  padding: 3rem 2rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.product-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.product-card img {
  max-width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.product-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.product-card p {
  font-size: 1rem;
  color: #d0eaff;
  margin-bottom: 1rem;
}

.product-card .cta-button {
  padding: 10px 20px;
  font-size: 1rem;
}

.product-card .cta-button.disabled {
  background: #666;
  cursor: not-allowed;
  pointer-events: none;
}

.product-card.coming-soon {
  opacity: 0.7;
}

/* Galeri Stilleri */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 20px;
}

.gallery-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.gallery-item img:hover {
  transform: scale(1.05);
}

/* Sosyal Medya Bağlantıları */
.social-links {
  text-align: center;
  margin-top: 2rem;
}

.social-links h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.social-icon {
  font-size: 2rem;
  margin: 0 1rem;
  color: #e0f0ff;
  text-decoration: none;
  transition: all 0.3s ease;
}
.social-icon:hover {
  color: #a347e6;
  transform: translateY(-3px);
}
.social-icon:focus {
  outline: 2px solid #f0b65f;
  border-radius: 4px;
}

/* Contact Form */
.contact-form {
  max-width: 700px;
  margin: 0 auto;
}

.contact-form .input-group {
  margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form textarea {
  padding: 15px;
  font-size: 1.1rem;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  background: linear-gradient(to right, #7c2bc1, #a347e6);
  padding: 15px 40px;
  font-size: 1.1rem;
  letter-spacing: 1px;
}

/* Dark Mode Toggle */
.dark-mode-toggle {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #e0f0ff;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-left: 1rem;
}
.dark-mode-toggle:hover {
  transform: scale(1.2);
}

/* Language Switcher */
.language-switcher {
  margin: 0 1rem;
}

.language-switcher select {
  background: linear-gradient(to right, #7c2bc1, #a347e6);
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  padding: 8px 16px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg fill="white" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-size: 16px;
  min-width: 80px;
}

.language-switcher select option {
  background-color: #5e1ebc;
  color: #ffffff;
  font-size: 1.2rem;
  padding: 8px;
}

.language-switcher select option:hover {
  background-color: #a347e6;
}

.language-switcher select:hover,
.language-switcher select:focus {
  background: linear-gradient(to right, #a347e6, #7c2bc1);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  outline: none;
}

/* Download Count ve Feedback Form */
.download-count {
  font-size: 1rem;
  color: #e0f0ff;
  margin-top: 0.5rem;
}

.feedback-form {
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}

.feedback-form h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.feedback-form .input-group label {
  display: block;
  margin-bottom: 0.5rem;
}

.feedback-form input[type="number"] {
  width: 100px;
}

/* Feedback Form Button */
.feedback-form button {
  background: linear-gradient(to right, #7c2bc1, #a347e6);
  color: #ffffff;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  padding: 12px 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
.feedback-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

/* Dark Mode Stilleri */
body.dark-mode {
  background: linear-gradient(135deg, #1a1a1a, #2c2c2c);
  color: #d0d0d0;
}

body.dark-mode .sticky-header,
body.dark-mode footer {
  background-color: #2c2c2c;
  box-shadow: 0 4px 10px rgba(255, 255, 255, 0.1);
}

body.dark-mode nav {
  justify-content: flex-end;
}

body.dark-mode nav a.menu-button {
  background-color: #4a1e8a;
  color: #d0d0d0;
}
body.dark-mode nav a.menu-button:hover {
  background-color: #6b2db3;
}

body.dark-mode .language-switcher select {
  background: linear-gradient(to right, #4a1e8a, #6b2db3);
  background-image: url('data:image/svg+xml;utf8,<svg fill="white" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-size: 16px;
}

body.dark-mode .language-switcher select option {
  background-color: #4a1e8a;
  color: #ffffff;
}

body.dark-mode .language-switcher select option:hover {
  background-color: #6b2db3;
}

body.dark-mode .language-switcher select:hover,
body.dark-mode .language-switcher select:focus {
  background: linear-gradient(to right, #6b2db3, #4a1e8a);
  box-shadow: 0 4px 8px rgba(255, 255, 255, 0.2);
}

body.dark-mode .hero-section,
body.dark-mode section,
body.dark-mode .tab-container,
body.dark-mode .product-card {
  background: rgba(255, 255, 255, 0.05);
}

body.dark-mode .hero-title,
body.dark-mode h1,
body.dark-mode h2,
body.dark-mode h3,
body.dark-mode .social-links h3 {
  color: #ffffff;
}

body.dark-mode .hero-subtitle,
body.dark-mode p,
body.dark-mode .social-icon {
  color: #b0b0b0;
}

body.dark-mode form input,
body.dark-mode form textarea {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: #d0d0d0;
}
body.dark-mode form input::placeholder,
body.dark-mode form textarea::placeholder {
  color: #a0a0a0;
}
body.dark-mode form input:focus,
body.dark-mode form textarea:focus {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: #a347e6;
  box-shadow: 0 0 0 2px #a347e6;
}

body.dark-mode form button {
  background: linear-gradient(to right, #4a1e8a, #6b2db3);
}
body.dark-mode form button:hover {
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

body.dark-mode .feedback-form button {
  background: linear-gradient(to right, #4a1e8a, #6b2db3);
}
body.dark-mode .feedback-form button:hover {
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

body.dark-mode .tab {
  background: rgba(255, 255, 255, 0.05);
  color: #b0b0b0;
}
body.dark-mode .tab.active {
  background: #4a1e8a;
  color: #ffffff;
}

body.dark-mode .cta-button,
body.dark-mode .tab-content form button {
  background: linear-gradient(to right, #4a1e8a, #6b2db3);
}
body.dark-mode .cta-button:hover,
body.dark-mode .tab-content form button:hover {
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

body.dark-mode .footer-links a {
  color: #b0b0b0;
}
body.dark-mode .footer-links a:hover {
  color: #a347e6;
}

/* Accounts Page Stilleri */
.account-status {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 0.9rem;
  font-weight: 600;
}
.status-active {
  background-color: #28a745;
  color: #fff;
}
.status-expired {
  background-color: #dc3545;
  color: #fff;
}
.status-licensed {
  background-color: #007bff;
  color: #fff;
}
.content-box button {
  background: linear-gradient(to right, #7c2bc1, #a347e6);
  color: #ffffff;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.content-box button:hover {
  background: linear-gradient(to right, #a347e6, #7c2bc1);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem;
  background-color: #178bbd;
  color: #eee;
  font-size: 0.9rem;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.3);
}

.footer-links {
  margin-top: 0.5rem;
}

.footer-link {
  color: #e0f0ff;
  text-decoration: none;
  margin: 0 1rem;
  transition: color 0.3s ease;
}
.footer-link:hover {
  color: #a347e6;
}

/* Privacy Policy Section */
.privacy-policy-section {
  max-width: 960px;
  margin: 2rem auto;
  padding: 3rem 2rem;
  backdrop-filter: blur(8px);
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  color: #e0f0ff;
}

.privacy-policy-section h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.privacy-policy-section h2 {
  font-size: 1.75rem;
  font-weight: 600;
  margin: 2rem 0 1rem;
  color: #e0f0ff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.privacy-policy-section h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 1.5rem 0 0.5rem;
  color: #e0f0ff;
}

.privacy-policy-section p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.privacy-policy-section ul {
  list-style-type: disc;
  margin: 1rem 0;
  padding-left: 2rem;
}

.privacy-policy-section ul li {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.privacy-policy-section ul li strong {
  color: #ffffff;
  font-weight: 600;
}

.privacy-policy-section a {
  color: #a347e6;
  text-decoration: none;
  transition: color 0.3s ease;
}

.privacy-policy-section a:hover {
  color: #7c2bc1;
}

body.dark-mode .privacy-policy-section {
  background-color: rgba(255, 255, 255, 0.05);
}

body.dark-mode .privacy-policy-section h1,
body.dark-mode .privacy-policy-section h2,
body.dark-mode .privacy-policy-section h3 {
  color: #ffffff;
}

body.dark-mode .privacy-policy-section p,
body.dark-mode .privacy-policy-section ul li {
  color: #b0b0b0;
}

body.dark-mode .privacy-policy-section ul li strong {
  color: #ffffff;
}

body.dark-mode .privacy-policy-section a {
  color: #a347e6;
}

body.dark-mode .privacy-policy-section a:hover {
  color: #7c2bc1;
}


/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
}

.lightbox-img {
  max-width: 80vw;
  max-height: 80vh;
  border-radius: 8px;
}

.close, .prev, .next {
  position: absolute;
  color: white;
  font-size: 3rem;
  cursor: pointer;
  user-select: none;
}

.close {
  top: 20px;
  right: 30px;
}

.prev {
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
}

.next {
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
}
/* License Card İyileştirmeleri */
.license-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.license-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 2px solid transparent;
  cursor: pointer;
  position: relative;
}

.license-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.license-card.selected {
  border: 2px solid #a347e6;
  background: rgba(255, 255, 255, 0.1);
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.card-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.card-content .price {
  font-size: 1.8rem;
  font-weight: 700;
  color: #a347e6;
  margin-bottom: 1rem;
}

.features {
  list-style: none;
  padding: 0;
  margin-bottom: 1rem;
}

.features li {
  font-size: 1rem;
  color: #d0eaff;
  margin-bottom: 0.5rem;
}

.license-card input[type="radio"] {
  display: none;
}

/* Karanlık Mod için Stiller */
body.dark-mode .license-card {
  background: rgba(255, 255, 255, 0.05);
}

body.dark-mode .license-card.selected {
  background: rgba(255, 255, 255, 0.1);
  border-color: #6b2db3;
}

body.dark-mode .card-content .price {
  color: #6b2db3;
}

body.dark-mode .features li {
  color: #b0b0b0;
}
/* Mevcut 953 satırlık style.css dosyasının sonuna eklenecek güncellenmiş stiller */

/* License Card İyileştirmeleri */
.license-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.license-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 2px solid transparent;
  cursor: pointer;
  position: relative;
  min-height: 350px; /* Sabit bir minimum yükseklik, içeriğe göre ayarlanabilir */
  display: flex; /* Kartı flex container yapar */
  flex-direction: column; /* İçeriği dikey hizalar */
}

.license-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.license-card.selected {
  border: 2px solid #a347e6;
  background: rgba(255, 255, 255, 0.1);
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.card-content {
  display: flex;
  flex-direction: column;
  align-items: center; /* Yatay ortalama */
  justify-content: center; /* Dikey ortalama */
  flex-grow: 1; /* Kartın kalan alanını doldurur */
  text-align: center; /* Metinleri kart içinde ortalar */
}

.card-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.card-content .price {
  font-size: 1.8rem;
  font-weight: 700;
  color: #a347e6;
  margin-bottom: 1rem;
}

.features {
  list-style: none;
  padding: 0;
  margin-bottom: 1rem;
  text-align: center; /* Liste öğelerini ortalar */
}

.features li {
  font-size: 1rem;
  color: #d0eaff;
  margin-bottom: 0.5rem;
  text-align: center; /* Her bir liste öğesini ortalar */
}

.license-card input[type="radio"] {
  display: none;
}

/* Karanlık Mod için Stiller */
body.dark-mode .license-card {
  background: rgba(255, 255, 255, 0.05);
}

body.dark-mode .license-card.selected {
  background: rgba(255, 255, 255, 0.1);
  border-color: #6b2db3;
}

body.dark-mode .card-content .price {
  color: #6b2db3;
}

body.dark-mode .features li {
  color: #b0b0b0;
}