@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Nunito:wght@300;400;600;700;800&display=swap");
/* CSS pro karty a animace - Cute Edition 💖 */
.card-wrapper {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  z-index: 99;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
.card-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 80%, rgba(255, 182, 193, 0.3) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(173, 216, 230, 0.3) 0%, transparent 50%), radial-gradient(circle at 40% 40%, rgba(221, 160, 221, 0.3) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.card-inside {
  width: 85%;
  max-width: 400px;
  height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  border-radius: 30px;
  color: #ffffff;
  text-align: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) translateX(0);
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 2;
}
.card-inside::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 32px;
  background: linear-gradient(45deg, #ff6b9d, #c44569, #f38ba8, #ff006e, #8e44ad, #667eea, #764ba2, #ff6b9d);
  z-index: -1;
  animation: borderGlow 3s linear infinite;
}
.card-inside::after {
  content: "✨";
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 24px;
  animation: sparkle 2s ease-in-out infinite;
}
.card-inside h1 {
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  margin: 0 0 20px 0;
  padding: 0 20px;
  color: white;
  text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
  z-index: 10;
  position: relative;
}
.card-inside .ukol {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px 30px;
  flex-grow: 1;
}
.card-inside .ukol p {
  width: 100%;
  font-size: clamp(1.1rem, 3.5vw, 1.4rem);
  line-height: 1.6;
  font-weight: 500;
  color: #ffffff;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
  margin: 0;
  z-index: 10;
  position: relative;
}

/* CSS pro animaci při swipe - Enhanced */
.card-inside.enter-from-right {
  transform: translate(-50%, -50%) translateX(0) scale(1);
  opacity: 1;
}

.card-inside.exit-to-left {
  transform: translate(-50%, -50%) translateX(-100%) scale(0.8);
  opacity: 0;
}

@keyframes borderGlow {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}
@keyframes sparkle {
  0%, 100% {
    transform: scale(1) rotate(0deg);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.2) rotate(180deg);
    opacity: 1;
  }
}
.menu-back {
  color: white;
  text-decoration: none;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -60px;
  z-index: 99999;
  font-size: 18px;
  font-weight: 600;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.15);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 50px;
  transition: all 0.3s ease;
}
.menu-back:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}
.menu-back::before {
  content: "🏠";
  margin-right: 8px;
  font-size: 20px;
}

.add_card {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
}
.add_card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 70%, rgba(255, 182, 193, 0.2) 0%, transparent 50%), radial-gradient(circle at 70% 30%, rgba(173, 216, 230, 0.2) 0%, transparent 50%);
  pointer-events: none;
}
.add_card .submit {
  background: linear-gradient(135deg, #ff6b9d 0%, #667eea 100%);
  border: none;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: white;
  font-size: 1.1em;
  padding: 15px 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.2);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
}
.add_card .submit:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}
.add_card .submit:active {
  transform: translateY(0) scale(0.95);
}
.add_card .submit::before {
  content: "✨";
  margin-right: 8px;
}
.add_card .card {
  width: 85%;
  max-width: 500px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  color: #333;
  border-radius: 25px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.4);
  z-index: 2;
  position: relative;
}
.add_card .card form {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
  padding: 30px;
}
.add_card .card form .input {
  width: 100%;
  height: 35vh;
  margin-bottom: 20px;
}
.add_card .card form textarea {
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  border: 2px solid rgba(0, 0, 0, 0.1);
  color: #333;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  border-radius: 15px;
  padding: 20px;
  resize: none;
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  transition: all 0.3s ease;
}
.add_card .card form textarea::-moz-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.add_card .card form textarea::placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.add_card .card form textarea:focus {
  outline: none;
  border-color: rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.back-btn {
  margin-top: 30px;
  padding: 12px 25px;
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 600;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  font-family: "Poppins", sans-serif;
  letter-spacing: 1px;
}
.back-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}
.back-btn::before {
  content: "⬅️";
  margin-right: 8px;
}

.action {
  position: fixed;
  bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
  width: 100%;
  z-index: 999;
  gap: 15px;
}

.card_option_first {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
  gap: 20px;
}
.card_option_first .option-btn {
  padding: 15px 30px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.card_option_first .option-btn:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.2) 100%);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}
.card_option_first .option-btn.cute-btn {
  background: linear-gradient(135deg, #ff6b9d 0%, #667eea 100%);
  border-color: rgba(255, 255, 255, 0.5);
}
.card_option_first .option-btn.cute-btn::before {
  content: "💖";
  margin-right: 8px;
}
.card_option_first .option-btn.skip-btn {
  background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
  color: #333;
}
.card_option_first .option-btn.skip-btn::before {
  content: "⏭️";
  margin-right: 8px;
}

@media (max-width: 768px) {
  .card-wrapper {
    padding: 15px;
  }
  .card-wrapper::before {
    background: radial-gradient(circle at 30% 70%, rgba(255, 182, 193, 0.2) 0%, transparent 40%), radial-gradient(circle at 70% 30%, rgba(173, 216, 230, 0.2) 0%, transparent 40%), radial-gradient(circle at 50% 50%, rgba(221, 160, 221, 0.15) 0%, transparent 40%);
  }
  .card-inside {
    width: 90%;
    height: 60vh;
    min-height: 350px;
    border-radius: 25px;
    padding: 20px;
  }
  .card-inside::after {
    top: 15px;
    right: 15px;
    font-size: 20px;
  }
  .card-inside h1 {
    font-size: clamp(1.3rem, 5vw, 1.8rem);
    margin-bottom: 15px;
  }
  .card-inside .ukol {
    padding: 15px 20px;
  }
  .card-inside .ukol p {
    font-size: clamp(1rem, 4vw, 1.2rem);
    line-height: 1.5;
  }
  .menu-back {
    margin-top: -50px;
    font-size: 16px;
    padding: 10px 20px;
  }
  .menu-back::before {
    font-size: 18px;
  }
  .add_card {
    padding: 20px;
  }
  .add_card .card {
    width: 90%;
  }
  .add_card .card form {
    padding: 25px;
  }
  .add_card .card form .input {
    height: 30vh;
    margin-bottom: 15px;
  }
  .add_card .card form textarea {
    padding: 15px;
    font-size: 14px;
  }
  .add_card .submit {
    padding: 12px 25px;
    font-size: 1rem;
  }
  .back-btn {
    padding: 10px 20px;
    font-size: 14px;
    margin-top: 20px;
  }
  .back-btn::before {
    margin-right: 6px;
  }
  .action {
    bottom: 20px;
    gap: 12px;
  }
  .card_option_first {
    gap: 15px;
  }
  .card_option_first .option-btn {
    padding: 12px 25px;
    font-size: 14px;
  }
  .card_option_first .option-btn::before {
    margin-right: 6px;
  }
}
@media (max-width: 480px) {
  .card-inside {
    width: 95%;
    height: 55vh;
    min-height: 320px;
    border-radius: 20px;
    padding: 15px;
  }
  .card-inside::after {
    top: 12px;
    right: 12px;
    font-size: 18px;
  }
  .card-inside h1 {
    font-size: clamp(1.2rem, 6vw, 1.6rem);
    margin-bottom: 12px;
  }
  .card-inside .ukol {
    padding: 12px 15px;
  }
  .card-inside .ukol p {
    font-size: clamp(0.9rem, 5vw, 1.1rem);
  }
  .menu-back {
    margin-top: -40px;
    font-size: 14px;
    padding: 8px 16px;
  }
  .add_card .card {
    width: 95%;
  }
  .add_card .card form {
    padding: 20px;
  }
  .add_card .card form .input {
    height: 25vh;
  }
  .add_card .card form textarea {
    padding: 12px;
    font-size: 13px;
  }
  .add_card .submit {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  .back-btn {
    padding: 8px 16px;
    font-size: 13px;
  }
  .card_option_first .option-btn {
    padding: 10px 20px;
    font-size: 13px;
  }
}
@media (max-width: 360px) {
  .card-inside {
    height: 50vh;
    min-height: 280px;
  }
  .card-inside h1 {
    font-size: clamp(1.1rem, 7vw, 1.4rem);
  }
  .card-inside .ukol {
    padding: 10px 12px;
  }
  .card-inside .ukol p {
    font-size: clamp(0.85rem, 6vw, 1rem);
  }
}
@media (max-height: 500px) and (orientation: landscape) {
  .card-inside {
    height: 75vh;
    min-height: 250px;
  }
  .card-inside .ukol {
    padding: 15px 20px;
  }
  .menu-back {
    margin-top: -30px;
  }
  .action {
    bottom: 10px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .card-inside {
    width: 80%;
    max-width: 450px;
    height: 65vh;
  }
  .card-inside h1 {
    font-size: clamp(1.8rem, 3vw, 2.2rem);
  }
  .card-inside .ukol {
    padding: 25px 35px;
  }
  .card-inside .ukol p {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  }
  .add_card .card {
    width: 80%;
    max-width: 500px;
  }
}
@media (min-width: 1025px) {
  .card-inside {
    width: 75%;
    max-width: 500px;
    height: 70vh;
  }
  .card-inside:hover {
    transform: translate(-50%, -50%) translateX(0) scale(1.02);
  }
  .card-inside h1 {
    font-size: clamp(2rem, 2.5vw, 2.4rem);
  }
  .card-inside .ukol {
    padding: 30px 40px;
  }
}
.card-inside.no-cards {
  background: linear-gradient(135deg, rgba(200, 200, 200, 0.9) 0%, rgba(180, 180, 180, 0.85) 100%);
  border: 2px solid rgba(150, 150, 150, 0.5);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
}
.card-inside.no-cards::before {
  background: linear-gradient(45deg, #c0c0c0, #a9a9a9, #d3d3d3, #b8b8b8, #c0c0c0, #a9a9a9, #d3d3d3, #b8b8b8);
}
.card-inside.no-cards::after {
  content: "❌";
  color: #666;
  -webkit-text-fill-color: #666;
}
.card-inside.no-cards h1 {
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  font-weight: 900;
  color: #444;
  text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5);
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 10;
  position: relative;
}
.card-inside.no-cards .ukol p {
  color: #555;
  font-size: clamp(1.2rem, 4vw, 1.6rem);
  font-weight: 600;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.7);
  z-index: 10;
  position: relative;
}

/* Cute Add Card Styles 💕 */
.add-card-container {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
  padding: 20px;
  position: relative;
}
.add-card-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 25% 75%, rgba(255, 182, 193, 0.3) 0%, transparent 50%), radial-gradient(circle at 75% 25%, rgba(173, 216, 230, 0.3) 0%, transparent 50%), radial-gradient(circle at 50% 50%, rgba(221, 160, 221, 0.2) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}
.add-card-container::after {
  content: "✨💫⭐🌟💖🎨🌈✨";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 30px;
  line-height: 150px;
  letter-spacing: 80px;
  opacity: 0.1;
  animation: floatEmojis 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

.add-card-form {
  position: relative;
  z-index: 2;
  max-width: 500px;
  margin: 0 auto;
  padding: 30px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.1) 100%);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border-radius: 30px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.add-card-form .form-header {
  text-align: center;
  margin-bottom: 30px;
}
.add-card-form .form-header h1 {
  color: white;
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  margin: 0;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}
.add-card-form .form-header h1::before {
  content: "🎨";
  margin-right: 15px;
}
.add-card-form .form-header h1::after {
  content: "💕";
  margin-left: 15px;
}
.add-card-form .form-header p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-top: 10px;
}
.add-card-form .form-group {
  margin-bottom: 25px;
}
.add-card-form .form-group label {
  display: block;
  color: white;
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 1.1rem;
}
.add-card-form .form-group label::before {
  content: "💭";
  margin-right: 8px;
}
.add-card-form .form-group select, .add-card-form .form-group input[type=text] {
  width: 100%;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  color: white;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}
.add-card-form .form-group select::-moz-placeholder, .add-card-form .form-group input[type=text]::-moz-placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.add-card-form .form-group select::placeholder, .add-card-form .form-group input[type=text]::placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.add-card-form .form-group select:focus, .add-card-form .form-group input[type=text]:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
  transform: scale(1.02);
}
.add-card-form .form-group select option, .add-card-form .form-group input[type=text] option {
  background: #333;
  color: white;
}
.add-card-form .form-group textarea {
  width: 100%;
  height: 150px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  color: white;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  resize: vertical;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}
.add-card-form .form-group textarea::-moz-placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.add-card-form .form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.add-card-form .form-group textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}
.add-card-form .submit-btn {
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, #ff6b9d 0%, #667eea 100%);
  border: none;
  border-radius: 50px;
  color: white;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.2);
}
.add-card-form .submit-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  background: linear-gradient(135deg, #ff6b9d 0%, #667eea 100%);
}
.add-card-form .submit-btn:active {
  transform: translateY(0) scale(0.98);
}
.add-card-form .submit-btn::before {
  content: "✨";
  margin-right: 10px;
}
.add-card-form .submit-btn::after {
  content: "🚀";
  margin-left: 10px;
}

@keyframes floatEmojis {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  33% {
    transform: translateY(-20px) rotate(120deg);
  }
  66% {
    transform: translateY(10px) rotate(240deg);
  }
}
@media (max-width: 768px) {
  .add-card-container {
    padding: 15px;
  }
  .add-card-container::after {
    font-size: 25px;
    line-height: 120px;
    letter-spacing: 60px;
  }
  .add-card-form {
    margin: 15px;
    padding: 25px;
    border-radius: 25px;
  }
  .add-card-form .form-header {
    margin-bottom: 25px;
  }
  .add-card-form .form-header h1 {
    font-size: 2rem;
  }
  .add-card-form .form-header h1::before, .add-card-form .form-header h1::after {
    margin: 0 10px;
  }
  .add-card-form .form-header p {
    font-size: 1rem;
  }
  .add-card-form .form-group {
    margin-bottom: 20px;
  }
  .add-card-form .form-group label {
    font-size: 1rem;
    margin-bottom: 8px;
  }
  .add-card-form .form-group select, .add-card-form .form-group input[type=text] {
    padding: 12px 15px;
    font-size: 15px;
    border-radius: 12px;
  }
  .add-card-form .form-group textarea {
    height: 120px;
    padding: 15px;
    font-size: 15px;
    border-radius: 12px;
  }
  .add-card-form .submit-btn {
    padding: 15px;
    font-size: 1.1rem;
    border-radius: 40px;
  }
}
@media (max-width: 480px) {
  .add-card-container {
    padding: 10px;
  }
  .add-card-container::after {
    font-size: 20px;
    line-height: 100px;
    letter-spacing: 40px;
  }
  .add-card-form {
    margin: 10px;
    padding: 20px;
    border-radius: 20px;
  }
  .add-card-form .form-header {
    margin-bottom: 20px;
  }
  .add-card-form .form-header h1 {
    font-size: 1.8rem;
  }
  .add-card-form .form-header p {
    font-size: 0.9rem;
  }
  .add-card-form .form-group {
    margin-bottom: 18px;
  }
  .add-card-form .form-group label {
    font-size: 0.95rem;
    margin-bottom: 6px;
  }
  .add-card-form .form-group select, .add-card-form .form-group input[type=text] {
    padding: 10px 12px;
    font-size: 14px;
    border-radius: 10px;
  }
  .add-card-form .form-group textarea {
    height: 100px;
    padding: 12px;
    font-size: 14px;
    border-radius: 10px;
  }
  .add-card-form .submit-btn {
    padding: 12px;
    font-size: 1rem;
    border-radius: 35px;
  }
}
@media (max-width: 360px) {
  .add-card-form {
    margin: 8px;
    padding: 15px;
  }
  .add-card-form .form-header h1 {
    font-size: 1.6rem;
  }
  .add-card-form .form-header p {
    font-size: 0.85rem;
  }
  .add-card-form .form-group select, .add-card-form .form-group input[type=text] {
    padding: 8px 10px;
    font-size: 13px;
  }
  .add-card-form .form-group textarea {
    height: 90px;
    padding: 10px;
    font-size: 13px;
  }
  .add-card-form .submit-btn {
    padding: 10px;
    font-size: 0.9rem;
  }
}
@media (max-height: 500px) and (orientation: landscape) {
  .add-card-form .form-header {
    margin-bottom: 15px;
  }
  .add-card-form .form-header h1 {
    font-size: 1.5rem;
  }
  .add-card-form .form-group {
    margin-bottom: 15px;
  }
  .add-card-form .form-group textarea {
    height: 80px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .add-card-form {
    max-width: 600px;
    padding: 35px;
  }
  .add-card-form .form-header h1 {
    font-size: 2.8rem;
  }
  .add-card-form .form-header p {
    font-size: 1.2rem;
  }
  .add-card-form .form-group textarea {
    height: 180px;
  }
  .add-card-form .submit-btn {
    padding: 20px;
    font-size: 1.3rem;
  }
}
@media (min-width: 1025px) {
  .add-card-container::after {
    font-size: 35px;
    line-height: 180px;
    letter-spacing: 120px;
  }
  .add-card-form {
    max-width: 650px;
    padding: 40px;
  }
  .add-card-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  }
  .add-card-form .form-header h1 {
    font-size: 3rem;
  }
  .add-card-form .form-header p {
    font-size: 1.3rem;
  }
  .add-card-form .form-group textarea {
    height: 200px;
  }
  .add-card-form .form-group select:hover, .add-card-form .form-group input[type=text]:hover, .add-card-form .form-group textarea:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.12);
  }
  .add-card-form .submit-btn {
    padding: 22px;
    font-size: 1.4rem;
  }
  .add-card-form .submit-btn:hover {
    transform: translateY(-5px) scale(1.03);
  }
}
/* View All Cards Button Styles 📊 */
.view-cards-section {
  margin: 30px auto;
  text-align: center;
  max-width: 500px;
  padding: 0 20px;
}

.view-cards-btn {
  display: inline-block;
  background: linear-gradient(135deg, #ff6b6b 0%, #ffa726 100%);
  color: white;
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.view-cards-btn::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;
}
.view-cards-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 35px rgba(255, 107, 107, 0.6);
  background: linear-gradient(135deg, #ff5252 0%, #ff9800 100%);
}
.view-cards-btn:hover::before {
  left: 100%;
}
.view-cards-btn:active {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 8px 20px rgba(255, 107, 107, 0.5);
}

@media (max-width: 768px) {
  .view-cards-section {
    margin: 25px auto;
    padding: 0 15px;
  }
  .view-cards-btn {
    padding: 12px 25px;
    font-size: 1rem;
    border-radius: 40px;
  }
}
@media (max-width: 480px) {
  .view-cards-section {
    margin: 20px auto;
    padding: 0 10px;
  }
  .view-cards-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
    border-radius: 35px;
    width: calc(100% - 40px);
    max-width: 280px;
  }
}
@media (min-width: 1025px) {
  .view-cards-section {
    margin: 40px auto;
  }
  .view-cards-btn {
    padding: 18px 35px;
    font-size: 1.2rem;
  }
  .view-cards-btn:hover {
    transform: translateY(-5px) scale(1.08);
  }
}
* {
  box-sizing: border-box;
}

body {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  background-attachment: fixed;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: #fff;
  margin: 0;
  padding: 0;
  position: relative;
  height: 100vh;
  width: 100%;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%), radial-gradient(circle at 40% 40%, rgba(120, 219, 226, 0.3) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

swiper-container {
  width: 100%;
  height: 100%;
  z-index: 2;
  position: relative;
  padding-top: 120px;
  padding-bottom: 80px;
}

swiper-slide {
  text-align: center;
  font-size: 18px;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
}

swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.card-link {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90%;
  max-width: 350px;
  transition: transform 0.3s ease, filter 0.3s ease;
}
.card-link:hover {
  transform: translateY(-5px) scale(1.02);
  filter: brightness(1.1);
}
.card-link:active {
  transform: translateY(0) scale(0.98);
}

.card {
  width: 100%;
  height: 65vh;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 25px;
  padding: 2px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.3) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
          mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}
.card::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: rotate(45deg) translate(-100%, -100%);
  transition: transform 0.6s;
  pointer-events: none;
}
.card:hover::after {
  transform: rotate(45deg) translate(100%, 100%);
}
.card h1 {
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  text-align: center;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  margin: 0;
  padding: 20px;
  z-index: 1;
  position: relative;
  letter-spacing: 1px;
  background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sex {
  background: linear-gradient(135deg, #ff6b9d 0%, #c44569 25%, #f38ba8 50%, #ff006e 75%, #8e44ad 100%);
}
.sex::before {
  background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 50%, #fecfef 100%);
}
.sex h1 {
  background: linear-gradient(135deg, #fff 0%, #fce4ec 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.alco {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 25%, #ff9a56 50%, #ff6b35 75%, #f72585 100%);
}
.alco h1 {
  background: linear-gradient(135deg, #fff 0%, #fff3e0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.basic {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #4facfe 50%, #00f2fe 75%, #43e97b 100%);
}
.basic h1 {
  background: linear-gradient(135deg, #fff 0%, #e3f2fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.add {
  background: linear-gradient(135deg, #a8edea 0%, #fed6e3 25%, #ff9a9e 50%, #fecfef 75%, #ffecd2 100%);
}
.add h1 {
  background: linear-gradient(135deg, #333 0%, #555 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.add-card {
  background: linear-gradient(135deg, #84fab0 0%, #8fd3f4 25%, #a8edea 50%, #fed6e3 75%, #d299c2 100%);
}
.add-card h1 {
  background: linear-gradient(135deg, #333 0%, #2c3e50 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.friends {
  background: linear-gradient(135deg, #fa709a 0%, #fee140 25%, #84fab0 50%, #8fd3f4 75%, #a8edea 100%);
}
.friends h1 {
  background: linear-gradient(135deg, #fff 0%, #f1f8e9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.wrapper {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  z-index: 2;
  position: relative;
}

.descript {
  width: auto;
  position: fixed;
  color: #fff;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  font-weight: 600;
  z-index: 99999;
  text-align: center;
  font-size: 16px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.15);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 30px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.2);
  animation: pulse 2s ease-in-out infinite;
  white-space: nowrap;
}
.descript::before {
  content: "👈";
  margin-right: 8px;
  font-size: 18px;
  animation: swipeAnimation 2s ease-in-out infinite;
}

.app-header {
  position: fixed;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  text-align: center;
}
.app-header h1 {
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 6vw, 3rem);
  color: #fff;
  margin: 0;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 50%, #e9ecef 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 2px;
}
.app-header h1::before {
  content: "🎮";
  margin-right: 15px;
  color: #fff;
  -webkit-text-fill-color: #fff;
}
.app-header h1::after {
  content: "✨";
  margin-left: 15px;
  color: #fff;
  -webkit-text-fill-color: #fff;
}
.app-header p {
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  color: rgba(255, 255, 255, 0.9);
  margin: 5px 0 0 0;
  font-weight: 500;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
}
@keyframes swipeAnimation {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(10px);
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  33% {
    transform: translateY(-10px) rotate(120deg);
  }
  66% {
    transform: translateY(5px) rotate(240deg);
  }
}
@media (max-width: 768px) {
  body {
    font-size: 14px;
  }
  body::before {
    background: radial-gradient(circle at 30% 70%, rgba(120, 119, 198, 0.2) 0%, transparent 40%), radial-gradient(circle at 70% 30%, rgba(255, 119, 198, 0.2) 0%, transparent 40%), radial-gradient(circle at 50% 50%, rgba(120, 219, 226, 0.2) 0%, transparent 40%);
  }
  swiper-slide {
    padding: 15px;
    font-size: 16px;
  }
  swiper-container {
    padding-top: 100px;
    padding-bottom: 60px;
  }
  .card-link {
    width: 95%;
    max-width: none;
  }
  .card-link:hover {
    transform: translateY(-3px) scale(1.01);
  }
  .card {
    height: 60vh;
    min-height: 350px;
    border-radius: 20px;
  }
  .card h1 {
    font-size: clamp(1.3rem, 5vw, 1.8rem);
    padding: 15px;
    line-height: 1.2;
  }
  .descript {
    bottom: 20px;
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 25px;
  }
  .descript::before {
    font-size: 16px;
    margin-right: 6px;
  }
  .app-header {
    top: 30px;
  }
  .app-header h1 {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }
  .app-header h1::before, .app-header h1::after {
    margin: 0 10px;
  }
  .app-header p {
    font-size: clamp(0.8rem, 3vw, 1rem);
  }
}
@media (max-width: 480px) {
  swiper-slide {
    padding: 10px;
  }
  swiper-container {
    padding-top: 90px;
    padding-bottom: 50px;
  }
  .card {
    height: 55vh;
    min-height: 320px;
    border-radius: 18px;
  }
  .card h1 {
    font-size: clamp(1.2rem, 6vw, 1.6rem);
    padding: 12px;
  }
  .descript {
    bottom: 15px;
    font-size: 12px;
    padding: 6px 12px;
  }
  .descript::before {
    font-size: 14px;
  }
  .app-header {
    top: 25px;
  }
  .app-header h1 {
    font-size: clamp(1.6rem, 8vw, 2.2rem);
  }
  .app-header h1::before, .app-header h1::after {
    margin: 0 8px;
  }
  .app-header p {
    font-size: clamp(0.75rem, 3.5vw, 0.9rem);
  }
}
@media (max-width: 360px) {
  .card {
    height: 50vh;
    min-height: 280px;
  }
  .card h1 {
    font-size: clamp(1.1rem, 7vw, 1.4rem);
    padding: 10px;
  }
  .app-header {
    top: 20px;
  }
  .app-header h1 {
    font-size: clamp(1.4rem, 9vw, 2rem);
  }
  .app-header h1::before, .app-header h1::after {
    margin: 0 6px;
  }
  .app-header p {
    font-size: clamp(0.7rem, 4vw, 0.85rem);
  }
}
@media (max-height: 500px) and (orientation: landscape) {
  swiper-container {
    padding-top: 70px;
    padding-bottom: 40px;
  }
  .card {
    height: 75vh;
    min-height: 250px;
  }
  .descript {
    bottom: 10px;
    font-size: 12px;
    padding: 6px 10px;
  }
  .app-header {
    top: 15px;
  }
  .app-header h1 {
    font-size: clamp(1.4rem, 5vw, 1.8rem);
  }
  .app-header p {
    font-size: clamp(0.7rem, 2vw, 0.9rem);
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .card-link {
    width: 85%;
    max-width: 400px;
  }
  .card {
    height: 65vh;
  }
  .card h1 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
  }
}
@media (min-width: 1025px) {
  .card-link {
    max-width: 420px;
  }
  .card-link:hover {
    transform: translateY(-8px) scale(1.03);
  }
  .card {
    height: 70vh;
  }
  .card h1 {
    font-size: clamp(2rem, 2.5vw, 2.6rem);
  }
  swiper-container {
    padding-top: 140px;
    padding-bottom: 100px;
  }
}/*# sourceMappingURL=style.css.map */