/* Store Coming Soon Page Styles */
.store-main {
  background: #1a1a1a;
  min-height: 100vh;
  padding: 100px 20px 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.coming-soon-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.coming-soon-content {
  background: rgba(30, 30, 30, 0.8);
  border-radius: 20px;
  padding: 30px 20px;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  max-width: 100%;
}

.coming-soon-content::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #339CFF, transparent, #4ECDC4, transparent, #FF6B6B);
  border-radius: 20px;
  z-index: -1;
  animation: borderGlow 3s linear infinite;
}

@keyframes borderGlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.store-icon {
  font-size: 5rem;
  margin-bottom: 30px;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-20px); }
  60% { transform: translateY(-10px); }
}

.coming-soon-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(45deg, #339CFF, #4ECDC4, #FF6B6B);
  background-size: 200% 200%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 3s ease-in-out infinite;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.subtitle {
  font-size: 1.5rem;
  color: #aaa;
  margin-bottom: 40px;
  font-weight: 300;
  letter-spacing: 1px;
}

.countdown-container {
  background: rgba(42, 42, 42, 0.8);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 50px;
  border: 1px solid #444;
}

.countdown-text {
  color: #666;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.countdown-date {
  font-size: 2rem;
  font-weight: 700;
  color: #339CFF;
  text-shadow: 0 0 20px rgba(51, 156, 255, 0.5);
}

.features-preview {
  margin-bottom: 50px;
}

.features-preview h2 {
  color: #ccc;
  font-size: 2rem;
  margin-bottom: 30px;
  font-weight: 600;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

.feature {
  background: rgba(42, 42, 42, 0.6);
  border-radius: 12px;
  padding: 25px;
  border: 1px solid #444;
  transition: all 0.3s ease;
}

.feature:hover {
  transform: translateY(-5px);
  background: rgba(42, 42, 42, 0.8);
  border-color: #555;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.feature h3 {
  color: #4ECDC4;
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.feature p {
  color: #888;
  font-size: 0.95rem;
  line-height: 1.5;
}

.notify-section {
  background: rgba(51, 156, 255, 0.1);
  border-radius: 15px;
  padding: 40px;
  margin-bottom: 40px;
  border: 1px solid rgba(51, 156, 255, 0.2);
}

.notify-section h3 {
  color: #339CFF;
  font-size: 1.8rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.notify-section p {
  color: #ccc;
  font-size: 1.1rem;
  margin-bottom: 25px;
  line-height: 1.6;
}

.notify-form {
  max-width: 500px;
  margin: 0 auto;
}

.input-group {
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.input-group input {
  flex: 1;
  padding: 15px 20px;
  border: none;
  background: rgba(42, 42, 42, 0.9);
  color: white;
  font-size: 16px; /* Prevent zoom on iOS */
  font-family: 'Inter', sans-serif;
  border-radius: 8px 8px 0 0;
}

.input-group input::placeholder {
  color: #888;
}

.input-group input:focus {
  outline: none;
  background: rgba(42, 42, 42, 1);
}

.input-group button {
  background: linear-gradient(45deg, #339CFF, #2986e6);
  color: white;
  border: none;
  padding: 15px 20px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 0 0 8px 8px;
  min-height: 48px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.cta-section {
  border-top: 1px solid #333;
  padding-top: 30px;
}

.cta-section p {
  color: #aaa;
  font-size: 1.2rem;
  margin-bottom: 25px;
}

.forge-btn {
  background: linear-gradient(45deg, #4ECDC4, #45b7aa);
  color: white;
  border: none;
  padding: 18px 40px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 2px;
  box-shadow: 0 4px 15px rgba(78, 205, 196, 0.4);
}

.forge-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(78, 205, 196, 0.6);
}

/* Notification Success Modal */
.notification-success {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  backdrop-filter: blur(10px);
}

.notification-success.active {
  display: flex;
}

.success-content {
  background: rgba(30, 30, 30, 0.95);
  border-radius: 20px;
  padding: 50px;
  text-align: center;
  max-width: 400px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.success-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  animation: successPulse 2s ease-in-out infinite;
}

@keyframes successPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.success-content h3 {
  color: #4ECDC4;
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.success-content p {
  color: #ccc;
  margin-bottom: 25px;
  line-height: 1.6;
}

.success-content button {
  background: linear-gradient(45deg, #4ECDC4, #45b7aa);
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.success-content button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(78, 205, 196, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
  .coming-soon-content h1 {
    font-size: 2.5rem;
  }
  
  .coming-soon-content {
    padding: 40px 25px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .input-group {
    flex-direction: column;
  }
  
  .input-group input,
  .input-group button {
    border-radius: 8px;
  }
  
  .input-group button {
    margin-top: 10px;
  }
  
  .notify-section {
    padding: 25px;
  }
}

@media (max-width: 480px) {
  .store-main {
    padding: 80px 0 30px;
  }
  
  .coming-soon-content h1 {
    font-size: 2rem;
  }
  
  .subtitle {
    font-size: 1.2rem;
  }
  
  .countdown-date {
    font-size: 2rem;
  }
  
  .success-content {
    padding: 30px 20px;
    margin: 20px;
  }
}

/* Tablet styles */
@media (min-width: 768px) {
  .coming-soon-content {
    padding: 50px 40px;
  }
  
  .coming-soon-content h1 {
    font-size: 3.5rem;
    letter-spacing: 2px;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .input-group {
    flex-direction: row;
  }
  
  .input-group input {
    border-radius: 12px 0 0 12px;
  }
  
  .input-group button {
    border-radius: 0 12px 12px 0;
    padding: 18px 30px;
  }
}

/* Desktop styles */
@media (min-width: 1024px) {
  .coming-soon-content {
    padding: 60px 40px;
  }
  
  .coming-soon-content h1 {
    font-size: 4rem;
  }
  
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
  }
}