:root {
  --color-dark: #121212;
  --color-dark-700: #1a1a1a;
  --color-dark-600: #222222;
  --color-dark-500: #2c2c2c;
  --color-dark-400: #373737;
  --color-dark-300: #444444;
  --color-dark-200: #666666;

  --color-light: #e0e0e0;
  --color-light-800: #c1c2c5;
  --color-light-700: #a6a7ab;
  --color-light-600: #909296;
  --color-light-500: #5c5f66;

  --primary: #6b8afd;
  --primary-hover: #5178fb;
  --primary-active: #3d66f5;
  --primary-light: rgba(107, 138, 253, 0.1);

  --discord: #5865f2;
  --discord-hover: #4752c4;

  --red: #f03e3e;
  --green: #37b24d;
  --yellow: #f59f00;
  --gray: #868e96;

  --fz-xs: 0.75rem;
  --fz-sm: 0.875rem;
  --fz-md: 1rem;
  --fz-lg: 1.125rem;
  --fz-xl: 1.25rem;
  --fz-2xl: 1.5rem;
  --fz-3xl: 1.875rem;
  --fz-4xl: 2.25rem;
  --fz-5xl: 3rem;

  --spacing-xs: 0.5rem;
  --spacing-sm: 0.75rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.25rem;
  --spacing-xl: 1.5rem;
  --spacing-2xl: 2rem;
  --spacing-3xl: 2.5rem;
  --spacing-4xl: 3rem;

  --radius-xs: 0.125rem;
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;

  --shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.15);
  --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.5);

  --container-width: 1140px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  background: linear-gradient(135deg, var(--color-dark), #161616);
  background-size: 400% 400%;
  animation: gradientBG 15s ease infinite;
  color: var(--color-light);
  line-height: 1.6;
  font-size: var(--fz-md);
  font-weight: 400;
  min-height: 100vh;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: var(--spacing-md);
}

h1 {
  font-size: var(--fz-5xl);
}

h2 {
  font-size: var(--fz-4xl);
}

h3 {
  font-size: var(--fz-3xl);
}

p {
  margin-bottom: var(--spacing-lg);
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-hover);
}

ul,
ol {
  list-style-position: inside;
  margin-bottom: var(--spacing-lg);
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--spacing-xl);
  position: relative;
  z-index: 1;
}

@keyframes gradientBG {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes glow {
  0% {
    box-shadow: 0 0 5px rgba(107, 138, 253, 0.5);
  }
  50% {
    box-shadow: 0 0 20px rgba(107, 138, 253, 0.8);
  }
  100% {
    box-shadow: 0 0 5px rgba(107, 138, 253, 0.5);
  }
}

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
}

.animated {
  animation-duration: 0.8s;
  animation-fill-mode: both;
}

.delay-1 {
  animation-delay: 0.2s;
}

.delay-2 {
  animation-delay: 0.4s;
}

.delay-3 {
  animation-delay: 0.6s;
}

.delay-4 {
  animation-delay: 0.8s;
}

header {
  background-color: rgba(18, 18, 18, 0.8);
  backdrop-filter: blur(10px);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-xs);
  transition: all 0.4s ease;
}

header.scrolled {
  background-color: rgba(18, 18, 18, 0.95);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(15px);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-md) 0;
  transition: all 0.3s ease;
}

.logo {
  font-size: var(--fz-lg);
  font-weight: 800;
  color: var(--color-light);
  letter-spacing: 1.5px;
  position: relative;
  overflow: hidden;
  display: inline-block;
  padding: 5px 0;
}

.logo::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: var(--primary);
  bottom: 0;
  left: -100%;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.logo:hover {
  color: var(--primary);
}

.logo:hover::after {
  left: 0;
}

.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
}

.nav-links li {
  margin-left: var(--spacing-2xl);
  position: relative;
}

.nav-links a {
  color: var(--color-light-800);
  font-weight: 500;
  font-size: var(--fz-sm);
  position: relative;
  transition: all 0.3s ease;
  padding: 5px 0;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-light);
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  bottom: -4px;
  left: 0;
  transition: width 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.hamburger {
  display: none;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--color-light);
  margin: 6px 0;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hero {
  padding-top: 120px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    ellipse at center,
    rgba(107, 138, 253, 0.15) 0%,
    rgba(18, 18, 18, 0) 70%
  );
  pointer-events: none;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.hero-content {
  max-width: 650px;
}

.hero h1 {
  margin-bottom: var(--spacing-lg);
  line-height: 1.2;
  position: relative;
}

.hero h1::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), transparent);
}

.hero p {
  font-size: var(--fz-lg);
  color: var(--color-light-700);
  margin-bottom: var(--spacing-2xl);
}

.highlight {
  color: var(--primary);
  position: relative;
  display: inline-block;
}

.highlight::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 30%;
  background-color: rgba(107, 138, 253, 0.1);
  bottom: 0;
  left: 0;
  z-index: -1;
  transition: height 0.3s ease;
}

.highlight:hover::after {
  height: 100%;
}

.hero-btns {
  display: flex;
  gap: var(--spacing-md);
  margin-top: var(--spacing-2xl);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-md) var(--spacing-2xl);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: var(--fz-sm);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  transition: width 0.3s ease;
  z-index: -1;
}

.btn-primary {
  background-color: var(--primary);
  color: white;
  border: 1px solid var(--primary);
}

.btn-primary::before {
  background-color: var(--primary-hover);
}

.btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(107, 138, 253, 0.3);
}

.btn-primary:hover::before {
  width: 100%;
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-light);
  border: 1px solid var(--color-light-700);
}

.btn-secondary::before {
  background-color: rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
  border-color: var(--color-light);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover::before {
  width: 100%;
}

.btn-full {
  width: 100%;
}

/* Tema Geçiş Butonu - Sol Alt Köşe */
.theme-toggle {
  position: fixed;
  bottom: var(--spacing-lg);
  left: var(--spacing-lg);
  width: 50px;
  height: 50px;
  background-color: var(--color-dark-500);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  z-index: 1000;
}

.theme-toggle:hover {
  transform: rotate(90deg);
  background-color: var(--primary);
}

.theme-toggle i {
  color: var(--color-light);
  font-size: var(--fz-lg);
  transition: color 0.3s ease;
}

.theme-toggle.light-mode {
  background-color: var(--primary);
}

.theme-toggle.light-mode i {
  color: var(--color-light);
}

/* Açık Tema Renkleri ve Stilleri */
body.light-theme {
  --color-dark: #ffffff;
  --color-dark-700: #f5f5f5;
  --color-dark-600: #e0e0e0;
  --color-dark-500: #d3d3d3;
  --color-dark-400: #c0c0c0;
  --color-dark-300: #a9a9a9;
  --color-dark-200: #808080;

  --color-light: #121212;
  --color-light-800: #2c2c2c;
  --color-light-700: #444444;
  --color-light-600: #666666;
  --color-light-500: #808080;

  background: linear-gradient(135deg, #f0f0f0, #ffffff);
}

body,
body * {
  transition: background-color 0.3s ease, color 0.3s ease, background 0.3s ease,
    transform 0.3s ease, box-shadow 0.3s ease;
}

body.light-theme header {
  background-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

body.light-theme .logo {
  color: #121212;
}

body.light-theme .nav-links a {
  color: #444444;
}

body.light-theme .nav-links a:hover,
body.light-theme .nav-links a.active {
  color: var(--primary);
}

body.light-theme .hamburger span {
  background-color: #121212;
}

body.light-theme .hero {
  background: linear-gradient(
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0.8)
  );
}

body.light-theme .hero::before {
  background: radial-gradient(
    ellipse at center,
    rgba(107, 138, 253, 0.1) 0%,
    rgba(255, 255, 255, 0) 70%
  );
}

body.light-theme .btn-secondary {
  color: #121212;
  border-color: #666666;
}

body.light-theme .btn-secondary:hover {
  border-color: #121212;
}

.discord-profile-card {
  background-color: var(--color-dark-600);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  width: 100%;
  margin-bottom: var(--spacing-2xl);
  border: 1px solid var(--color-dark-400);
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transform: translateY(0);
}

.discord-profile-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-lg), 0 0 20px rgba(107, 138, 253, 0.2);
  border-color: var(--primary);
}

.discord-banner {
  height: 90px;
  background-color: var(--red);
  position: relative;
  overflow: hidden;
}

.discord-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    rgba(107, 138, 253, 0.6),
    rgba(240, 62, 62, 0.6)
  );
  z-index: 1;
  opacity: 0.8;
}

.discord-banner::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.3) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  animation: rotateBanner 15s linear infinite;
  z-index: 2;
}

@keyframes rotateBanner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.discord-profile-content {
  padding: var(--spacing-xl);
}

.discord-avatar-section {
  display: flex;
  align-items: flex-end;
  margin-top: -50px;
  margin-bottom: var(--spacing-xl);
  position: relative;
  z-index: 10;
}

.discord-avatar-container {
  position: relative;
  margin-right: var(--spacing-lg);
}

.discord-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 4px solid var(--color-dark-600);
  object-fit: cover;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.discord-profile-card:hover .discord-avatar {
  transform: scale(1.1) rotate(5deg);
  border-color: var(--primary);
}

.status-indicator {
  position: absolute;
  bottom: 5px;
  right: 5px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 3px solid var(--color-dark-600);
  z-index: 2;
}

.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: var(--spacing-xs);
}

.online,
.status-dot.online {
  background-color: var(--green);
  box-shadow: 0 0 10px rgba(55, 178, 77, 0.7);
  animation: pulse 2s infinite;
}

.idle,
.status-dot.idle {
  background-color: var(--yellow);
  box-shadow: 0 0 10px rgba(245, 159, 0, 0.7);
}

.dnd,
.status-dot.dnd {
  background-color: var(--red);
  box-shadow: 0 0 10px rgba(240, 62, 62, 0.7);
}

.offline,
.status-dot.offline {
  background-color: var(--gray);
}

.discord-badge-username {
  display: flex;
  flex-direction: column;
}

.discord-username {
  font-size: var(--fz-lg);
  font-weight: 700;
  color: var(--color-light);
}

.discord-tag {
  font-size: var(--fz-xs);
  color: var(--color-light-700);
  font-weight: 400;
}

.discord-status {
  display: flex;
  align-items: center;
  font-size: var(--fz-xs);
  color: var(--color-light-700);
  margin-top: var(--spacing-xs);
}

.discord-activity-section {
  margin: var(--spacing-lg) 0;
  background-color: var(--color-dark-500);
  border-radius: var(--radius-md);
  padding: var(--spacing-md);
  transition: all 0.3s ease;
}

.discord-profile-card:hover .discord-activity-section {
  background-color: var(--color-dark-400);
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
}

.activity-item {
  display: flex;
  align-items: center;
}

.activity-icon {
  width: 36px;
  height: 36px;
  background-color: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: var(--spacing-md);
  color: white;
  font-size: var(--fz-md);
  transition: all 0.3s ease;
}

.discord-profile-card:hover .activity-icon {
  transform: rotate(10deg) scale(1.1);
}

.activity-details {
  flex: 1;
}

.activity-name {
  font-weight: 600;
  color: var(--color-light);
  font-size: var(--fz-sm);
}

.activity-info {
  color: var(--color-light-800);
  font-size: var(--fz-xs);
  margin-top: 2px;
}

.activity-timestamp {
  color: var(--color-light-600);
  font-size: var(--fz-xs);
  margin-top: 2px;
  font-style: italic;
}

.discord-badges-section {
  margin-bottom: var(--spacing-lg);
}

.section-title {
  display: block;
  font-size: var(--fz-xs);
  color: var(--color-light-600);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: var(--spacing-sm);
}

.badges-container {
  display: flex;
  gap: var(--spacing-sm);
}

.badges-content {
  display: flex;
  gap: var(--spacing-sm);
  align-items: center;
}

.badge {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fz-sm);
  cursor: help;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  opacity: 0.7;
}

.badge:hover {
  opacity: 1;
  transform: scale(1.2) rotate(10deg);
}

.code-badge {
  background-color: rgba(107, 138, 253, 0.2);
  color: var(--primary);
  border: 1px solid rgba(107, 138, 253, 0.3);
}

.db-badge {
  background-color: rgba(55, 178, 77, 0.2);
  color: var(--green);
  border: 1px solid rgba(55, 178, 77, 0.3);
}

.web-badge {
  background-color: rgba(245, 159, 0, 0.2);
  color: var(--yellow);
  border: 1px solid rgba(245, 159, 0, 0.3);
}

.discord-contact {
  margin-top: var(--spacing-xl);
}

.discord-contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: var(--spacing-md) var(--spacing-lg);
  background-color: var(--discord);
  color: white;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: var(--fz-sm);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.discord-contact-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: all 0.5s ease;
}

.discord-contact-btn:hover {
  background-color: var(--discord-hover);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(88, 101, 242, 0.3);
}

.discord-contact-btn:hover::before {
  left: 100%;
}

.discord-contact-btn i {
  margin-right: var(--spacing-sm);
}

.nitro-icon {
  margin-left: var(--spacing-xs);
  color: #ff73fa;
  font-size: var(--fz-sm);
  vertical-align: middle;
  animation: pulse 2s infinite;
}

.section-title {
  text-align: center;
  margin-bottom: var(--spacing-4xl);
  font-size: var(--fz-4xl);
  color: var(--color-light);
  position: relative;
  font-weight: 800;
}

.section-title::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), transparent);
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
}

.stats {
  padding: var(--spacing-4xl) 0;
  background-color: var(--color-dark-700);
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at top right,
    rgba(107, 138, 253, 0.1),
    transparent 70%
  );
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-2xl);
}

.stat-card {
  background-color: var(--color-dark-600);
  border-radius: var(--radius-lg);
  padding: var(--spacing-2xl);
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
  box-shadow: var(--shadow-md);
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-dark-500);
}

.stat-card::before {
  content: "";
  position: absolute;
  top: -100%;
  left: -100%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(107, 138, 253, 0.1),
    transparent 70%
  );
  transition: all 0.5s ease;
  opacity: 0;
}

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.stat-card:hover::before {
  top: -50%;
  left: -50%;
  opacity: 1;
}

.stat-icon {
  width: 80px;
  height: 80px;
  background-color: var(--primary-light);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
  z-index: 1;
}

.stat-card:hover .stat-icon {
  transform: rotate(15deg) scale(1.1);
  background-color: var(--primary);
}

.stat-card:hover .stat-icon i {
  color: white;
  transform: rotate(-15deg);
}

.stat-icon i {
  color: var(--primary);
  font-size: var(--fz-3xl);
  transition: all 0.5s ease;
}

.stat-content h3 {
  font-size: var(--fz-2xl);
  color: var(--primary);
  margin-bottom: var(--spacing-xs);
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}

.stat-card:hover .stat-content h3 {
  transform: translateX(5px);
}

.stat-content p {
  color: var(--color-light-700);
  font-size: var(--fz-sm);
}

.about {
  padding: var(--spacing-4xl) 0;
  background-color: var(--color-dark-700);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(107, 138, 253, 0.15),
    transparent 70%
  );
  border-radius: 50%;
  top: -150px;
  left: -150px;
}

.about::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(55, 178, 77, 0.1), transparent 70%);
  border-radius: 50%;
  bottom: -200px;
  right: -200px;
}

.about-content {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-4xl);
  position: relative;
  z-index: 1;
}

.about-img {
  flex: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-dark-400);
  position: relative;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.about-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(107, 138, 253, 0.2), transparent);
  z-index: 1;
  opacity: 0;
  transition: all 0.5s ease;
}

.about-img:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-lg), 0 0 20px rgba(107, 138, 253, 0.3);
  border-color: var(--primary);
}

.about-img:hover::before {
  opacity: 1;
}

.about-img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.7s ease;
}

.about-img:hover img {
  transform: scale(1.05);
}

.about-text {
  flex: 1.3;
}

.about-text h3 {
  font-size: var(--fz-2xl);
  margin-bottom: var(--spacing-md);
  color: var(--color-light);
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}

.about-text h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), transparent);
}

.about-text p {
  color: var(--color-light-700);
  margin-bottom: var(--spacing-lg);
  font-size: var(--fz-md);
  line-height: 1.7;
}

.skills {
  margin-top: var(--spacing-2xl);
}

.skills h3 {
  font-size: var(--fz-xl);
  margin-bottom: var(--spacing-lg);
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}

.skills h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), transparent);
}

.skill-item {
  margin-bottom: var(--spacing-md);
}

.skill-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--spacing-xs);
  font-size: var(--fz-sm);
}

.skill-bar {
  height: 8px;
  background-color: var(--color-dark-500);
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
}

.skill-bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transform: translateX(-100%);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  100% {
    transform: translateX(100%);
  }
}

.skill-level {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--primary-hover));
  transform: translateX(-100%);
  transition: transform 1.5s cubic-bezier(0.17, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}

.skill-level::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  transform: skewX(-20deg) translateX(-20px);
  animation: sparkle 3s ease-in-out infinite;
}

@keyframes sparkle {
  0%,
  100% {
    transform: skewX(-20deg) translateX(-100%);
  }
  50% {
    transform: skewX(-20deg) translateX(300%);
  }
}

.projects {
  padding: var(--spacing-4xl) 0;
  background-color: var(--color-dark);
  position: relative;
  overflow: hidden;
}

.projects::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    ellipse at top right,
    rgba(107, 138, 253, 0.1),
    transparent 70%
  );
  top: 0;
  right: 0;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: var(--spacing-2xl);
}

.project-card {
  background-color: var(--color-dark-600);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border: 1px solid var(--color-dark-400);
  position: relative;
  z-index: 1;
}

.project-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(107, 138, 253, 0.1), transparent);
  opacity: 0;
  transition: all 0.5s ease;
  z-index: -1;
}

.project-card:hover {
  transform: translateY(-15px);
  box-shadow: var(--shadow-lg), 0 15px 30px rgba(107, 138, 253, 0.2);
  border-color: var(--primary);
}

.project-card:hover::before {
  opacity: 1;
}

.project-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.project-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent 70%,
    var(--color-dark-600)
  );
}

.project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.7s cubic-bezier(0.17, 0.84, 0.44, 1);
}

.project-card:hover .project-img img {
  transform: scale(1.1) rotate(2deg);
}

.project-info {
  padding: var(--spacing-xl);
}

.project-info h3 {
  font-size: var(--fz-xl);
  margin-bottom: var(--spacing-sm);
  color: var(--color-light);
  position: relative;
  display: inline-block;
  transition: all 0.3s ease;
}

.project-card:hover .project-info h3 {
  color: var(--primary);
}

.project-info p {
  color: var(--color-light-700);
  margin-bottom: var(--spacing-md);
  font-size: var(--fz-sm);
  line-height: 1.6;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-xs);
  margin-bottom: var(--spacing-md);
}

.tag {
  background-color: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-sm);
  padding: 4px 10px;
  font-size: var(--fz-xs);
  font-weight: 600;
  transition: all 0.3s ease;
}

.project-card:hover .tag {
  transform: translateY(-3px);
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
}

.project-links {
  display: flex;
  gap: var(--spacing-md);
}

.project-link {
  font-size: var(--fz-sm);
  font-weight: 600;
  color: var(--primary);
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}

.project-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--primary);
  transition: width 0.3s ease;
}

.project-link:hover {
  color: var(--primary-hover);
}

.project-link:hover::after {
  width: 100%;
}

.project-link i {
  margin-right: 4px;
}

.experience {
  padding: var(--spacing-4xl) 0;
  background-color: var(--color-dark-700);
  position: relative;
  overflow: hidden;
}

.experience::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    ellipse at center left,
    rgba(55, 178, 77, 0.1),
    transparent 70%
  );
  top: 0;
  left: 0;
}

.timeline {
  position: relative;
  max-width: 900px;
  margin: 40px auto 0;
  padding-bottom: 40px;
}

.timeline::after {
  content: "";
  position: absolute;
  width: 4px;
  background: linear-gradient(
    to bottom,
    var(--color-dark-400),
    var(--primary),
    var(--color-dark-400)
  );
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  width: 50%;
  margin-bottom: 60px;
  padding: 0 40px;
  opacity: 1; /* Başlangıçta görünür olmalı */
  z-index: 2;
}

.timeline-item::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: var(--primary);
  border: 4px solid var(--color-dark-700);
  border-radius: 50%;
  top: 0;
  z-index: 2;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: 0 0 0 rgba(107, 138, 253, 0.7);
  animation: pulse-timeline 2s infinite;
}

@keyframes pulse-timeline {
  0% {
    box-shadow: 0 0 0 0 rgba(107, 138, 253, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(107, 138, 253, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(107, 138, 253, 0);
  }
}

.timeline-item:hover::after {
  transform: scale(1.3);
}

.left {
  left: 0;
  text-align: right;
}

.right {
  left: 50%;
}

.left::after {
  right: -10px;
}

.right::after {
  left: -10px;
}

.timeline-content {
  background-color: var(--color-dark-600);
  border-radius: var(--radius-md);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-sm);
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border: 1px solid var(--color-dark-400);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.timeline-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(107, 138, 253, 0.1), transparent);
  opacity: 0;
  transition: all 0.5s ease;
  z-index: -1;
}

.timeline-content:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-lg), 0 15px 30px rgba(0, 0, 0, 0.15);
  border-color: var(--primary);
}

.timeline-content:hover::before {
  opacity: 1;
}

.timeline-date {
  display: inline-block;
  padding: 5px 12px;
  border-radius: var(--radius-sm);
  background-color: var(--primary-light);
  color: var(--primary);
  font-weight: 600;
  font-size: var(--fz-sm);
  margin-bottom: var(--spacing-sm);
  transition: all 0.3s ease;
}

.timeline-content:hover .timeline-date {
  background-color: var(--primary);
  color: white;
}

.timeline-content h3 {
  font-size: var(--fz-lg);
  margin-bottom: var(--spacing-xs);
  color: var(--color-light);
  transition: all 0.3s ease;
}

.timeline-content:hover h3 {
  color: var(--primary);
}

.timeline-content p {
  color: var(--color-light-700);
  font-size: var(--fz-sm);
  margin-bottom: var(--spacing-xs);
  line-height: 1.6;
}

/* Mobil Cihazlar İçin Timeline Görünümü */
@media (max-width: 768px) {
  .timeline::after {
    left: 30px;
  }

  .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 0;
  }

  .left,
  .right {
    left: 0;
    text-align: left;
  }

  .left::after,
  .right::after {
    left: 18px;
  }
}

.contact {
  padding: var(--spacing-4xl) 0;
  background-color: var(--color-dark);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    ellipse at bottom right,
    rgba(107, 138, 253, 0.1),
    transparent 70%
  );
  bottom: 0;
  right: 0;
}

.contact-content {
  display: flex;
  gap: var(--spacing-4xl);
  position: relative;
  z-index: 1;
}

.contact-info,
.contact-form {
  flex: 1;
}

.contact-info h3 {
  font-size: var(--fz-2xl);
  margin-bottom: var(--spacing-md);
  color: var(--color-light);
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.contact-info h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), transparent);
}

.contact-info p {
  color: var(--color-light-700);
  margin-bottom: var(--spacing-2xl);
  line-height: 1.7;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.contact-item:hover {
  transform: translateX(10px);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background-color: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: var(--spacing-md);
  flex-shrink: 0;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.contact-icon::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--primary);
  top: 100%;
  left: 0;
  transition: all 0.3s ease;
  z-index: -1;
}

.contact-item:hover .contact-icon {
  color: white;
  transform: rotate(360deg);
}

.contact-item:hover .contact-icon::before {
  top: 0;
}

.contact-text h4 {
  font-size: var(--fz-md);
  margin-bottom: 4px;
  color: var(--color-light);
  transition: all 0.3s ease;
}

.contact-text a,
.contact-text p {
  color: var(--color-light-700);
  font-size: var(--fz-sm);
  margin: 0;
  transition: all 0.3s ease;
}

.contact-text a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.form-group {
  margin-bottom: var(--spacing-md);
}

.form-control {
  width: 100%;
  padding: var(--spacing-md);
  background-color: var(--color-dark-600);
  border: 1px solid var(--color-dark-400);
  border-radius: var(--radius-md);
  color: var(--color-light);
  font-size: var(--fz-sm);
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-light);
}

.form-control::placeholder {
  color: var(--color-light-600);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

footer {
  background-color: var(--color-dark-700);
  padding: var(--spacing-4xl) 0 var(--spacing-xl);
  position: relative;
  overflow: hidden;
}

footer::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    ellipse at top center,
    rgba(107, 138, 253, 0.1),
    transparent 70%
  );
  top: 0;
  left: 0;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--spacing-3xl);
  margin-bottom: var(--spacing-3xl);
  position: relative;
  z-index: 1;
}

.footer-info {
  flex: 2;
  min-width: 250px;
}

.footer-info h3 {
  font-size: var(--fz-xl);
  margin-bottom: var(--spacing-md);
  color: var(--color-light);
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}

.footer-info h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), transparent);
}

.footer-info p {
  color: var(--color-light-700);
  margin-bottom: var(--spacing-lg);
  font-size: var(--fz-sm);
  line-height: 1.7;
}

.social-links {
  display: flex;
  gap: var(--spacing-sm);
}

.social-link {
  width: 40px;
  height: 40px;
  background-color: var(--color-dark-500);
  color: var(--color-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary);
  transition: all 0.3s ease;
  transform: translateY(100%);
}

.social-link i {
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.social-link:hover {
  transform: translateY(-5px) rotate(360deg);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-link:hover::before {
  transform: translateY(0);
}

.social-link:hover i {
  color: white;
}

.footer-links {
  flex: 1;
  min-width: 150px;
}

.footer-links h3 {
  font-size: var(--fz-xl);
  margin-bottom: var(--spacing-lg);
  color: var(--color-light);
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}

.footer-links h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), transparent);
}

.footer-links ul {
  list-style: none;
  margin: 0;
}

.footer-links li {
  margin-bottom: var(--spacing-sm);
}

.footer-links a {
  color: var(--color-light-700);
  font-size: var(--fz-sm);
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  padding-left: 0;
}

.footer-links a::before {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--primary);
  left: -15px;
  top: 50%;
  transform: translateY(-50%) scale(0);
  transition: all 0.3s ease;
  opacity: 0;
}

.footer-links a:hover {
  color: var(--primary);
  transform: translateX(10px);
}

.footer-links a:hover::before {
  transform: translateY(-50%) scale(1);
  opacity: 1;
}

.footer-bottom {
  border-top: 1px solid var(--color-dark-400);
  padding-top: var(--spacing-xl);
  text-align: center;
  position: relative;
  z-index: 1;
}

.footer-bottom p {
  color: var(--color-light-600);
  font-size: var(--fz-xs);
  margin: 0;
}

@media (max-width: 992px) {
  :root {
    --fz-5xl: 2.5rem;
    --fz-4xl: 2rem;
    --fz-3xl: 1.75rem;
    --fz-2xl: 1.5rem;
  }

  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero h1::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .discord-profile-card {
    max-width: 450px;
    margin: var(--spacing-2xl) auto;
  }

  .about-content {
    flex-direction: column;
  }

  .about-img {
    width: 70%;
    margin: 0 auto var(--spacing-2xl);
  }

  .contact-content {
    flex-direction: column;
  }

  .contact-info {
    margin-bottom: var(--spacing-2xl);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 var(--spacing-lg);
  }

  .hero h1 {
    font-size: var(--fz-4xl);
  }

  .hero p {
    font-size: var(--fz-md);
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    flex-direction: column;
    width: 70%;
    height: 100vh;
    background-color: rgba(34, 34, 34, 0.98);
    backdrop-filter: blur(10px);
    padding: 120px var(--spacing-lg) var(--spacing-lg);
    transition: right 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 999;
    box-shadow: var(--shadow-lg);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li {
    margin: var(--spacing-md) 0;
    opacity: 0;
    transform: translateX(30px);
  }

  .nav-links.active li {
    opacity: 1;
    transform: translateX(0);
    transition: all 0.5s ease;
  }

  .nav-links.active li:nth-child(1) {
    transition-delay: 0.1s;
  }

  .nav-links.active li:nth-child(2) {
    transition-delay: 0.2s;
  }

  .nav-links.active li:nth-child(3) {
    transition-delay: 0.3s;
  }

  .nav-links.active li:nth-child(4) {
    transition-delay: 0.4s;
  }

  .nav-links.active li:nth-child(5) {
    transition-delay: 0.5s;
  }

  .hamburger {
    display: block;
    z-index: 1000;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background-color: var(--primary);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
    background-color: var(--primary);
  }

  .timeline::after {
    left: 30px;
  }

  .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 0;
  }

  .left,
  .right {
    left: 0;
    text-align: left;
  }

  .left::after,
  .right::after {
    left: 12px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  :root {
    --spacing-4xl: 2.5rem;
    --spacing-3xl: 2rem;
  }

  .hero-btns {
    flex-direction: column;
    gap: var(--spacing-sm);
  }

  .btn {
    width: 100%;
  }

  .discord-avatar-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .discord-avatar-container {
    margin-right: 0;
    margin-bottom: var(--spacing-md);
  }

  .footer-top {
    flex-direction: column;
    gap: var(--spacing-2xl);
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: var(--fz-3xl);
  }
}

body.light-theme .discord-profile-card {
  background-color: white;
  border-color: #e0e0e0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

body.light-theme .discord-avatar {
  border-color: white;
}

body.light-theme .discord-username {
  color: #121212;
}

body.light-theme .discord-activity-section {
  background-color: #f5f5f5;
}

body.light-theme .discord-contact-btn {
  background-color: var(--discord);
  color: white;
}

body.light-theme .status-indicator {
  border-color: white;
}

body.light-theme .stat-card {
  background-color: white;
  border-color: #e0e0e0;
}

body.light-theme .about-img {
  border-color: #e0e0e0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

body.light-theme .skill-bar {
  background-color: #e0e0e0;
}

body.light-theme .form-control {
  background-color: white;
  border-color: #e0e0e0;
  color: #333;
}

body.light-theme .form-control::placeholder {
  color: #888;
}

body.light-theme .timeline::after {
  background: linear-gradient(to bottom, #e0e0e0, var(--primary), #e0e0e0);
}

body.light-theme .timeline-content {
  background-color: white;
  border-color: #e0e0e0;
}

body.light-theme .project-card {
  background-color: white;
  border-color: #e0e0e0;
}

body.light-theme .social-link {
  background-color: #f5f5f5;
  color: #444;
}

body.light-theme .footer-bottom {
  border-color: #e0e0e0;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

.delay-5 {
  transition-delay: 0.5s;
}

.subtle-hover {
  transition: all 0.3s ease;
}

.subtle-hover:hover {
  filter: brightness(1.1);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--color-light);
  font-size: var(--fz-xs);
  letter-spacing: 1px;
  opacity: 0.7;
  transition: all 0.3s ease;
  text-transform: uppercase;
  z-index: 10;
}

.scroll-indicator:hover {
  opacity: 1;
  transform: translate(-50%, -5px);
}

.scroll-indicator i {
  font-size: var(--fz-lg);
  margin-top: 8px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

.hover-zoom {
  overflow: hidden;
}

.hover-zoom img {
  transition: transform 0.5s cubic-bezier(0.43, 0.41, 0.22, 0.91);
}

.hover-zoom:hover img {
  transform: scale(1.1);
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--color-dark-600);
}

::-webkit-scrollbar-thumb {
  background: var(--color-dark-300);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

body.light-theme::-webkit-scrollbar-track {
  background: #f0f0f0;
}

body.light-theme::-webkit-scrollbar-thumb {
  background: #ccc;
}

body.light-theme::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* Neon Text Effect */
.neon-text {
  color: var(--primary);
  text-shadow: 0 0 10px rgba(107, 138, 253, 0.7);
  animation: neon 2s infinite alternate;
}

@keyframes neon {
  from {
    text-shadow: 0 0 5px rgba(107, 138, 253, 0.7);
  }
  to {
    text-shadow: 0 0 20px rgba(107, 138, 253, 0.9);
  }
}

.glass-effect {
  background-color: rgba(44, 44, 44, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

body.light-theme .glass-effect {
  background-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Spotify Albüm Kapağı İçin CSS */
.spotify-album-cover {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  margin-right: 10px;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Hover efekti */
.spotify-album-cover:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

/* Albüm kapağı içeren aktivite alanı için */
.activity-item.with-album-cover {
  display: flex;
  align-items: center;
}

/* Albüm kapağı içeren aktivite ikonları için */
.activity-item.with-album-cover .activity-icon {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 15px;
  height: 15px;
  background-color: #1db954; /* Spotify yeşil arka plan */
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  color: white;
  border: 2px solid var(--card-bg);
}

/* Albüm kapağı olan durumlarda aktivite içeriği için */
.activity-item.with-album-cover .activity-details {
  flex: 1;
}

/* Animasyon: Albüm kapağı fade-in */
@keyframes fadeInAlbumCover {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.spotify-album-cover {
  animation: fadeInAlbumCover 0.5s ease-out forwards;
}

/* Responsive düzenlemeler */
@media (max-width: 480px) {
  .spotify-album-cover {
    width: 40px;
    height: 40px;
  }

  .activity-item.with-album-cover .activity-icon {
    width: 12px;
    height: 12px;
    font-size: 7px;
  }
}

.gradient-text {
  background: linear-gradient(90deg, var(--primary), #ff73fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
