:root {
  --bg-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --bg-secondary: white;
  --text-primary: #2c3e50;
  --text-secondary: #444;
  --text-light: #6c757d;
  --border-color: #e9ecef;
  --shadow: 0 10px 30px rgba(0,0,0,0.1);
  --card-bg: white;
  --navbar-bg: rgba(255, 255, 255, 0.95);
  --hero-bg: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --input-bg: white;
  --input-border: #e9ecef;
  --input-text: #2c3e50;
  --input-placeholder: #6c757d;
  --about-box-bg: white;
  --about-box-border: #ececec;
  --playlist-bg: white;
  --playlist-border: #e9ecef;
  --message-bg: #f8f9fa;
  --message-border: #e9ecef;
}

[data-theme="dark"] {
  --bg-primary: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
  --bg-secondary: #0a0a1a;
  --text-primary: #ffffff;
  --text-secondary: #e0e0e0;
  --text-light: #b0b0b0;
  --border-color: #2a2a3e;
  --shadow: 0 10px 30px rgba(0,0,0,0.4);
  --card-bg: #1a1a2e;
  --navbar-bg: rgba(26, 26, 46, 0.95);
  --hero-bg: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
  --input-bg: #2a2a3e;
  --input-border: #3a3a4e;
  --input-text: #ffffff;
  --input-placeholder: #a0a0a0;
  --about-box-bg: #1a1a2e;
  --about-box-border: #2a2a3e;
  --playlist-bg: #1a1a2e;
  --playlist-border: #2a2a3e;
  --message-bg: #2a2a3e;
  --message-border: #3a3a4e;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg-primary);
  min-height: 100vh;
  transition: all 0.3s ease;
}

.navbar {
  background: var(--navbar-bg) !important;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  min-height: 70px;
  border: 2px solid #667eea;
  border-radius: 12px;
  margin: 10px;
}

.navbar-nav {
  align-items: center;
}

.navbar-nav .nav-item {
  margin: 0 5px;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
  color: #667eea !important;
}

.nav-link {
  font-weight: 500;
  color: var(--text-primary) !important;
  transition: all 0.3s ease;
  border-radius: 8px;
  padding: 8px 16px !important;
  margin: 0 5px;
}

.nav-link:hover {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white !important;
  transform: translateY(-2px);
}

.nav-link.active {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white !important;
}

.theme-toggle {
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.2rem;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.theme-toggle:hover {
  background: rgba(102, 126, 234, 0.1);
  transform: scale(1.1);
}

.admin-toggle {
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.2rem;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.admin-toggle:hover {
  background: rgba(220, 53, 69, 0.1);
  transform: scale(1.1);
}

.admin-toggle.admin-active {
  background: rgba(220, 53, 69, 0.2);
  color: #dc3545;
}

.hero-section {
  background: var(--hero-bg);
  color: white;
  padding: 80px 0;
  margin-bottom: 40px;
  border-radius: 0 0 30px 30px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 20px;
}

.post-form-card,
.admin-login-card {
  background: var(--card-bg);
  border-radius: 20px;
  box-shadow: var(--shadow);
  border: none;
  margin-bottom: 40px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.admin-login-header {
  background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
  color: white;
  padding: 25px 30px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.post-form-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 25px 30px;
  margin: 0;
}

.admin-badge {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-left: 10px;
}

.form-control {
  border: 2px solid var(--input-border);
  border-radius: 12px;
  padding: 15px;
  font-size: 16px;
  transition: all 0.3s ease;
  background: var(--input-bg);
  color: var(--input-text);
}

.form-control:focus {
  border-color: #667eea;
  box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
  background: var(--input-bg);
  color: var(--input-text);
}

.form-control::placeholder {
  color: var(--input-placeholder);
}

.btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  border-radius: 12px;
  padding: 12px 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.post-card {
  background: var(--card-bg);
  border-radius: 20px;
  box-shadow: var(--shadow);
  border: none;
  margin-bottom: 30px;
  overflow: hidden;
  transition: all 0.3s ease;
  width: 100%;
  box-sizing: border-box;
}

.post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.post-header {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 25px 30px;
  border-bottom: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

[data-theme="dark"] .post-header {
  background: linear-gradient(135deg, #2a2a3e 0%, #1a1a2e 100%);
}

.post-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
  transition: all 0.3s ease;
}

.post-content {
  padding: 25px 30px;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.comments-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #f1f3f4 100%);
  padding: 30px;
  border-top: 1px solid var(--border-color);
  transition: all 0.3s ease;
  border-radius: 0 0 15px 15px;
  width: 100%;
  box-sizing: border-box;
}

[data-theme="dark"] .comments-section {
  background: linear-gradient(135deg, #2a2a3e 0%, #1a1a2e 100%);
}

.comments-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.comment-item {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-left: 4px solid #667eea;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.comment-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.comment-header strong {
  color: var(--text-primary);
  font-weight: 600;
}

.comment-header small {
  color: var(--text-light);
  font-size: 0.85rem;
}

.comment-text {
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 8px;
}

.comments-list {
  margin-bottom: 20px;
  width: 100%;
  box-sizing: border-box;
}

.comment-form {
  margin-top: 20px;
  background: var(--card-bg);
  padding: 25px;
  border-radius: 15px;
  border: 1px solid var(--border-color);
  box-shadow: none;
  width: 100%;
  box-sizing: border-box;
}

.comment-form h5 {
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.comment-form h5 i {
  color: #667eea;
}

.input-group {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 15px;
  background: transparent;
  width: 100%;
  box-sizing: border-box;
  border-radius: 12px;
  overflow: visible;
  box-shadow: none;
}

.input-group input,
.input-group textarea {
  display: block;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
  margin: 0;
  border: 2px solid var(--border-color);
  border-radius: 10px;
  padding: 15px 18px;
  background: var(--card-bg);
  color: var(--text-primary);
  font-size: 14px;
  transition: all 0.3s ease;
  font-family: inherit;
  resize: none;
}

.input-group input {
  font-weight: 500;
  background: linear-gradient(135deg, var(--card-bg) 0%, rgba(102, 126, 234, 0.02) 100%);
}

.input-group textarea {
  min-height: 80px;
  resize: vertical;
}

.input-group input:focus,
.input-group textarea:focus {
  border-color: #667eea;
  box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
  outline: none;
  transform: translateY(-1px);
}

.input-group input::placeholder,
.input-group textarea::placeholder {
  color: var(--text-light);
  opacity: 0.7;
}

.input-group .btn {
  align-self: flex-end;
  margin-top: 5px;
  padding: 12px 25px;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.3s ease;
  width: auto;
  min-width: 150px;
}

.input-group .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.btn-outline-secondary {
  border: none;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  font-weight: 600;
  padding: 12px 25px;
  transition: all 0.3s ease;
}

.btn-outline-secondary:hover {
  background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
  color: white;
  transform: translateY(-1px);
}

.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-light);
  transition: all 0.3s ease;
}

.empty-state i {
  font-size: 4rem;
  margin-bottom: 20px;
  opacity: 0.5;
}

.stats {
  background: var(--card-bg);
  border-radius: 15px;
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.stat-item {
  text-align: center;
  padding: 15px;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #667eea;
}

.stat-label {
  color: var(--text-light);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.visitor-notice {
  background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
  border: 1px solid #ffeaa7;
  border-radius: 15px;
  padding: 20px;
  margin-bottom: 30px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

[data-theme="dark"] .visitor-notice {
  background: linear-gradient(135deg, #2a2a3e 0%, #1a1a2e 100%);
  border: 1px solid #667eea;
  color: var(--text-secondary);
}

.visitor-notice i {
  font-size: 2rem;
  color: #856404;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

[data-theme="dark"] .visitor-notice i {
  color: #667eea;
}

.visitor-notice h5 {
  color: #856404;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

[data-theme="dark"] .visitor-notice h5 {
  color: var(--text-primary);
}

.visitor-notice p {
  color: #856404;
  margin: 0;
  transition: all 0.3s ease;
}

[data-theme="dark"] .visitor-notice p {
  color: var(--text-secondary);
}

.form-label {
  color: var(--text-primary);
  transition: all 0.3s ease;
}

textarea.form-control {
  resize: vertical;
  min-height: 60px;
  font-family: inherit;
  line-height: 1.5;
  transition: all 0.3s ease;
}

textarea.form-control:focus {
  border-color: #667eea;
  box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.comment-form textarea.form-control,
.reply-form textarea.form-control {
  border-radius: 8px 0 0 8px;
  border-right: none;
}

.comment-form .input-group .btn,
.reply-form .input-group .btn {
  border-radius: 0 8px 8px 0;
  border-left: none;
}

.reply-form {
  margin-top: 15px;
  padding: 15px 10px;
  background: var(--card-bg);
  border-radius: 10px;
  border-left: 4px solid #667eea;
  box-shadow: none;
}

.reply-form .input-group {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  background: transparent;
}

.reply-form input,
.reply-form textarea {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
  display: block;
  margin: 0;
  padding: 10px 12px;
  font-size: 14px;
  border-radius: 8px;
  border: 1.5px solid var(--border-color);
  background: var(--card-bg);
  color: var(--text-primary);
  resize: vertical;
  min-height: 36px;
}

.reply-form .form-control {
  display: block;
  width: 100% !important;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
  margin: 0;
  padding: 10px 12px;
  font-size: 14px;
  border-radius: 8px;
  border: 1.5px solid var(--border-color);
  background: var(--card-bg);
  color: var(--text-primary);
  resize: vertical;
  min-height: 36px;
}
.reply-form textarea.form-control {
  min-height: 48px;
  max-height: 120px;
}

.replies-section {
  margin-top: 12px;
  margin-left: 20px;
  padding-left: 15px;
  border-left: 2px solid var(--border-color);
}

.reply-item {
  margin-bottom: 12px;
  padding: 8px 12px;
  background-color: rgba(102, 126, 234, 0.03);
  border-radius: 6px;
}

.reply-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}

.reply-header strong {
  font-size: 0.9rem;
  color: var(--text-primary);
}

.reply-header small {
  font-size: 0.75rem;
}

.reply-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

[data-theme="dark"] .reply-form {
  background-color: rgba(102, 126, 234, 0.1);
}

[data-theme="dark"] .reply-item {
  background-color: rgba(102, 126, 234, 0.05);
}

.about-area {
  background: linear-gradient(135deg, #f8f9fa 60%, #e9eafc 100%);
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(102, 126, 234, 0.10);
  padding: 32px 28px;
  margin-bottom: 32px;
  border: 1.5px solid #e0e0f7;
  transition: all 0.3s ease;
}
[data-theme="dark"] .about-area {
  background: linear-gradient(135deg, #23234a 60%, #1a1a2e 100%);
  border: 1.5px solid #2a2a3e;
}
.about-area-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #667eea;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.about-area p {
  color: var(--text-secondary);
  font-size: 1.08rem;
  margin-bottom: 0.7em;
}

.about-box {
  background: var(--about-box-bg);
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(102, 126, 234, 0.10);
  padding: 36px 28px 28px 28px;
  margin-bottom: 36px;
  border: 1.5px solid var(--about-box-border);
  transition: box-shadow 0.3s, border 0.3s;
}
.about-box:hover {
  box-shadow: 0 8px 32px rgba(102, 126, 234, 0.18);
  border: 1.5px solid #b3b3e6;
}
.about-box-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #5a4fcf;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  letter-spacing: 0.5px;
  position: relative;
}

[data-theme="dark"] .about-box-title {
  color: #667eea;
}
.about-box-title::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  border-radius: 2px;
}
.about-box p {
  color: var(--text-secondary);
  font-size: 1.08rem;
  margin-bottom: 0.7em;
}
.about-box .social-link.linkedin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #0a66c2;
  color: #fff !important;
  border-radius: 32px;
  padding: 0.7em 1.4em;
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  box-shadow: none;
  text-decoration: none;
  gap: 10px;
  letter-spacing: 0.5px;
  transition: background 0.18s, transform 0.15s;
}
.about-box .social-link.linkedin:hover {
  background: #004182;
  color: #fff !important;
  transform: translateY(-1px) scale(1.04);
}
.about-box .social-link.linkedin i {
  font-size: 1.35em;
}
@media (max-width: 600px) {
  .about-box {
    padding: 22px 8px 18px 8px;
  }
  .about-box-title {
    font-size: 1.15rem;
    gap: 7px;
  }
  .about-box-title::after {
    width: 32px;
    height: 2px;
    bottom: -4px;
  }
}

@media (max-width: 768px) {
  .playlist-item {
    width: calc(50% - 10px);
    min-height: 250px;
  }
  
  .playlist-admin-actions {
    top: 5px;
    right: 5px;
  }
  
  .playlist-admin-actions .btn {
    font-size: 0.7rem;
    padding: 4px 6px;
  }
}

@media (max-width: 480px) {
  .playlist-item {
    width: 100%;
    margin-bottom: 15px;
    min-height: 300px;
    padding: 15px;
  }
  
  .playlist-container {
    padding: 15px;
  }
  
  .playlist-header {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .playlist-header h2 {
    font-size: 1.5rem;
  }
  
  .playlist-title {
    font-size: 1rem;
  }
  
  .playlist-description {
    font-size: 0.8rem;
  }
  
  .comment-form .row {
    flex-direction: column;
  }
  
  .comment-form .col-md-4,
  .comment-form .col-md-8 {
    width: 100%;
    margin-bottom: 10px;
  }
} 

/* Contact Section Styles */
.contact-section {
  margin-top: 60px;
  margin-bottom: 40px;
}

.contact-card {
  background: var(--card-bg);
  border-radius: 20px;
  box-shadow: var(--shadow);
  border: none;
  overflow: hidden;
  transition: all 0.3s ease;
}

.contact-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 35px 30px;
  text-align: center;
  position: relative;
}

.contact-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
  pointer-events: none;
}

.contact-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  position: relative;
  z-index: 1;
}

.contact-header p {
  font-size: 1.2rem;
  opacity: 0.95;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

.contact-body {
  padding: 40px;
  background: var(--card-bg);
}

.contact-body .form-label {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 10px;
  font-size: 1rem;
}

.contact-body .form-control {
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 15px;
  font-size: 16px;
  transition: all 0.3s ease;
  background: var(--card-bg);
  color: var(--text-primary);
}

.contact-body .form-control:focus {
  border-color: #667eea;
  box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
  background: var(--card-bg);
  color: var(--text-primary);
  transform: translateY(-1px);
}

.contact-body .btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  border-radius: 12px;
  padding: 15px 35px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-body .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

/* Dark mode için contact section */
[data-theme="dark"] .contact-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
}

[data-theme="dark"] .contact-header {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

[data-theme="dark"] .contact-body .form-control {
  background: var(--card-bg);
  color: var(--text-primary);
  border-color: var(--border-color);
}

[data-theme="dark"] .contact-body .form-control:focus {
  background: var(--card-bg);
  color: var(--text-primary);
}

/* Mobile responsive */
@media (max-width: 768px) {
  .contact-header h2 {
    font-size: 2rem;
  }
  
  .contact-header p {
    font-size: 1.1rem;
  }
  
  .contact-body {
    padding: 25px;
  }
  
  .contact-body .btn-primary {
    padding: 12px 25px;
    font-size: 14px;
  }
} 

/* Playlist Section Styles */
.playlist-section {
  margin-top: 60px;
  margin-bottom: 40px;
}

.playlist-card {
  background: var(--card-bg);
  border-radius: 20px;
  box-shadow: var(--shadow);
  border: none;
  overflow: hidden;
  transition: all 0.3s ease;
}

.playlist-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 25px 30px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.playlist-header h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.playlist-container {
  padding: 30px;
}

.playlist-item {
  background: rgba(102, 126, 234, 0.05);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  border-left: 4px solid #667eea;
  transition: all 0.3s ease;
}

.playlist-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
}

.playlist-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.playlist-item-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.playlist-icon {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.playlist-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
}

.playlist-description {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
}

.spotify-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #1DB954;
  font-weight: 600;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 8px;
  background: rgba(29, 185, 84, 0.1);
  transition: all 0.3s ease;
  align-self: flex-start;
}

.spotify-link:hover {
  background: rgba(29, 185, 84, 0.2);
  color: #1DB954;
  transform: translateY(-1px);
}

/* Dark mode için playlist section */
[data-theme="dark"] .playlist-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
}

[data-theme="dark"] .playlist-header {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

[data-theme="dark"] .playlist-item {
  background: rgba(102, 126, 234, 0.1);
}

/* Mobile responsive */
@media (max-width: 768px) {
  .playlist-header h2 {
    font-size: 1.5rem;
  }
  
  .playlist-container {
    padding: 20px;
  }
  
  .playlist-item {
    padding: 15px;
  }
} 

/* Responsive navbar styles */
@media (max-width: 991px) {
  .navbar-collapse {
    background: var(--navbar-bg);
    border-radius: 12px;
    margin-top: 10px;
    padding: 15px;
    box-shadow: var(--shadow);
  }
  
  .navbar-nav {
    gap: 10px;
  }
  
  .navbar-nav .nav-item {
    width: 100%;
  }
  
  .nav-link {
    width: 100%;
    text-align: center;
    padding: 12px 16px !important;
    margin: 0;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
  }
  
  .nav-link:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white !important;
    transform: translateY(-2px);
  }
  
  .nav-link.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white !important;
    font-weight: 600;
  }
  
  .theme-toggle,
  .admin-toggle {
    width: 100%;
    height: 45px;
    margin: 5px 0;
    border-radius: 8px;
    font-size: 1.1rem;
  }
  
  .theme-toggle:hover,
  .admin-toggle:hover {
    transform: translateY(-2px);
  }
  
  .navbar-toggler {
    border: 2px solid var(--text-primary);
    border-radius: 8px;
    padding: 8px 12px;
    transition: all 0.3s ease;
  }
  
  .navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
    border-color: #667eea;
  }
  
  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(102, 126, 234, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }
}

/* Dark mode responsive navbar */
@media (max-width: 991px) {
  [data-theme="dark"] .navbar-collapse {
    background: var(--navbar-bg);
    border: 1px solid var(--border-color);
  }
  
  [data-theme="dark"] .navbar-toggler {
    border-color: var(--text-primary);
  }
  
  [data-theme="dark"] .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }
}

/* Dark mode navbar */
[data-theme="dark"] .navbar {
  background: rgba(26, 26, 46, 0.95) !important;
  border: 2px solid #667eea;
  border-radius: 12px;
  margin: 10px;
}

/* GECE MODU KUTU VE BAŞLIK OVERRIDE */
[data-theme="dark"] .about-box,
[data-theme="dark"] .playlist-about-box,
[data-theme="dark"] .contact-about-box {
  background: #18192b !important;
  border-color: #23243a !important;
  box-shadow: 0 4px 24px rgba(20, 20, 40, 0.25) !important;
}
[data-theme="dark"] .about-box-title,
[data-theme="dark"] .playlist-title-accent,
[data-theme="dark"] .contact-title-accent {
  color: #8faaff !important;
  border-bottom: 3px solid #8faaff !important;
  background: transparent !important;
}
[data-theme="dark"] .about-box-title::after,
[data-theme="dark"] .playlist-title-accent::after,
[data-theme="dark"] .contact-title-accent::after {
  background: linear-gradient(90deg, #8faaff 0%, #667eea 100%) !important;
}
[data-theme="dark"] .about-box-title i,
[data-theme="dark"] .playlist-title-accent i,
[data-theme="dark"] .contact-title-accent i,
[data-theme="dark"] .about-box-title svg,
[data-theme="dark"] .playlist-title-accent svg,
[data-theme="dark"] .contact-title-accent svg {
  color: #8faaff !important;
  fill: #8faaff !important;
}
[data-theme="dark"] .about-box-title,
[data-theme="dark"] .playlist-title-accent,
[data-theme="dark"] .contact-title-accent {
  border-bottom: 3px solid #8faaff !important;
}
[data-theme="dark"] .playlist-card {
  background: #23243a !important;
  box-shadow: 0 2px 12px rgba(20, 20, 40, 0.18) !important;
  border: none !important;
}
[data-theme="dark"] .contact-card {
  background: #23243a !important;
  box-shadow: 0 2px 12px rgba(20, 20, 40, 0.18) !important;
  border: none !important;
}
[data-theme="dark"] .playlist-item {
  background: #23243a !important;
  color: #e0e6f8 !important;
}
[data-theme="dark"] .playlist-title {
  color: #b3c7ff !important;
}
[data-theme="dark"] .playlist-description {
  color: #b0b0c0 !important;
}
[data-theme="dark"] .spotify-link {
  background: #18192b !important;
  color: #1ed760 !important;
}
[data-theme="dark"] .contact-body {
  background: #23243a !important;
}
[data-theme="dark"] .contact-about-box p {
  color: #b0b0c0 !important;
} 