/* Steam Loader Pro - Modern CSS Styles */

:root {
  --primary: #1a1a2e;
  --secondary: #16213e;
  --accent: #0f3460;
  --highlight: #a78bfa;
  --text: #ffffff;
  --text-secondary: #cbd5e1;
  --success: #10b981;
  --warning: #f59e0b;
  --error: #ef4444;
  --border: #334155;
  --shadow: rgba(0, 0, 0, 0.3);
  --gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

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

body {
  font-family: 'Poppins', sans-serif;
  background: var(--primary);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Navbar Styles */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text);
}

.navbar-logo img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

/* Mobil navbar sosyal medya ikonları */
.navbar-mobile-socials {
  display: none;
  align-items: center;
  gap: 0.75rem;
  margin-left: 1rem;
}

.mobile-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.mobile-social-icon.discord-icon {
  background: linear-gradient(135deg, #5865f2, #4752c4);
}

.mobile-social-icon.discord-icon:hover {
  background: linear-gradient(135deg, #4752c4, #3c45a5);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(88, 101, 242, 0.4);
}

.mobile-social-icon.instagram-icon {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.mobile-social-icon.instagram-icon:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(220, 39, 67, 0.4);
}

.navbar-content-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.navbar-list {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.navbar-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.navbar-link:hover {
  color: var(--highlight);
}

.navbar-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--highlight);
  transition: width 0.3s ease;
}

.navbar-link:hover::after {
  width: 100%;
}

.navbar-social {
  display: flex;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.discord-link {
  background: #5865f2;
  color: white;
}

.discord-link:hover {
  background: #4752c4;
  transform: translateY(-2px);
}

.instagram-link {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: white;
}

.instagram-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(220, 39, 67, 0.4);
}

.navbar-hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  padding: 0.5rem;
}

.navbar-hamburger span {
  width: 25px;
  height: 3px;
  background: var(--text);
  transition: all 0.3s ease;
}

/* Hero Section */
.hero-box {
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  padding: 2rem 2rem;
  text-align: center;
  border-radius: 20px;
  margin: 1rem auto;
  max-width: 600px;
  box-shadow: 0 20px 40px var(--shadow);
}

.hero-logo {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 30px var(--shadow);
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  background: linear-gradient(135deg, var(--highlight), #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

/* Glow Overlay */
.glow-overlay {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(167, 139, 250, 0.1) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

/* Loader Info Text Section */
.loader-info-text {
  padding: 2rem 0;
  background: linear-gradient(135deg, rgba(167, 139, 250, 0.05), rgba(255,255,255,0.01));
}

            .info-card {
              background: var(--secondary);
              border: 1px solid var(--border);
              border-radius: 16px;
              padding: 2rem;
              color: var(--text-secondary);
              box-shadow: 0 12px 30px var(--shadow);
              line-height: 1.6;
              font-size: 1rem;
              max-width: 900px;
              margin: 0 auto;
            }

            .info-title {
              color: #ffffff;
              font-size: 1.8rem;
              font-weight: 700;
              margin: 0 0 1rem 0;
              text-align: center;
              line-height: 1.3;
            }

            @media (max-width: 600px) {
              .info-title {
                font-size: 1.3rem;
              }
              
              .info-card {
                padding: 1.5rem;
                font-size: 0.9rem;
              }
              
              .info-card p {
                font-size: 0.9rem;
                line-height: 1.5;
              }
              
              .info-card strong {
                font-size: 0.95rem;
              }
            }
            
            @media (max-width: 480px) {
              .info-title {
                font-size: 1.1rem;
              }
              
              .info-card {
                padding: 1rem;
                font-size: 0.85rem;
              }
              
              .info-card p {
                font-size: 0.85rem;
              }
              
              .info-card strong {
                font-size: 0.9rem;
              }
            }

/* Container */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Features Section */
.features-highlight {
  padding: 4rem 0;
}

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

.feature-card {
  background: var(--secondary);
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px var(--shadow);
}

.feature-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--highlight);
}

.feature-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Modern Action Buttons */
.action-buttons-section {
  padding: 3rem 0;
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.8));
  margin: 2rem 0;
  border-radius: 20px;
  margin-left: 2rem;
  margin-right: 2rem;
}

.action-buttons-grid {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
}

.action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 1.25rem 2.5rem;
  border-radius: 16px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  min-width: 200px;
}

.action-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s;
}

.action-btn:hover::before {
  left: 100%;
}

.primary-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.6);
}

.secondary-btn {
  background: rgba(167, 139, 250, 0.1);
  color: var(--highlight);
  border: 2px solid var(--highlight);
  backdrop-filter: blur(10px);
}

.secondary-btn:hover {
  background: rgba(167, 139, 250, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(167, 139, 250, 0.3);
}

.action-btn i {
  font-size: 1.2rem;
}

.action-description {
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-top: 1.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Video Section */
.features {
  padding: 4rem 0;
}

.appbox {
  margin-bottom: 3rem;
}

.app-sample-img:hover,
.library-sample-img:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 30px var(--shadow);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.video-grid-item {
  background: var(--secondary);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.video-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
}

.video-preview {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-caption {
  padding: 1.5rem;
  text-align: center;
  background: rgba(167, 139, 250, 0.1);
  border-radius: 12px 12px 0 0;
  border: 1px solid rgba(167, 139, 250, 0.2);
  border-bottom: none;
  margin-bottom: 0;
}

.video-caption h4 {
  color: var(--highlight);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.4;
}

.video-caption p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.4;
  margin: 0;
}

/* Pricing Section */
.pricing-section {
  padding: 4rem 0;
  background: var(--secondary);
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-card {
  background: var(--primary);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid var(--border);
  position: relative;
  transition: all 0.3s ease;
  height: fit-content;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px var(--shadow);
}

.pricing-card.recommended {
  border: 2px solid var(--highlight);
  transform: scale(1.05);
}

.pricing-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--highlight);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

.pricing-header {
  text-align: center;
  margin-bottom: 2rem;
}

.pricing-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--highlight);
}

.pricing-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text);
}

.features-list {
  list-style: none;
  margin-bottom: 2rem;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

.features-list i {
  color: var(--success);
  font-size: 1.1rem;
}

.buy-button {
  display: block;
  width: 100%;
  background: var(--gradient);
  color: white;
  text-align: center;
  padding: 1rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: auto;
}

.buy-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
}

/* Testimonials */
.testimonials {
  padding: 4rem 0;
}

.text-reviews-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.text-review-card {
  background: var(--secondary);
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  height: fit-content;
  display: flex;
  flex-direction: column;
}

.text-review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px var(--shadow);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.review-user {
  font-weight: 600;
  color: var(--highlight);
}

.review-date {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.review-stars {
  color: #fbbf24;
  font-size: 1.1rem;
}

.review-text {
  color: var(--text-secondary);
  line-height: 1.5;
  margin-top: auto;
  font-size: 0.9rem;
}

/* FAQ Section */
.faq-section {
  padding: 4rem 0;
  background: var(--secondary);
}

.faq-accordion {
  max-width: 800px;
  margin: 3rem auto 0;
}

.faq-item {
  background: var(--primary);
  border-radius: 12px;
  margin-bottom: 1rem;
  border: 1px solid var(--border);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover {
  background: rgba(167, 139, 250, 0.1);
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--highlight);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-secondary);
  line-height: 1.6;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

/* Contact Section */
.contact-section {
  padding: 4rem 0;
}

.contact-container {
  max-width: 600px;
  text-align: center;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: var(--secondary);
  color: var(--text);
  text-decoration: none;
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  font-weight: 500;
}

.contact-link:hover {
  background: var(--highlight);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(167, 139, 250, 0.4);
}

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

#lightbox img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  border-radius: 12px;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  z-index: 2001;
}

/* Mobile Menu */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1500;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu-overlay.open {
  display: block;
  opacity: 1;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100%;
  background: var(--primary);
  z-index: 1501;
  padding: 2rem;
  transition: right 0.3s ease;
  border-left: 1px solid var(--border);
  transform: translateX(100%);
  visibility: hidden;
}

.mobile-menu.open {
  right: 0;
  transform: translateX(0);
  visibility: visible;
}

.mobile-menu-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-menu-list {
  list-style: none;
  margin-top: 3rem;
}

.mobile-menu-list li {
  margin-bottom: 1rem;
}

.mobile-menu-list .navbar-link {
  display: block;
  padding: 1rem;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.mobile-menu-list .navbar-link:hover {
  background: rgba(167, 139, 250, 0.1);
}

.mobile-menu-socials {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Responsive Design */
@media (max-width: 900px) {
  .navbar-list {
    display: none;
  }
  
  .navbar-social {
    display: none;
  }
  
  .navbar-hamburger {
    display: flex;
  }
  
  /* Mobilde navbar sosyal medya ikonlarını göster */
  .navbar-mobile-socials {
    display: flex !important;
  }
  
  .hero-title {
    font-size: 1.75rem;
  }
  
  .hero-desc {
    font-size: 0.95rem;
  }
  
  .appbox {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  
  .appbox > div {
    width: 100%;
    max-width: 100%;
    padding: 0 1rem;
  }
  
  .appbox > div img {
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: 14px;
    box-shadow: 0 2px 16px #0006;
    object-fit: cover;
  }
  
  .video-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pricing-card.recommended {
    transform: none;
  }
  
  .text-reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .contact-info {
    flex-direction: column;
  }
  
  /* Mobile menu güvenlik önlemleri */
  .mobile-menu:not(.open) {
    right: -100% !important;
    transform: translateX(100%) !important;
    visibility: hidden !important;
  }

  .mobile-menu-overlay:not(.open) {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
  }
  
  /* Mobil menüde sosyal bağlantıları göster */
  .mobile-menu-socials {
    display: flex !important;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 1rem;
  }
  
  .navbar {
    padding: 0.75rem 1.5rem;
  }
  
  /* Mobilde navbar sosyal medya ikonlarını daha iyi konumlandır */
  .navbar-mobile-socials {
    gap: 1rem !important;
    margin-left: 1.5rem !important;
  }
  
  .mobile-social-icon {
    width: 44px !important;
    height: 44px !important;
    font-size: 1.3rem !important;
  }
  
  .hero-box {
    padding: 2rem 1rem;
  }
  
  .hero-title {
    font-size: 1.8rem;
  }
  
  .action-buttons-grid {
    flex-direction: column;
    gap: 1rem;
  }
  
  .action-btn {
    width: 100%;
    justify-content: center;
  }
  
  .mobile-menu {
    width: 100%;
  }
  
  .pricing-cards {
    grid-template-columns: 1fr;
  }
  
  .text-reviews-grid {
    grid-template-columns: 1fr;
  }
  
  .appbox {
    flex-direction: column !important;
    gap: 2rem !important;
  }
  
  .appbox > div img {
    width: 300px !important;
    height: 200px !important;
    max-width: 100% !important;
    object-fit: cover !important;
  }
  
  /* Mobilde yazı boyutları */
  h2 {
    font-size: 1.4rem !important;
  }
  
  h3 {
    font-size: 1.2rem !important;
  }
  
  .feature-card h3 {
    font-size: 1.1rem !important;
  }
  
  .feature-card p {
    font-size: 0.9rem !important;
  }
  
  .video-caption h4 {
    font-size: 1rem !important;
  }
  
  .video-caption p {
    font-size: 0.85rem !important;
  }
  
  .action-description {
    font-size: 0.85rem !important;
  }
}

@media (max-width: 480px) {
  .appbox > div img {
    width: 250px !important;
    height: 160px !important;
    max-width: 100% !important;
    object-fit: cover !important;
  }
  
  /* Daha küçük ekranlarda yazı boyutları */
  h2 {
    font-size: 1.2rem !important;
  }
  
  h3 {
    font-size: 1rem !important;
  }
  
  .feature-card h3 {
    font-size: 1rem !important;
  }
  
  .feature-card p {
    font-size: 0.8rem !important;
  }
  
  .video-caption h4 {
    font-size: 0.9rem !important;
  }
  
  .video-caption p {
    font-size: 0.8rem !important;
  }
  
  .action-description {
    font-size: 0.8rem !important;
  }
  
  .hero-title {
    font-size: 1.5rem;
  }
  
  .search-input {
    padding: 12px 20px 12px 45px;
    font-size: 1rem;
  }
  
  .online-button {
    padding: 10px 14px;
    font-size: 0.9rem;
  }
  
  .game-banner {
    height: 100px;
  }
  
  .game-title {
    font-size: 0.8rem;
  }
  
  .game-info {
    padding: 8px;
  }
  
  .online-label {
    font-size: 0.7rem;
    padding: 4px 8px;
    bottom: 4px;
    right: 4px;
  }
}

@media (max-width: 360px) {
  .appbox > div img {
    width: 200px !important;
    height: 130px !important;
    max-width: 100% !important;
    object-fit: cover !important;
  }
}

/* Scroll Offset */
.scroll-offset {
  scroll-margin-top: 100px;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.feature-card,
.pricing-card,
.text-review-card {
  animation: fadeInUp 0.6s ease forwards;
}

/* Hover Effects */
.feature-card:hover,
.pricing-card:hover,
.text-review-card:hover {
  border-color: var(--highlight);
}

/* Focus States */
button:focus,
a:focus {
  outline: 2px solid var(--highlight);
  outline-offset: 2px;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
} 

.app-sample-img,
.library-sample-img {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 14px;
  box-shadow: 0 2px 16px #0006;
  background: #181825;
  cursor: pointer;
  transition: box-shadow 0.3s, transform 0.3s;
  object-fit: cover;
} 

/* Mobil Sosyal Medya Alt Çubuğu - Normal Akış */
.mobile-social-bar {
  position: static;
  display: none;
}

@media (max-width: 768px) {
  .mobile-social-bar {
    position: static !important;
    display: flex !important;
    justify-content: center !important;
    gap: 1rem !important;
    padding: 1rem !important;
    background: transparent !important;
    border-top: none !important;
    box-shadow: none !important;
    margin-top: 1rem !important;
    width: 100% !important;
    height: auto !important;
  }

  .mobile-social-bar .social-link {
    padding: 0.5rem 1rem !important;
    border-radius: 12px !important;
    color: white !important;
    font-size: 1.4rem !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .mobile-social-bar .discord-link {
    background: #5865f2 !important;
  }

  .mobile-social-bar .discord-link:hover {
    background: #4752c4 !important;
    transform: translateY(-2px) !important;
  }

  .mobile-social-bar .instagram-link {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888) !important;
  }

  .mobile-social-bar .instagram-link:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(220, 39, 67, 0.4) !important;
  }
  
  /* Body padding'i kaldır */
  body {
    padding-bottom: 0 !important;
  }
} 

/* Testimonials Section - Modern Design */
.testimonials-section {
  padding: 40px 20px;
  background-color: #0f0f0f;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(168, 139, 250, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(168, 139, 250, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

/* Tam sayfa genişliği için */
.full-width-slider {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 30px 0;
  background: var(--background);
  overflow: hidden;
}

.testimonials-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #a78bfa, #c084fc, #e879f9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(168, 139, 250, 0.3);
  text-align: center;
}

.testimonials-subtitle {
  color: #a1a1aa;
  font-size: 1.1rem;
  margin-bottom: 3rem;
  font-weight: 400;
  text-align: center;
}

.testimonial-slider-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  padding: 0 150px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.testimonial-slider {
  padding: 15px 0;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  overflow: visible;
}

/* Swiper slide boyutları */
.testimonial-slider .swiper-slide {
  width: 400px;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: stretch;
  padding: 10px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Swiper wrapper'ı merkezle */
.testimonial-slider .swiper-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-card {
  background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
  padding: 35px 30px;
  border-radius: 20px;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(168, 139, 250, 0.1),
    0 0 20px rgba(168, 139, 250, 0.15),
    0 0 40px rgba(168, 139, 250, 0.1);
  margin: 10px;
  border: 1px solid rgba(168, 139, 250, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #a78bfa, #c084fc, #e879f9);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(168, 139, 250, 0.2),
    0 0 30px rgba(168, 139, 250, 0.25),
    0 0 60px rgba(168, 139, 250, 0.15);
}

.testimonial-card:hover::before {
  transform: scaleX(1);
}

/* Swiper active slide styling */
.testimonial-slider .swiper-slide-active .testimonial-card {
  transform: scale(1.05);
  box-shadow: 
    0 15px 50px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(168, 139, 250, 0.3),
    0 0 25px rgba(168, 139, 250, 0.3),
    0 0 50px rgba(168, 139, 250, 0.2);
}

.testimonial-slider .swiper-slide-active .testimonial-card::before {
  transform: scaleX(1);
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #a78bfa, #c084fc);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 24px;
  color: white;
  box-shadow: 0 4px 20px rgba(168, 139, 250, 0.3);
  transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-avatar {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(168, 139, 250, 0.4);
}

.testimonial-username {
  color: #a78bfa;
  font-weight: 600;
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.testimonial-comment {
  color: #e4e4e7;
  font-style: italic;
  line-height: 1.6;
  text-align: center;
  font-size: 1rem;
  margin: 0;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonials-note {
  text-align: center;
  color: #71717a;
  font-size: 0.9rem;
  margin-top: 2rem;
  font-style: italic;
}

/* Custom navigation buttons */
.swiper-button-next,
.swiper-button-prev {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #a78bfa, #c084fc);
  border-radius: 50%;
  color: white;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(168, 139, 250, 0.3);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(168, 139, 250, 0.4);
  background: linear-gradient(135deg, #c084fc, #e879f9);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 18px;
  font-weight: bold;
}

/* Custom pagination */
.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(168, 139, 250, 0.3);
  border-radius: 50%;
  transition: all 0.3s ease;
  margin: 0 6px;
}

.swiper-pagination-bullet-active {
  background: linear-gradient(135deg, #a78bfa, #c084fc);
  transform: scale(1.2);
  box-shadow: 0 0 15px rgba(168, 139, 250, 0.5);
}

/* Additional animations and effects */
@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

.testimonial-slider .swiper-slide {
  animation: fadeInUp 0.6s ease-out;
}

.testimonial-slider .swiper-slide-active {
  animation: slideInFromRight 0.8s ease-out;
}

.testimonial-slider .swiper-slide-prev {
  animation: slideInFromLeft 0.8s ease-out;
}

/* Smooth transitions for all elements */
.testimonial-card * {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover effects for navigation */
.swiper-button-next:hover,
.swiper-button-prev:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(168, 139, 250, 0.4);
  background: linear-gradient(135deg, #c084fc, #e879f9);
}

/* Responsive design improvements */
@media (max-width: 768px) {
  .testimonials-section {
    padding: 30px 0;
  }

  .full-width-slider {
    padding: 25px 0;
  }

  .testimonials-title {
    font-size: 2rem;
  }

  .testimonials-subtitle {
    font-size: 1rem;
  }

  .testimonial-slider-container {
    padding: 0 80px;
  }

  .testimonial-slider .swiper-slide {
    width: 350px;
  }

  .testimonial-card {
    padding: 25px 20px;
    min-height: 240px;
  }

  .testimonial-avatar {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .testimonial-username {
    font-size: 1rem;
  }

  .testimonial-comment {
    font-size: 0.9rem;
  }

  .swiper-button-next,
  .swiper-button-prev {
    width: 40px;
    height: 40px;
  }

  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .testimonials-title {
    font-size: 1.8rem;
  }

  .testimonial-slider-container {
    padding: 0 50px;
  }

  .testimonial-slider .swiper-slide {
    width: 320px;
  }

  .testimonial-card {
    padding: 20px 15px;
    min-height: 220px;
  }

  .testimonial-avatar {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }

  .testimonial-username {
    font-size: 0.9rem;
  }

  .testimonial-comment {
    font-size: 0.85rem;
  }

  .swiper-button-next,
  .swiper-button-prev {
    width: 35px;
    height: 35px;
  }

  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 14px;
  }
} 

/* Gradient text glow effect */
.gradient-text-glow {
  background: linear-gradient(135deg, #a78bfa, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 20px rgba(167, 139, 250, 0.5);
} 