/* Reset ve Temel Stiller */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  background: linear-gradient(135deg, #1a1a1a 0%, #0e0e0e 100%);
  color: white;
  text-align: center;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* Ana Container */
.container {
  max-width: 500px;
  margin: 0 auto;
  padding: 40px 20px 40px;
  position: relative;
  animation: fadeIn 1.2s ease-in-out;
}

/* Arka Plan Overlay */
.background-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("/placeholder.svg?height=1080&width=1920");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.1;
  z-index: -1;
}

/* Profil Bölümü */
.profile-section {
  animation: slideInUp 0.8s ease-out;
}

/* Profil Resmi */
.profile-pic-container {
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
}

.profile-pic {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 4px solid white;
  object-fit: cover;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
  animation: pulse-slow 3s ease-in-out infinite;
}

.crown-emoji {
  position: absolute;
  top: -10px;
  right: -10px;
  font-size: 24px;
  animation: bounce 2s ease-in-out infinite;
}

/* İsim */
.name {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 30px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  animation: slideInUp 0.8s ease-out 0.2s both;
}

/* Açıklama */
.description {
  margin-bottom: 40px;
  line-height: 1.6;
  animation: slideInUp 0.8s ease-out 0.4s both;
}

.main-text {
  font-size: 16px;
  margin-bottom: 20px;
  font-weight: 500;
}

.services {
  margin-bottom: 20px;
}

.service-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
  font-weight: bold;
  font-size: 16px;
}

.fire-emoji {
  font-size: 20px;
  animation: fire 1.5s ease-in-out infinite;
}

.service-text {
  color: #ffdd44;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.experience {
  margin-top: 20px;
}

.experience-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 16px;
}

.chart-emoji {
  font-size: 18px;
  animation: bounce 2s ease-in-out infinite;
}

.bold-text {
  font-weight: bold;
  color: #ffffff;
}

.cta-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: bold;
  font-size: 18px;
  color: #ffdd44;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.sparkle-emoji {
  font-size: 20px;
  animation: sparkle 2s ease-in-out infinite;
}

/* Aksiyon Butonları */
.action-buttons {
  margin-bottom: 40px;
  animation: slideInUp 0.8s ease-out 0.6s both;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  margin-bottom: 16px;
  border-radius: 12px;
  font-weight: bold;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.btn:active {
  transform: translateY(0) scale(0.98);
}

.telegram-btn {
  background: linear-gradient(45deg, #0088cc, #0066aa);
  color: white;
}

.telegram-btn:hover {
  background: linear-gradient(45deg, #0099dd, #0077bb);
}

.whatsapp-btn {
  background: linear-gradient(45deg, #25d366, #128c7e);
  color: white;
}

.whatsapp-btn:hover {
  background: linear-gradient(45deg, #2de477, #139c8f);
}

.btn-emoji {
  font-size: 20px;
}

.btn-icon {
  font-size: 22px;
}

.btn-text {
  flex: 1;
  text-align: center;
}

/* Sosyal Medya İkonları */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 30px;
  animation: slideInUp 0.8s ease-out 0.8s both;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.social-icon:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.social-emoji {
  font-size: 28px;
}

.instagram:hover .social-emoji {
  animation: spin 0.5s ease-in-out;
}

.twitter:hover .social-emoji {
  animation: bounce 0.5s ease-in-out;
}

/* Yüzen Emojiler */
.floating-emojis {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: -1;
}

.floating-emoji {
  position: absolute;
  font-size: 32px;
  animation: float 3s ease-in-out infinite;
  opacity: 0.7;
}

/* Animasyonlar */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

@keyframes pulse-slow {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
  }
  50% {
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.8);
  }
}

@keyframes fire {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
    filter: hue-rotate(0deg);
  }
  25% {
    transform: scale(1.1) rotate(-5deg);
    filter: hue-rotate(30deg);
  }
  50% {
    transform: scale(1.2) rotate(5deg);
    filter: hue-rotate(60deg);
  }
  75% {
    transform: scale(1.1) rotate(-3deg);
    filter: hue-rotate(30deg);
  }
}

@keyframes sparkle {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-15px) rotate(5deg);
  }
  66% {
    transform: translateY(10px) rotate(-3deg);
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Responsive Tasarım */
@media (max-width: 768px) {
  .container {
    padding: 30px 15px 30px;
  }

  .name {
    font-size: 28px;
  }

  .btn {
    font-size: 16px;
    padding: 14px 20px;
  }
  .floating-emoji {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 20px 10px 20px;
  }

  .profile-pic {
    width: 100px;
    height: 100px;
  }

  .name {
    font-size: 24px;
  }

  .btn {
    font-size: 14px;
    padding: 12px 16px;
  }

  .social-icon {
    width: 50px;
    height: 50px;
  }

  .social-emoji {
    font-size: 24px;
  }

  .floating-emoji {
    font-size: 20px;
  }
}

/* Gizli sınıf */
.hidden {
  display: none !important;
}
