/* ===== DOWNLOAD PAGE SPECIFIC STYLES ===== */
.download-page {
  padding: 100px 0 0;
  min-height: calc(100vh - 400px);
}

.download-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

/* Logo Container */
.logo-container-download {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

.download-logo {
  width: 250px;
  max-width: 50vw;
  height: auto;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 30px rgba(233, 74, 122, 0.6))
          drop-shadow(0 0 60px rgba(105, 60, 125, 0.3));
  animation: logoFloat 6s ease-in-out infinite;
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-15px) scale(1.05); }
}

.logo-glow-download {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150%;
  height: 150%;
  background: radial-gradient(circle, rgba(233, 74, 122, 0.4) 0%, rgba(105, 60, 125, 0.2) 40%, transparent 70%);
  filter: blur(40px);
  animation: glowPulse 4s ease-in-out infinite;
  z-index: 1;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.2); }
}

/* Season 1 3D Text */
.season-title-download {
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 900;
  margin: -10px 0 40px;
  line-height: 1;
  position: relative;
  text-align: center;
  font-family: 'Arial Black', 'Impact', sans-serif;
}

.season-text-download {
  display: inline-block;
  color: #FF69B4;
  position: relative;
  text-shadow: 
    2px 2px 0px #FF1493,
    4px 4px 0px #FFB6C1,
    6px 6px 0px #FFC0CB,
    8px 8px 0px #FFDDEE,
    10px 10px 20px rgba(255, 105, 180, 0.3),
    0 0 40px rgba(255, 105, 180, 0.2);
  transform: perspective(800px) rotateY(-10deg) rotateX(3deg);
  letter-spacing: 0.08em;
  animation: float 8s ease-in-out infinite;
  -webkit-text-stroke: 1px rgba(255, 20, 147, 0.3);
}

@keyframes float {
  0%, 100% { 
    transform: perspective(800px) rotateY(-10deg) rotateX(3deg) translateY(0);
  }
  25% { 
    transform: perspective(800px) rotateY(-8deg) rotateX(2deg) translateY(-5px);
  }
  75% { 
    transform: perspective(800px) rotateY(-12deg) rotateX(4deg) translateY(3px);
  }
}

/* Download Grid - Modern Card Layout */
.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

/* Download Box Styles */
.download-box {
  background: rgba(20, 20, 40, 0.8);
  border: 2px solid rgba(255, 20, 147, 0.3);
  border-radius: 20px;
  padding: 30px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.download-box:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 20, 147, 0.6);
  box-shadow: 0 15px 40px rgba(255, 20, 147, 0.3);
}

/* Box Types */
.steam-box {
  background: linear-gradient(135deg, #1b2838 0%, #2a475e 100%);
}

.patreon-box {
  background: linear-gradient(135deg, #F96854 0%, #FF424D 100%);
}

.free-box {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

/* Box Header */
.box-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.box-header h3 {
  font-size: 1.5rem;
  color: white;
  display: flex;
  align-items: center;
  gap: 10px;
}

.box-header i {
  font-size: 1.3rem;
}

.badge {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-recommended {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.badge-early-access {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.badge-free {
  background: rgba(0, 0, 0, 0.3);
  color: white;
}

.box-subtitle {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

/* Feature List */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.feature-list li {
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  padding-left: 25px;
}

.feature-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #32CD32;
  font-weight: bold;
}

/* Price Section */
.price-section {
  margin: 20px 0;
  text-align: center;
}

.steam-price {
  font-size: 1.8rem;
  font-weight: bold;
  color: #32CD32;
}

.original-price {
  text-decoration: line-through;
  color: #999;
  margin-right: 10px;
}

.current-price {
  color: #32CD32;
}

.discount {
  background: #32CD32;
  color: black;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.9rem;
  margin-left: 10px;
}

.price {
  font-size: 1.8rem;
  font-weight: bold;
  color: #32CD32;
}

/* Tier List for Patreon */
.tier-list {
  margin: 20px 0;
}

.tier-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

.tier-item:hover {
  background: rgba(0, 0, 0, 0.5);
  transform: translateX(5px);
}

.tier-item.popular {
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.tier-name {
  color: white;
  font-weight: bold;
}

.tier-price {
  color: #FFD700;
  font-weight: bold;
}

/* Buttons */
.download-box .btn {
  width: 100%;
  padding: 15px;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: auto;
}

/* Download page specific button styles */
.download-option .btn-steam {
  background: linear-gradient(135deg, #1b2838 0%, #2a475e 50%, #66c0f4 100%);
  color: white;
  box-shadow: 0 5px 20px rgba(102, 192, 244, 0.4);
  border: none;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 18px 35px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

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

.download-option .btn-steam:hover::before {
  left: 100%;
}

.download-option .btn-steam:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 30px rgba(102, 192, 244, 0.6);
  filter: brightness(1.1);
}

.download-option .btn-patreon {
  background: linear-gradient(135deg, #FF424D 0%, #F96854 50%, #FF6B6B 100%);
  color: white;
  box-shadow: 0 5px 20px rgba(249, 104, 84, 0.4);
  border: none;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 18px 35px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

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

.download-option .btn-patreon:hover::before {
  left: 100%;
}

.download-option .btn-patreon:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 30px rgba(249, 104, 84, 0.6);
  filter: brightness(1.1);
}

.btn-download {
  background: linear-gradient(135deg, #28a745 0%, #32CD32 50%, #00ff00 100%);
  color: white;
  box-shadow: 0 5px 20px rgba(40, 167, 69, 0.4);
  border: none;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 18px 35px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

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

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

.btn-download:hover:not(.btn-soon) {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 30px rgba(40, 167, 69, 0.6);
  filter: brightness(1.1);
}

/* Soon Button Style */
.btn-soon,
button.btn-soon {
  background: linear-gradient(135deg, #6c757d 0%, #5a6268 50%, #495057 100%) !important;
  cursor: not-allowed !important;
  opacity: 0.7 !important;
  pointer-events: none !important;
  color: white !important;
}

.btn-soon:hover {
  transform: none !important;
  box-shadow: 0 5px 20px rgba(108, 117, 125, 0.4) !important;
  filter: none !important;
}

.btn-soon .btn-icon {
  color: white !important;
}

/* Game Info Section */
.game-info-section {
  background: rgba(0, 0, 0, 0.6);
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 40px;
  backdrop-filter: blur(10px);
}

.game-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

.info-item {
  text-align: center;
}

.info-label {
  color: #FF1493;
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
}

.info-value {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
}

.game-description {
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 20px;
  line-height: 1.6;
}

/* System Requirements */
.system-requirements {
  margin: 60px 0;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(10px);
}

.requirements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.requirement-item {
  display: flex;
  align-items: center;
  gap: 15px;
  color: rgba(255, 255, 255, 0.9);
}

.requirement-item i {
  font-size: 1.5rem;
  color: #FF1493;
  width: 30px;
  text-align: center;
}

/* Section Divider */
.section-divider {
  border: none;
  height: 2px;
  background: linear-gradient(to right, transparent, #FF1493, transparent);
  margin: 40px 0;
}

/* Responsive */
@media (max-width: 768px) {
  .download-grid {
    grid-template-columns: 1fr;
  }
  
  .game-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .requirements-grid {
    grid-template-columns: 1fr;
  }
}

/* Download Options Grid - Equal Height */
.download-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 20px 0 40px;
}

/* All options equal width and height */
.steam-option, .free-option, .patreon-option {
  grid-column: span 1;
  display: flex;
  flex-direction: column;
}

/* Content wrapper for proper spacing */
.download-option-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

@media (max-width: 1200px) {
  .download-options {
    grid-template-columns: 1fr;
  }
  
  .patreon-option {
    grid-column: span 1;
  }
}

.download-option {
  background: rgba(0, 0, 0, 0.7);
  border-radius: 20px;
  padding: 40px;
  border: 2px solid rgba(255, 20, 147, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: visible;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  min-height: 650px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  height: 100%;
  justify-content: space-between;
}

/* Push buttons to bottom and ensure equal height */
.download-option .btn,
.download-option button.btn {
  margin-top: auto;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 100%;
  border: none;
  font-family: inherit;
  flex-shrink: 0;
  position: relative;
}

.download-option:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 20, 147, 0.6);
  box-shadow: 0 10px 30px rgba(255, 20, 147, 0.2);
}

/* Platform Logos */
.platform-logo {
  width: 50px;
  height: 50px;
  margin-right: 15px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.steam-logo {
  background: #1b2838;
  border-radius: 10px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  box-sizing: border-box;
}

.steam-logo svg {
  width: 30px;
  height: 30px;
}

.free-icon {
  font-size: 40px;
  margin-right: 15px;
}

.option-title-section {
  display: flex;
  align-items: center;
  flex: 1;
}

.option-title-section > div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.option-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.option-badge.recommended {
  background: #FF1493;
  color: white;
}

.option-badge.early-access {
  background: #4682B4;
  color: white;
}

.option-badge.free {
  background: #32CD32;
  color: black;
}

.option-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  min-height: 60px;
}

.option-title {
  font-size: 2.2rem;
  color: white !important;
  margin-bottom: 8px;
  font-weight: 800;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

/* Force white text for all platform titles */
.steam-option .option-title,
.patreon-option .option-title,
.free-option .option-title {
  color: white !important;
}

.option-price {
  font-size: 1.5rem;
  font-weight: bold;
  color: #32CD32;
  min-width: 100px;
  text-align: right;
}

.price-loading {
  color: #888;
  font-size: 0.9rem;
  animation: loadingBlink 1.5s infinite;
}

@keyframes loadingBlink {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

.option-features {
  margin: 30px 0;
  text-align: left;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateX(5px);
  color: #FFD700;
}

.feature-check {
  color: #32CD32;
  font-size: 1.2rem;
  font-weight: bold;
}

/* Patreon Tiers */
.patreon-tiers {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin: 20px 0;
  max-height: 300px;
  overflow-y: auto;
  padding-right: 10px;
  flex: 1 1 auto;
}

/* Custom scrollbar for patreon tiers */
.patreon-tiers::-webkit-scrollbar {
  width: 6px;
}

.patreon-tiers::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}

.patreon-tiers::-webkit-scrollbar-thumb {
  background: #FF1493;
  border-radius: 3px;
}

.patreon-tiers::-webkit-scrollbar-thumb:hover {
  background: #FF69B4;
}

.tier-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}

.tier-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(5px);
}

.tier-item.popular {
  border-color: #4682B4;
  box-shadow: 0 0 20px rgba(70, 130, 180, 0.3);
}

.tier-item.premium {
  border-color: #FFD700;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

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

.tier-name {
  font-weight: bold;
  color: #FF1493;
}

.tier-price {
  color: #32CD32;
  font-weight: bold;
}

.tier-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.85rem;
}

.tier-benefits li {
  padding: 2px 0;
  color: rgba(255, 255, 255, 0.8);
}

.tier-benefits li:before {
  content: "✓ ";
  color: #32CD32;
  font-weight: bold;
}

.system-requirements {
  margin: 60px 0;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(10px);
}

.requirements-single {
  max-width: 600px;
  margin: 30px auto 0;
}

.requirements-note {
  color: #888;
  font-style: italic;
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.requirements-note.steam-note {
  margin-top: 20px;
  color: #FF1493;
}

.requirement-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 15px;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.requirement-label {
  font-weight: bold;
  color: #FF1493;
}

.requirement-value {
  color: rgba(255, 255, 255, 0.9);
}

/* Section title adjustment */
.section-title {
  margin-top: 20px;
  margin-bottom: 30px;
}

/* Currency Selector - REMOVED
.download-options-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
}

.currency-selector {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  padding: 10px 20px;
  border-radius: 25px;
  backdrop-filter: blur(10px);
}

.currency-selector label {
  color: #FF1493;
  font-weight: bold;
}

.country-select {
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: 1px solid rgba(255, 20, 147, 0.3);
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.country-select:hover {
  border-color: rgba(255, 20, 147, 0.6);
  background: rgba(0, 0, 0, 0.7);
}

.country-select:focus {
  outline: none;
  border-color: #FF1493;
  box-shadow: 0 0 10px rgba(255, 20, 147, 0.3);
}
*/

/* Discount Badge */
.discount-badge {
  position: absolute !important;
  top: -15px !important;
  right: 20px !important;
  z-index: 10;
}

/* Steam option için özel ayar */
.steam-option {
  position: relative;
  overflow: visible !important;
}

/* Pulse animasyonu indirimler için */
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(50, 205, 50, 0.7);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(50, 205, 50, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(50, 205, 50, 0);
  }
}

@media (max-width: 768px) {
  .download-options {
    grid-template-columns: 1fr;
  }
  
  .download-logo {
    width: 180px;
  }
  
  .season-title-download {
    font-size: clamp(2.5rem, 10vw, 4rem);
    margin: -5px 0 30px;
  }
  
  .season-text-download {
    text-shadow: 
      1px 1px 0px #FF1493,
      2px 2px 0px #FFB6C1,
      3px 3px 0px #FFC0CB,
      4px 4px 10px rgba(255, 105, 180, 0.2);
  }
  
  .download-option {
    min-height: auto;
    padding: 30px;
  }
  
  .option-title {
    font-size: 1.8rem;
  }
  
  .requirements-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .game-title {
    font-size: 2.5rem;
  }
  
  .platform-logo {
    width: 40px;
    height: 40px;
  }
  
  .patreon-option {
    grid-column: span 1;
  }
}

/* Divider Styling */
.divider {
  width: 100%;
  max-width: 600px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #FF1493 20%, #FFD700 50%, #FF1493 80%, transparent);
  margin: 20px auto 60px;
  box-shadow: 0 0 20px rgba(255, 20, 147, 0.5);
  position: relative;
}

.divider::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 20px;
  background: radial-gradient(ellipse at center, rgba(255, 20, 147, 0.3) 0%, transparent 70%);
  filter: blur(10px);
}

/* ===== FOOTER FIX FOR DOWNLOAD PAGE ===== */
/* Reset any conflicting styles */
.download-page + .footer,
.download-page ~ .footer {
  margin-top: 80px !important;
  padding: 60px 0 20px !important;
  width: 100% !important;
}

/* Ensure proper spacing */
.download-page {
  margin-bottom: 0 !important;
}

/* Fix footer button alignment */
.download-page ~ .footer .footer-buttons .btn {
  width: auto !important;
  min-width: 160px !important;
  max-width: 160px !important;
}