:root {
  --primary: #FF6B95;
  --primary-light: #FFC2D1;
  --secondary: #7C5CE0;
  --secondary-light: #B5A9F3;
  --tertiary: #42E2B8;
  --background: #FFFBFD;
  --card-bg: #FFFFFF;
  --text-dark: #3A3845;
  --text-light: #8F8D9A;
  --success: #4CAF50;
  --success-light: #E8F5E9;
  --error: #F44336;
  --shadow: rgba(0, 0, 0, 0.08);
  --border-radius: 16px;
  --button-radius: 12px;
  --input-bg: #F5F5F7;
  --input-border: #E0E0E5;
  --input-focus: rgba(124, 92, 224, 0.2);
}

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

body {
  font-family: 'Nunito', sans-serif;
  background-color: var(--background);
  color: var(--text-dark);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  padding: 16px;
}

.hidden {
  display: none !important;
}

.plushie-app {
  width: 100%;
  max-width: 450px;
  position: relative;
  min-height: 100vh;
}

/* Loader */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--background);
  z-index: 100;
  gap: 16px;
}

.plushie-bounce {
  width: 80px;
  height: 80px;
  position: relative;
  animation: bounce 1.5s infinite;
}

.plushie-icon {
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M256,128c35.35,0,64-28.65,64-64S291.35,0,256,0s-64,28.65-64,64S220.65,128,256,128z" fill="%23FF6B95"/><path d="M256,170.7c-88.2,0-160,71.8-160,160V512h320V330.7C416,242.5,344.2,170.7,256,170.7z" fill="%23FF6B95"/><circle cx="202" cy="245" r="20" fill="white"/><circle cx="310" cy="245" r="20" fill="white"/><path d="M272,290c0,8.84-7.16,16-16,16s-16-7.16-16-16H272z" fill="white"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}

/* Ana Kart */
#main-card {
  background-color: var(--card-bg);
  border-radius: var(--border-radius);
  box-shadow: 0 4px 20px var(--shadow);
  overflow: hidden;
  padding-bottom: 24px;
  margin-bottom: 24px;
}

.app-header {  background: linear-gradient(135deg, var(--primary), var(--secondary));  padding: 24px;  color: white;  position: relative;  overflow: hidden;}

.user-info {  display: flex;  align-items: center;  gap: 16px;  position: relative;  z-index: 2;}

.user-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: white;
  border: 3px solid white;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.user-details {
  position: relative;
}

#username {
  position: relative;
  z-index: 1;
}

.user-details h1 {
  font-size: 18px;
  margin-bottom: 4px;
  font-weight: 700;
}

.balance-container {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 4px 12px;
  display: inline-flex;
  align-items: center;
}

#balance {
  font-weight: 800;
  font-size: 18px;
  margin-right: 4px;
}

.currency {
  font-size: 14px;
  opacity: 0.9;
  position: relative;
  display: inline-flex;
  align-items: center;
  padding-left: 20px;
}

.currency::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23FFDF00"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm.31-8.86c-1.77-.45-2.34-.94-2.34-1.67 0-.84.79-1.43 2.1-1.43 1.38 0 1.9.66 1.94 1.64h1.71c-.05-1.34-.87-2.57-2.49-2.97V5H10.9v1.69c-1.51.32-2.72 1.3-2.72 2.81 0 1.79 1.49 2.69 3.66 3.21 1.95.46 2.34 1.15 2.34 1.87 0 .53-.39 1.39-2.1 1.39-1.6 0-2.23-.72-2.32-1.64H8.04c.1 1.7 1.36 2.66 2.86 2.97V19h2.34v-1.67c1.52-.29 2.72-1.16 2.73-2.77-.01-2.2-1.9-2.96-3.66-3.42z"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  filter: drop-shadow(0 0 1px rgba(255, 255, 255, 0.7));
  animation: coinGlow 3s infinite;
}

.balance-amount {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: white;
  font-size: 15px;
  word-break: break-all;
}

.balance-amount::after {
  content: none;
}

/* Görev Kartları */
.tasks-container {
  padding: 24px;
}

.tasks-container h2 {
  margin-bottom: 20px;
  font-size: 20px;
  color: var(--primary);
}

.task-card {
  background-color: var(--background);
  border-radius: var(--border-radius);
  padding: 16px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: transform 0.2s;
  border: 2px solid transparent;
}

.task-card:active {
  transform: scale(0.98);
}

.task-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  margin-right: 16px;
  flex-shrink: 0;
  background-size: 60%;
  background-position: center;
  background-repeat: no-repeat;
}

.twitter-icon {
  background-color: #1DA1F2;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.953 4.57a10 10 0 01-2.825.775 4.958 4.958 0 002.163-2.723c-.951.555-2.005.959-3.127 1.184a4.92 4.92 0 00-8.384 4.482C7.69 8.095 4.067 6.13 1.64 3.162a4.822 4.822 0 00-.666 2.475c0 1.71.87 3.213 2.188 4.096a4.904 4.904 0 01-2.228-.616v.06a4.923 4.923 0 003.946 4.827 4.996 4.996 0 01-2.212.085 4.936 4.936 0 004.604 3.417 9.867 9.867 0 01-6.102 2.105c-.39 0-.779-.023-1.17-.067a13.995 13.995 0 007.557 2.209c9.053 0 13.998-7.496 13.998-13.985 0-.21 0-.42-.015-.63A9.935 9.935 0 0024 4.59z" fill="white"/></svg>');
}

.discord-icon {
  background-color: #7289DA;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.317 4.37a19.791 19.791 0 0 0-4.885-1.515a.074.074 0 0 0-.079.037c-.21.375-.444.864-.608 1.25a18.27 18.27 0 0 0-5.487 0a12.64 12.64 0 0 0-.617-1.25a.077.077 0 0 0-.079-.037A19.736 19.736 0 0 0 3.677 4.37a.07.07 0 0 0-.032.027C.533 9.046-.32 13.58.099 18.057a.082.082 0 0 0 .031.057a19.9 19.9 0 0 0 5.993 3.03a.078.078 0 0 0 .084-.028a14.09 14.09 0 0 0 1.226-1.994a.076.076 0 0 0-.041-.106a13.107 13.107 0 0 1-1.872-.892a.077.077 0 0 1-.008-.128a10.2 10.2 0 0 0 .372-.292a.074.074 0 0 1 .077-.01c3.928 1.793 8.18 1.793 12.062 0a.074.074 0 0 1 .078.01c.12.098.246.198.373.292a.077.077 0 0 1-.006.127a12.299 12.299 0 0 1-1.873.892a.077.077 0 0 0-.041.107c.36.698.772 1.362 1.225 1.993a.076.076 0 0 0 .084.028a19.839 19.839 0 0 0 6.002-3.03a.077.077 0 0 0 .032-.054c.5-5.177-.838-9.674-3.549-13.66a.061.061 0 0 0-.031-.03zM8.02 15.33c-1.183 0-2.157-1.085-2.157-2.419c0-1.333.956-2.419 2.157-2.419c1.21 0 2.176 1.096 2.157 2.42c0 1.333-.956 2.418-2.157 2.418zm7.975 0c-1.183 0-2.157-1.085-2.157-2.419c0-1.333.955-2.419 2.157-2.419c1.21 0 2.176 1.096 2.157 2.42c0 1.333-.946 2.418-2.157 2.418z" fill="white"/></svg>');
}

.spin-icon {
  background-color: var(--tertiary);
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm-5-9h10v2H7z" fill="white"/></svg>');
}

.task-info {
  flex-grow: 1;
}

.task-info h3 {
  font-size: 16px;
  margin-bottom: 4px;
}

.task-info p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 8px;
}

.countdown {
  background-color: var(--secondary-light);
  border-radius: 8px;
  padding: 4px 8px;
  font-size: 12px;
  display: inline-block;
  color: white;
}

/* Görev Butonları */
.task-button {
  background-color: var(--primary);
  color: white;
  border: none;
  border-radius: var(--button-radius);
  padding: 8px 16px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
  min-width: 100px;
}

.task-button:hover {
  background-color: #e54c7c;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(255, 119, 0, 0.2);
}

.task-button:disabled {
  background-color: var(--text-light);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.task-button.checking {
  background-color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.task-button.checking::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  animation: loading 1.5s infinite;
}

.task-button.completed {
  background-color: #4CAF50;
  box-shadow: 0 4px 8px rgba(76, 175, 80, 0.4);
}

/* Ödül hazır butonu */
.task-button.reward-ready {
  background: linear-gradient(45deg, #ff7700, #ffa500, #ffcb66, #ffa500, #ff7700);
  background-size: 200% 200%;
  animation: gradient-animation 2s ease infinite;
  font-weight: 700;
  color: white;
  box-shadow: 0 4px 12px rgba(255, 167, 38, 0.5);
  transform: translateY(-2px);
}

.task-button.reward-ready:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(255, 167, 38, 0.6);
}

/* Gradient animasyonu */
@keyframes gradient-animation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Count-down Container */

/* Referans Bölümü */
.referral-section {
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.referral-button {
  background-color: var(--secondary);
  color: white;
  border: none;
  border-radius: var(--button-radius);
  padding: 12px 24px;
  font-weight: bold;
  font-size: 16px;
  width: 100%;
  cursor: pointer;
  transition: background-color 0.2s ease;
  margin-bottom: 12px;
}

.referral-button:hover {
  background-color: #6b4dd0;
}

.referral-info {
  font-size: 14px;
  color: var(--text-light);
  text-align: center;
}

.referral-info b {
  position: relative;
  padding-right: 18px;
  display: inline-flex;
  align-items: center;
}

.referral-info b::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23FFC107"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm.31-8.86c-1.77-.45-2.34-.94-2.34-1.67 0-.84.79-1.43 2.1-1.43 1.38 0 1.9.66 1.94 1.64h1.71c-.05-1.34-.87-2.57-2.49-2.97V5H10.9v1.69c-1.51.32-2.72 1.3-2.72 2.81 0 1.79 1.49 2.69 3.66 3.21 1.95.46 2.34 1.15 2.34 1.87 0 .53-.39 1.39-2.1 1.39-1.6 0-2.23-.72-2.32-1.64H8.04c.1 1.7 1.36 2.66 2.86 2.97V19h2.34v-1.67c1.52-.29 2.72-1.16 2.73-2.77-.01-2.2-1.9-2.96-3.66-3.42z"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.15));
  animation: coinRotate 4s infinite linear;
}

/* Para ikonu animasyonu sadece istenen yerlerde */
@keyframes coinGlow {
  0%, 100% {
    filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.7));
    transform: translateY(-50%) scale(1);
  }
  50% {
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 1)) drop-shadow(0 0 10px rgba(255, 215, 0, 0.8));
    transform: translateY(-50%) scale(1.1);
  }
}

@keyframes coinRotate {
  from {
    transform: translateY(-50%) rotate(0deg);
  }
  to {
    transform: translateY(-50%) rotate(360deg);
  }
}

/* Çark Animasyonu */
#spin-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
}

.spin-container {
  position: relative;
  width: 300px;
  height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.wheel-container {
  width: 100%;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.wheel {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  transition: transform 4s cubic-bezier(0.17, 0.67, 0.83, 0.67);
  transform: rotate(0deg);
  background-color: transparent;
  margin-bottom: 50px;
}

.wheel-inner {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.wheel-center {
  position: absolute;
  width: 50px;
  height: 50px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  border-radius: 50%;
  z-index: 10;
  box-shadow: 0 0 0 5px var(--primary);
}

.wheel-marker {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  background-color: white;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  z-index: 5;
}

.plushie-mascot {
  position: absolute;
  width: 120px;
  height: 120px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-image: url('assets/plushie.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center bottom;
  z-index: 20;
  animation: jumpAndWave 3s infinite ease-in-out;
}

@keyframes jumpAndWave {
  0%, 100% {
    transform: translateX(-50%) translateY(0) rotate(0deg);
  }
  25% {
    transform: translateX(-50%) translateY(-15px) rotate(5deg);
  }
  50% {
    transform: translateX(-50%) translateY(0) rotate(0deg);
  }
  75% {
    transform: translateX(-50%) translateY(-15px) rotate(-5deg);
  }
}

/* Konfeti */
#confetti-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 300;
  pointer-events: none;
}

/* Toast Bildirimi */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--card-bg);
  color: var(--text-dark);
  padding: 12px 24px;
  border-radius: var(--button-radius);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 400;
  font-weight: 600;
  animation: fadeInUp 0.3s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate(-50%, 20px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

/* Hata Bildirimi Stili */
#error-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--background);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 50;
  padding: 24px;
  text-align: center;
}

#error-container h3 {
  color: var(--error);
  margin-bottom: 16px;
  font-size: 20px;
}

#error-container p {
  color: var(--text-light);
  margin-bottom: 24px;
  max-width: 300px;
}

#retry-button {
  background-color: var(--primary);
  color: white;
  border: none;
  border-radius: var(--button-radius);
  padding: 12px 24px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.2s;
}

#retry-button:hover {
  background-color: #e54c7c;
}

/* Paraşüt animasyonları için container */.parachute-container {  position: absolute;  top: 0;  left: 0;  width: 100%;  height: 100%;  pointer-events: none;  overflow: hidden;  z-index: 1;}

/* Paraşüt elementi */
.parachute {
  position: absolute;
  width: 48px;
  height: 48px;
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.5;
  pointer-events: none;
}

/* Paraşüt animasyonları - her biri için farklı hareket deseni */
@keyframes float1 {
  0% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(30px, -20px) rotate(90deg); }
  50% { transform: translate(10px, 30px) rotate(180deg); }
  75% { transform: translate(-20px, 10px) rotate(270deg); }
  100% { transform: translate(0, 0) rotate(360deg); }
}

@keyframes float2 {
  0% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(-25px, 25px) rotate(90deg); }
  50% { transform: translate(-40px, -10px) rotate(180deg); }
  75% { transform: translate(-15px, -30px) rotate(270deg); }
  100% { transform: translate(0, 0) rotate(360deg); }
}

@keyframes float3 {
  0% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(20px, -30px) rotate(90deg); }
  50% { transform: translate(-30px, -20px) rotate(180deg); }
  75% { transform: translate(-20px, 25px) rotate(270deg); }
  100% { transform: translate(0, 0) rotate(360deg); }
}

@keyframes float4 {
  0% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(-15px, -25px) rotate(90deg); }
  50% { transform: translate(25px, 15px) rotate(180deg); }
  75% { transform: translate(30px, -15px) rotate(270deg); }
  100% { transform: translate(0, 0) rotate(360deg); }
}

/* Settings Icon */
.settings-icon {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 24px;
  height: 24px;
  color: white;
  cursor: pointer;
  z-index: 5;
  transition: transform 0.3s ease;
}

.settings-icon:hover {
  transform: rotate(30deg);
}

/* Settings Overlay */
#settings-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
  backdrop-filter: blur(5px);
  animation: fadeIn 0.3s ease-out;
}

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

.settings-container {
  background: linear-gradient(135deg, #352b68, #2d1b50);
  width: 90%;
  max-width: 420px;
  border-radius: var(--border-radius);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 80px rgba(124, 92, 224, 0.15);
  max-height: 80vh;
  overflow-y: auto;
  transform: translateY(0);
  animation: slideUp 0.4s ease-out;
}

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

.settings-header {
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.settings-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.settings-header h2 {
  color: white;
  font-size: 22px;
  font-weight: 700;
  margin: 0;
  background: linear-gradient(90deg, #fff, #c4b5ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.5px;
}

.close-button {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  font-size: 18px;
  cursor: pointer;
  padding: 8px;
  margin: 0;
  line-height: 1;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.close-button:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.settings-section {
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background-color 0.2s ease;
}

.settings-section:hover {
  background-color: rgba(255, 255, 255, 0.03);
}

.settings-section h3 {
  color: white;
  font-size: 16px;
  margin: 0 0 20px 0;
  opacity: 0.9;
  font-weight: 600;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
}

.settings-section h3::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 16px;
  background: linear-gradient(to bottom, var(--primary), var(--secondary));
  margin-right: 10px;
  border-radius: 2px;
}

.wallet-info, .social-account, .balance-card {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}

.wallet-info:hover, .social-account:hover, .balance-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}

.wallet-info::after, .social-account::after, .balance-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.05), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.wallet-info:hover::after, .social-account:hover::after, .balance-card:hover::after {
  transform: translateX(100%);
}

.wallet-icon, .balance-icon, .social-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 16px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.wallet-icon img, .balance-icon img, .social-icon img {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.wallet-details, .balance-details {
  flex-grow: 1;
}

.wallet-label, .balance-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin-bottom: 6px;
  font-weight: 500;
}

.wallet-address, .balance-amount, .social-username {
  color: white;
  font-size: 15px;
  word-break: break-all;
  font-weight: 600;
  line-height: 1.4;
}

.disconnect-button {
  background: linear-gradient(90deg, rgba(255, 107, 149, 0.2), rgba(124, 92, 224, 0.2));
  color: white;
  border: none;
  border-radius: var(--button-radius);
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 16px auto 0;
  display: block;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.disconnect-button:hover {
  background: linear-gradient(90deg, rgba(255, 107, 149, 0.3), rgba(124, 92, 224, 0.3));
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

.disconnect-button:active {
  transform: translateY(1px);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.disconnect-button::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  opacity: 0;
  transform: scale(0.5);
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.disconnect-button:hover::after {
  opacity: 1;
  transform: scale(1);
}

/* Overlay Stilleri (Ortak) */
#wallet-registration-overlay,
#twitter-username-overlay,
#twitter-verification-overlay,
#discord-username-overlay,
#discord-verification-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  backdrop-filter: blur(3px);
  transition: all 0.3s ease;
}

/* Input Stilleri */
.wallet-input-container {
  position: relative;
  margin-top: 15px;
  margin-bottom: 20px;
}

.wallet-input-container input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--input-border);
  border-radius: 12px;
  background-color: var(--input-bg);
  color: var(--text-dark);
  font-size: 16px;
  font-family: 'Nunito', sans-serif;
  transition: all 0.3s ease;
  outline: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.wallet-input-container input:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 4px var(--input-focus);
  background-color: white;
}

.wallet-input-container input::placeholder {
  color: var(--text-light);
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.wallet-input-container input:focus::placeholder {
  opacity: 0.3;
}

.wallet-input-container::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transition: width 0.3s ease;
  border-radius: 2px;
}

.wallet-input-container:focus-within::after {
  width: 100%;
}

.wallet-error-message {
  color: var(--error);
  font-size: 14px;
  margin-top: 8px;
  padding-left: 4px;
  font-weight: 600;
  display: flex;
  align-items: center;
  animation: shake 0.5s cubic-bezier(.36,.07,.19,.97) both;
}

@keyframes shake {
  10%, 90% {
    transform: translate3d(-1px, 0, 0);
  }
  
  20%, 80% {
    transform: translate3d(2px, 0, 0);
  }

  30%, 50%, 70% {
    transform: translate3d(-4px, 0, 0);
  }

  40%, 60% {
    transform: translate3d(4px, 0, 0);
  }
}

.wallet-error-message::before {
  content: "⚠️";
  margin-right: 6px;
}

/* Wallet ve Twitter Popup Konteyner */
.wallet-registration-container {
  background: white;
  border-radius: 16px;
  padding: 28px;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  position: relative;
  animation: popIn 0.3s ease-out;
  overflow: hidden;
  background-image: 
    radial-gradient(circle at top right, rgba(255, 107, 149, 0.05), transparent 300px),
    radial-gradient(circle at bottom left, rgba(124, 92, 224, 0.05), transparent 300px);
}

.wallet-registration-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.wallet-registration-header {
  margin-bottom: 25px;
  text-align: center;
}

.wallet-registration-header h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 5px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.wallet-registration-content {
  padding: 0 10px;
}

.wallet-registration-content p {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 15px;
}

.verification-steps {
  margin: 20px 0;
  padding-left: 20px;
  counter-reset: step-counter;
}

.verification-steps li {
  margin: 15px 0;
  color: var(--text-dark);
  line-height: 1.5;
  position: relative;
  padding-left: 10px;
  list-style-type: none;
}

.verification-steps li::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  left: -25px;
  top: -2px;
  background-color: var(--secondary-light);
  color: white;
  font-weight: bold;
  font-size: 14px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wallet-buttons {
  margin-top: 30px;
  text-align: center;
}

#verify-discord-join,
#verify-twitter-follow,
#save-wallet-button,
#save-twitter-button,
#save-discord-button,
#verify-daily-like,
#verify-daily-retweet,
#verify-daily-telegram {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  border: none;
  border-radius: 12px;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(255, 107, 149, 0.2);
  position: relative;
  overflow: hidden;
}

#verify-discord-join:hover,
#verify-twitter-follow:hover,
#save-wallet-button:hover,
#save-twitter-button:hover,
#save-discord-button:hover,
#verify-daily-like:hover,
#verify-daily-retweet:hover,
#verify-daily-telegram:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255, 107, 149, 0.3);
}

#verify-discord-join:active,
#verify-twitter-follow:active,
#save-wallet-button:active,
#save-twitter-button:active,
#save-discord-button:active,
#verify-daily-like:active,
#verify-daily-retweet:active,
#verify-daily-telegram:active {
  transform: translateY(1px);
  box-shadow: 0 2px 8px rgba(255, 107, 149, 0.2);
}

#verify-discord-join:disabled,
#verify-twitter-follow:disabled,
#save-wallet-button:disabled,
#save-twitter-button:disabled,
#save-discord-button:disabled,
#verify-daily-like:disabled,
#verify-daily-retweet:disabled,
#verify-daily-telegram:disabled {
  background: linear-gradient(135deg, #ccc, #aaa);
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}

/* Yükleme durumu animasyonu */
#verify-discord-join.loading,
#verify-twitter-follow.loading,
#save-wallet-button.loading,
#save-twitter-button.loading,
#save-discord-button.loading,
#verify-daily-like.loading,
#verify-daily-retweet.loading,
#verify-daily-telegram.loading {
  padding-left: 40px; 
}

#verify-discord-join.loading::before,
#verify-twitter-follow.loading::before,
#save-wallet-button.loading::before,
#save-twitter-button.loading::before,
#save-discord-button.loading::before,
#verify-daily-like.loading::before,
#verify-daily-retweet.loading::before,
#verify-daily-telegram.loading::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 1s infinite linear;
}

@keyframes spin {
  to {
    transform: translateY(-50%) rotate(360deg);
  }
}

@keyframes wheelSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(var(--spin-degrees));
  }
}

.wheel.spinning {
  animation: wheelSpin 4s cubic-bezier(0.17, 0.67, 0.83, 0.67) forwards;
}

/* Çark Sonuç Ekranı */
.spin-result {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: white;
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  z-index: 30;
  min-width: 200px;
  width: 80%;
  max-width: 300px;
}

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

.prize-amount {
  font-size: 28px;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 6px;
}

/* Animation for spin result */
@keyframes popIn {
  0% {
    opacity: 0;
    transform: translate(-50%, 20px) scale(0.9);
  }
  70% {
    opacity: 1;
    transform: translate(-50%, 0) scale(1.02);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, 0) scale(1);
  }
}

.spin-result.active {
  animation: popIn 0.6s forwards;
}

/* Twitter doğrulama adımları */
.verification-steps {
  padding-left: 20px;
  margin-bottom: 20px;
}

.verification-steps li {
  margin-bottom: 10px;
  line-height: 1.5;
}

#twitter-page-link {
  color: #1DA1F2;
  font-weight: bold;
  text-decoration: underline;
  cursor: pointer;
}

#discord-verification-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

#discord-verification-overlay .wallet-registration-container {
  background: white;
  border-radius: 16px;
  padding: 24px;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  animation: popIn 0.3s ease-out;
}

#discord-verification-overlay .verification-steps {
  margin: 20px 0;
  padding-left: 20px;
}

#discord-verification-overlay .verification-steps li {
  margin: 12px 0;
  color: #666;
  line-height: 1.5;
}

#discord-server-link {
  color: var(--primary);
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
}

#verify-discord-join {
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  transition: all 0.2s;
}

#verify-discord-join:hover {
  background: var(--primary-dark);
}

#verify-discord-join:disabled {
  background: #ccc;
  cursor: not-allowed;
}

/* Günlük görevler için özel stiller */
.daily-task-card {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  border: 2px solid #FFB84D;
}

.daily-icon {
  background-color: #FFD700;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
}

/* Günlük Görevler Popup */
#daily-tasks-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
  backdrop-filter: blur(5px);
  animation: fadeIn 0.3s ease-out;
}

.daily-tasks-container {
  background: linear-gradient(135deg, #352b68, #2d1b50);
  width: 90%;
  max-width: 480px;
  border-radius: var(--border-radius);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 80px rgba(255, 215, 0, 0.15);
  max-height: 80vh;
  overflow-y: auto;
  transform: translateY(0);
  animation: slideUp 0.4s ease-out;
}

.daily-tasks-header {
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.daily-tasks-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
}

.daily-tasks-header h2 {
  color: white;
  font-size: 22px;
  font-weight: 700;
  margin: 0;
  background: linear-gradient(90deg, #FFD700, #FFA500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.5px;
}

.daily-tasks-content {
  padding: 24px;
}

.daily-tasks-content > p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 24px;
  font-size: 15px;
  text-align: center;
}

/* Günlük görev öğesi */
.daily-task-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 16px;
}

.daily-task-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 215, 0, 0.3);
}

.daily-task-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.05), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.daily-task-item:hover::after {
  transform: translateX(100%);
}

.daily-task-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  font-size: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.like-icon {
  background: linear-gradient(135deg, #E91E63, #C2185B);
}

.retweet-icon {
  background: linear-gradient(135deg, #00BCD4, #0097A7);
}

.daily-task-info {
  flex-grow: 1;
}

.daily-task-info h3 {
  color: white;
  font-size: 16px;
  margin: 0 0 6px 0;
  font-weight: 600;
}

.daily-task-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin: 0 0 8px 0;
  line-height: 1.4;
}

.daily-task-button {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: white;
  border: none;
  border-radius: 10px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
  min-width: 100px;
  box-shadow: 0 4px 10px rgba(255, 165, 0, 0.2);
}

.daily-task-button:hover {
  background: linear-gradient(135deg, #FFA500, #FF8C00);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255, 165, 0, 0.3);
}

.daily-task-button:active {
  transform: translateY(1px);
  box-shadow: 0 2px 5px rgba(255, 165, 0, 0.2);
}

.daily-task-button:disabled {
  background: linear-gradient(135deg, #999, #777);
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}

.daily-task-button.completed {
  background: linear-gradient(135deg, #4CAF50, #45a049);
  box-shadow: 0 4px 8px rgba(76, 175, 80, 0.4);
}

.daily-task-button.reward-ready {
  background: linear-gradient(45deg, #ff7700, #ffa500, #ffcb66, #ffa500, #ff7700);
  background-size: 200% 200%;
  animation: gradient-animation 2s ease infinite;
  font-weight: 700;
  color: white;
  box-shadow: 0 4px 12px rgba(255, 167, 38, 0.5);
  transform: translateY(-2px);
}

.daily-task-button.reward-ready:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(255, 167, 38, 0.6);
}

/* Telegram icon için özel stil */
.daily-task-icon.telegram-icon {
  background: linear-gradient(135deg, #0088cc, #006699);
}

/* Doğrulama popup'ları için ortak stil */
#daily-like-verification-overlay,
#daily-retweet-verification-overlay,
#daily-telegram-verification-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  backdrop-filter: blur(3px);
  transition: all 0.3s ease;
}

/* Geri sayım günlük görevlerde özel renk */
.daily-task-item .countdown {
  background-color: rgba(255, 215, 0, 0.2);
  border: 1px solid rgba(255, 215, 0, 0.3);
  color: #FFD700;
}

/* Discord iconu için özel renk günlük görevlerde */
.daily-task-icon.discord-icon {
  background: linear-gradient(135deg, #7289DA, #5865F2);
}

/* Discord iconu */
.discord-icon {
  background-color: #7289DA;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.317 4.37a19.791 19.791 0 0 0-4.885-1.515a.074.074 0 0 0-.079.037c-.21.375-.444.864-.608 1.25a18.27 18.27 0 0 0-5.487 0a12.64 12.64 0 0 0-.617-1.25a.077.077 0 0 0-.079-.037A19.736 19.736 0 0 0 3.677 4.37a.07.07 0 0 0-.032.027C.533 9.046-.32 13.58.099 18.057a.082.082 0 0 0 .031.057a19.9 19.9 0 0 0 5.993 3.03a.078.078 0 0 0 .084-.028a14.09 14.09 0 0 0 1.226-1.994a.076.076 0 0 0-.041-.106a13.107 13.107 0 0 1-1.872-.892a.077.077 0 0 1-.008-.128a10.2 10.2 0 0 0 .372-.292a.074.074 0 0 1 .077-.01c3.928 1.793 8.18 1.793 12.062 0a.074.074 0 0 1 .078.01c.12.098.246.198.373.292a.077.077 0 0 1-.006.127a12.299 12.299 0 0 1-1.873.892a.077.077 0 0 0-.041.107c.36.698.772 1.362 1.225 1.993a.076.076 0 0 0 .084.028a19.839 19.839 0 0 0 6.002-3.03a.077.077 0 0 0 .032-.054c.5-5.177-.838-9.674-3.549-13.66a.061.061 0 0 0-.031-.03zM8.02 15.33c-1.183 0-2.157-1.085-2.157-2.419c0-1.333.956-2.419 2.157-2.419c1.21 0 2.176 1.096 2.157 2.42c0 1.333-.956 2.418-2.157 2.418zm7.975 0c-1.183 0-2.157-1.085-2.157-2.419c0-1.333.955-2.419 2.157-2.419c1.21 0 2.176 1.096 2.157 2.42c0 1.333-.946 2.418-2.157 2.418z" fill="white"/></svg>');
}

/* Settings sayfasındaki sosyal medya ikonları için özel tanımlar */
.social-icon.telegram-icon {
  background-color: #0088cc;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0zm5.568 8.16c-.18 1.896-.962 6.502-1.359 8.627-.168.9-.499 1.201-.82 1.23-.696.064-1.225-.46-1.9-.902-1.056-.693-1.653-1.124-2.678-1.8-1.185-.78-.417-1.21.258-1.91.177-.184 3.247-2.977 3.307-3.23.007-.032.014-.15-.056-.212s-.174-.041-.249-.024c-.106.024-1.793 1.14-5.061 3.345-.48.33-.913.49-1.302.48-.428-.008-1.252-.241-1.865-.44-.752-.244-1.349-.374-1.297-.789.027-.216.325-.437.893-.663 3.498-1.524 5.831-2.529 6.998-3.014 3.332-1.386 4.025-1.627 4.476-1.635z" fill="white"/></svg>');
  background-size: 20px 20px;
  background-repeat: no-repeat;
  background-position: center;
}

.social-icon.twitter-icon {
  background-color: #000000;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.901 1.153h3.68l-8.04 9.19L24 22.846h-7.406l-5.8-7.584-6.638 7.584H.474l8.6-9.83L0 1.154h7.594l5.243 6.932ZM17.61 20.644h2.039L6.486 3.24H4.298Z" fill="white"/></svg>');
  background-size: 16px 16px;
  background-repeat: no-repeat;
  background-position: center;
}

.social-icon.discord-icon {
  background-color: #5865F2;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.317 4.37a19.791 19.791 0 0 0-4.885-1.515a.074.074 0 0 0-.079.037c-.21.375-.444.864-.608 1.25a18.27 18.27 0 0 0-5.487 0a12.64 12.64 0 0 0-.617-1.25a.077.077 0 0 0-.079-.037A19.736 19.736 0 0 0 3.677 4.37a.07.07 0 0 0-.032.027C.533 9.046-.32 13.58.099 18.057a.082.082 0 0 0 .031.057a19.9 19.9 0 0 0 5.993 3.03a.078.078 0 0 0 .084-.028a14.09 14.09 0 0 0 1.226-1.994a.076.076 0 0 0-.041-.106a13.107 13.107 0 0 1-1.872-.892a.077.077 0 0 1-.008-.128a10.2 10.2 0 0 0 .372-.292a.074.074 0 0 1 .077-.01c3.928 1.793 8.18 1.793 12.062 0a.074.074 0 0 1 .078.01c.12.098.246.198.373.292a.077.077 0 0 1-.006.127a12.299 12.299 0 0 1-1.873.892a.077.077 0 0 0-.041.107c.36.698.772 1.362 1.225 1.993a.076.076 0 0 0 .084.028a19.839 19.839 0 0 0 6.002-3.03a.077.077 0 0 0 .032-.054c.5-5.177-.838-9.674-3.549-13.66a.061.061 0 0 0-.031-.03zM8.02 15.33c-1.183 0-2.157-1.085-2.157-2.419c0-1.333.956-2.419 2.157-2.419c1.21 0 2.176 1.096 2.157 2.42c0 1.333-.956 2.418-2.157 2.418zm7.975 0c-1.183 0-2.157-1.085-2.157-2.419c0-1.333.955-2.419 2.157-2.419c1.21 0 2.176 1.096 2.157 2.42c0 1.333-.946 2.418-2.157 2.418z" fill="white"/></svg>');
  background-size: 18px 18px;
  background-repeat: no-repeat;
  background-position: center;
}

/* Balance card'larındaki Telegram ikonu için özel tanım */
.balance-icon.telegram-icon {
  background-color: #0088cc;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0zm5.568 8.16c-.18 1.896-.962 6.502-1.359 8.627-.168.9-.499 1.201-.82 1.23-.696.064-1.225-.46-1.9-.902-1.056-.693-1.653-1.124-2.678-1.8-1.185-.78-.417-1.21.258-1.91.177-.184 3.247-2.977 3.307-3.23.007-.032.014-.15-.056-.212s-.174-.041-.249-.024c-.106.024-1.793 1.14-5.061 3.345-.48.33-.913.49-1.302.48-.428-.008-1.252-.241-1.865-.44-.752-.244-1.349-.374-1.297-.789.027-.216.325-.437.893-.663 3.498-1.524 5.831-2.529 6.998-3.014 3.332-1.386 4.025-1.627 4.476-1.635z" fill="white"/></svg>');
  background-size: 20px 20px;
  background-repeat: no-repeat;
  background-position: center;
}

/* New Badge Styling */
.new-badge {
  display: inline-block;
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  color: white;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 12px;
  margin-left: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  animation: newBadgePulse 2s infinite;
  box-shadow: 0 2px 8px rgba(255, 107, 149, 0.3);
}

@keyframes newBadgePulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 2px 8px rgba(255, 107, 149, 0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 107, 149, 0.5);
  }
} 