/* === Basis-Reset und Grundlayout === */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

* {
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #f7f7f7;
  color: #333;
  font-size: 4.2vw;
  line-height: 1.4;
}

/* === Container für die Profilseite === */
#profile-page {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0;
  background: #f7f7f7;
}

/* === Auth-Views: Nicht- oder Eingeloggt === */
.auth-view {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Standardmäßig ausgeblendete Elemente */
.hidden {
  display: none !important;
}

/* === Modals === */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.modal:not(.hidden) {
  opacity: 1;
}
.modal.hidden {
  display: none !important;
}
.modal-content {
  background: #fff;
  padding: 5vw;
  width: 90%;
  max-width: 90vw;
  border-radius: 2.5vw;
  box-shadow: 0 2vw 8vw rgba(0,0,0,0.15);
  text-align: left;
  transform: translateY(2vw);
  transition: transform 0.2s ease;
  position: relative;
}
.modal:not(.hidden) .modal-content {
  transform: translateY(0);
}

/* === Formularelemente in den Modals === */
.modal-content h2 {
  color: #333;
  margin-bottom: 4vw;
  font-size: 5vw;
  text-align: center;
  font-weight: 600;
}

.form-group {
  margin-bottom: 3vw;
  text-align: left;
  position: relative;
}
.form-group label {
  display: block;
  margin-bottom: 1vw;
  font-weight: 500;
  color: #555;
  font-size: 4.2vw;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 2.5vw 3vw;
  border: 1px solid #ddd;
  border-radius: 1.5vw;
  font-size: 4.2vw;
  transition: all 0.2s ease;
  background: #fff;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #c8a165;
  box-shadow: 0 0 0 0.8vw rgba(200, 161, 101, 0.1);
}
.form-group input.error {
  border-color: #dc3545;
  background: #fff5f5;
}
.form-group .error-message {
  color: #dc3545;
  font-size: 3.5vw;
  margin-top: 0.8vw;
  display: none;
}
.form-group .error-message.show {
  display: block;
}

/* Loading state for inputs */
.form-group input.loading {
  background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxjaXJjbGUgY3g9IjgiIGN5PSI4IiByPSIzIiBmaWxsPSJub25lIiBzdHJva2U9IiNjOGE2NSIgc3Ryb2tlLXdpZHRoPSIyIj4KICAgICAgICA8YW5pbWF0ZSBhdHRyaWJ1dGVOYW1lPSJyIiB2YWx1ZXM9IjM7NzszIiBkdXI9IjFzIiByZXBlYXRDb3VudD0iaW5kZWZpbml0ZSIvPgogICAgICAgIDxhbmltYXRlIGF0dHJpYnV0ZU5hbWU9InN0cm9rZS1vcGFjaXR5IiB2YWx1ZXM9IjE7MC4zOzEiIGR1cj0iMXMiIHJlcGVhdENvdW50PSJpbmRlZmluaXRlIi8+CiAgICA8L2NpcmNsZT4KPC9zdmc+');
  background-repeat: no-repeat;
  background-position: right 2.5vw center;
  background-size: 3.5vw 3.5vw;
}

/* === Buttons allgemein === */
.btn {
  background: #c8a165;
  color: #fff;
  border: none;
  padding: 2.5vw 4vw;
  margin: 0.8vw;
  border-radius: 1.5vw;
  cursor: pointer;
  font-size: 4.2vw;
  font-weight: 500;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}
.btn:hover {
  background: #b89454;
  transform: translateY(-0.3vw);
  box-shadow: 0 0.8vw 2vw rgba(200, 161, 101, 0.3);
}
.btn:active {
  transform: translateY(0);
}
.btn:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn.loading {
  color: transparent;
}
.btn.loading::after {
  content: '';
  position: absolute;
  width: 3.5vw;
  height: 3.5vw;
  top: 50%;
  left: 50%;
  margin-left: -1.75vw;
  margin-top: -1.75vw;
  border: 0.5vw solid #ffffff;
  border-radius: 50%;
  border-top-color: transparent;
  animation: spin 1s linear infinite;
}

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

.button-group {
  display: flex;
  gap: 2vw;
  margin-top: 4vw;
}
.button-group .btn {
  flex: 1;
  margin: 0;
}

/* === Button zum Modal-Schließen === */
.btn-close-modal {
  background: #6c757d !important;
  color: #fff !important;
  border: none !important;
}
.btn-close-modal:hover {
  background: #5a6268 !important;
  transform: translateY(-0.3vw);
}

/* Close X button in top right */
.modal-close-x {
  position: absolute;
  top: 3vw;
  right: 4vw;
  background: none;
  border: none;
  font-size: 5vw;
  cursor: pointer;
  color: #6c757d;
  transition: color 0.2s ease;
  z-index: 1001;
}
.modal-close-x:hover {
  color: #495057;
}

/* === Profil-Content (eingeloggt) === */
#profile-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  overflow-y: auto;
  padding: 0;
}

/* === Profilkopf: Schön gestaltet === */
.profile-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 6vw 4vw;
  margin-bottom: 3vw;
  border-radius: 2vw;
  box-shadow: 0 0.5vw 1.5vw rgba(0,0,0,0.08);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.profile-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0.3vw;
  background: linear-gradient(90deg, #c8a165 0%, #b89454 50%, #c8a165 100%);
}

.profile-icon {
  width: 12vw;
  height: 12vw;
  background: linear-gradient(135deg, #c8a165 0%, #b89454 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 3vw;
  box-shadow: 0 0.8vw 2vw rgba(200, 161, 101, 0.3);
  position: relative;
}

.profile-icon::before {
  content: '';
  position: absolute;
  top: -0.2vw;
  left: -0.2vw;
  right: -0.2vw;
  bottom: -0.2vw;
  background: linear-gradient(135deg, #c8a165 0%, #b89454 100%);
  border-radius: 50%;
  z-index: -1;
  opacity: 0.3;
}

.profile-icon i {
  font-size: 5vw;
  color: #fff;
  text-shadow: 0 0.1vw 0.2vw rgba(0,0,0,0.2);
}

.profile-header h2 {
  margin: 0 0 1vw 0;
  font-size: 6vw;
  color: #2c3e50;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-shadow: 0 0.1vw 0.2vw rgba(0,0,0,0.1);
}

.gym-name {
  font-size: 4vw;
  color: #6c757d;
  margin: 0;
  font-weight: 500;
  opacity: 0.9;
  position: relative;
  padding: 0.5vw 2vw;
  background: rgba(255,255,255,0.7);
  border-radius: 2vw;
  backdrop-filter: blur(10px);
}

/* === Container für die einzelnen Profil-Einträge === */
.profile-sections {
  background: #fff;
  border-radius: 0;
  margin-bottom: 3vw;
  box-shadow: 0 0.3vw 0.8vw rgba(0,0,0,0.1);
}

/* Einzelne Zeilen in der Liste - Kompakt */
.profile-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3vw 4vw;
  border-bottom: 1px solid #f1f3f4;
  font-size: 4.2vw;
  transition: background-color 0.2s ease;
}
.profile-item span {
  margin-right: auto;
  text-align: left;
  color: #333;
}
.profile-item:last-child {
  border-bottom: none;
}
.profile-item.clickable {
  cursor: pointer;
}
.profile-item.clickable:hover {
  background: #f7f7f7;
}
.profile-item i.fa-chevron-right {
  color: #adb5bd;
  font-size: 2.5vw;
}

/* === Profile-Actions (Account löschen, Abmelden) === */
.profile-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 3vw;
  padding: 0 4vw 4vw;
  gap: 2vw;
}

/* === Outlined-Buttons (Account löschen, Abmelden) === */
.btn-outlined {
  background: transparent;
  border: 1px solid #ddd;
  color: #666;
  padding: 2vw 3vw;
  border-radius: 1.5vw;
  font-size: 4.2vw;
  cursor: pointer;
  transition: all 0.2s ease;
  flex: 1;
}
.btn-outlined:hover {
  border-color: #c8a165;
  color: #c8a165;
  background: #f7f7f7;
}

/* === Unauthentifizierte Ansicht === */
#unauthenticated-view {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 8vw 4vw;
  gap: 3vw;
}

#unauthenticated-view .btn {
  width: 45vw;
  max-width: 100%;
}

/* === Ticket-Bereich - Kompakt === */
.ticket-section {
  padding: 3vw 4vw;
  margin: 0;
  border: none;
  border-radius: 0;
  background: #f7f7f7;
}
.ticket-section h3 {
  margin: 0 0 2vw 0;
  font-size: 3.5vw;
  text-align: left;
  color: #666;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.ticket-info {
  display: flex;
  align-items: center;
  gap: 1.5vw;
  padding: 0;
  flex-wrap: nowrap;
  overflow-x: auto;
  justify-content: center;
}
.ticket-label {
  font-size: 4.2vw;
  color: #666;
  font-weight: 500;
  margin-right: 1vw;
  white-space: nowrap;
}
.ticket-item {
  background: #fff;
  padding: 1.5vw 2vw;
  border-radius: 1.5vw;
  text-align: center;
  box-shadow: 0 0.3vw 0.8vw rgba(0,0,0,0.05);
  border: 1px solid #e9ecef;
  display: flex;
  align-items: center;
  gap: 1.5vw;
  min-width: 12vw;
  flex-shrink: 0;
  flex: 0 0 auto;
}
.ticket-item i {
  font-size: 3.5vw;
  color: #c8a165;
}
.ticket-item span {
  font-size: 4.2vw;
  font-weight: 600;
  color: #333;
}

/* === Profile popup styling === */
#profile-popup {
  width: 100%;
  height: 100%;
  max-width: 90vw;
  left: 0;
  top: 0;
  transform: translateX(-100%);
  background: #f7f7f7;
  border-radius: 0;
  transition: transform 300ms;
  position: fixed;
  z-index: 12000;
  overflow: hidden;
}
#profile-popup.modal-in {
  transform: translateX(0);
}
#profile-popup .view,
#profile-popup .page {
  height: 100%;
  overflow: hidden;
}
#profile-popup .page-content {
  height: 100%;
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Popup-Backdrop */
.popup-backdrop {
  z-index: 11000;
  cursor: pointer;
  backdrop-filter: blur(4px);
  background: rgba(0, 0, 0, 0.4);
  opacity: 1;
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* QR-Code: Kompakt */
#qr-code {
  margin: 4vw auto !important;
  width: 25vw;
  height: 25vw;
  padding: 2vw;
  border-radius: 2vw;
  box-shadow: 0 0.8vw 2vw rgba(0,0,0,0.1);
  background: #fff;
  border: 0.3vw solid #e9ecef;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
#qr-code:hover {
  transform: scale(1.02);
  box-shadow: 0 1vw 2.5vw rgba(200, 161, 101, 0.15);
  border-color: #c8a165;
}
#qr-code img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 1vw;
}

/* === Media Queries für Tablets und größere Bildschirme === */
@media (min-width: 768px) {
  #profile-popup {
    width: 85vw;
    max-width: 400px;
  }
  
  body {
    font-size: 16px;
  }
  
  .btn {
    padding: 12px 20px;
    font-size: 16px;
  }
  
  .modal-content {
    padding: 24px;
    max-width: 400px;
  }
}

/* Membership list dialog */
.membership-list,
.payments-list {
  max-height: 60vh;
  overflow-y: auto;
  padding: 0;
}

.membership-item,
.payment-item {
  margin-bottom: 2vw;
  border: 1px solid #e9ecef;
  border-radius: 1.5vw;
  overflow: hidden;
  box-shadow: 0 0.3vw 0.8vw rgba(0, 0, 0, 0.05);
}

.membership-header,
.payment-header {
  background-color: #f7f7f7;
  padding: 2vw 3vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e9ecef;
}

.membership-name,
.payment-title {
  font-weight: 600;
  color: #c8a165;
  font-size: 3.5vw;
}

.payment-amount {
  font-weight: 600;
  color: #333;
}

.recurring-badge {
  background-color: #c8a165;
  color: white;
  font-size: 2.5vw;
  padding: 0.5vw 1vw;
  border-radius: 1.5vw;
  margin-left: 1.5vw;
}

.membership-details,
.payment-details {
  padding: 2vw 3vw;
  background-color: white;
}

.detail-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1vw;
  font-size: 3vw;
}

.detail-item .label {
  color: #666;
  font-weight: 500;
}

.detail-item .value {
  color: #333;
}

/* Payment status colors */
.payment-succeeded {
  color: #28a745;
}

.payment-pending {
  color: #ffc107;
}

.payment-failed {
  color: #dc3545;
}

/* === Notification Styles === */
.notification {
  position: fixed;
  top: 4vw;
  right: 4vw;
  padding: 2.5vw 3vw;
  border-radius: 1.5vw;
  color: white;
  font-weight: 500;
  z-index: 10000;
  transform: translateX(100vw);
  transition: transform 0.3s ease;
  max-width: 70vw;
  box-shadow: 0 0.8vw 2vw rgba(0,0,0,0.15);
  font-size: 3.5vw;
}
.notification.show {
  transform: translateX(0);
}
.notification.success {
  background: #28a745;
}
.notification.error {
  background: #dc3545;
}
.notification.warning {
  background: #ffc107;
  color: #212529;
}

/* Modal overlay improvements */
.form-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 2.5vw;
}
.form-overlay.show {
  display: flex;
}
.form-overlay .spinner {
  width: 7vw;
  height: 7vw;
  border: 0.8vw solid #f3f3f3;
  border-top: 0.8vw solid #c8a165;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* === Mobile Responsiveness === */
@media (max-width: 480px) {
  .modal-content {
    width: 95%;
    padding: 4vw;
    margin: 0 2.5%;
  }
  
  .modal-content h2 {
    font-size: 4.5vw;
  }
  
  .form-group input {
    font-size: 16px;
  }
  
  .button-group {
    flex-direction: column;
    gap: 1.5vw;
  }
  
  .button-group .btn {
    width: 100%;
  }
  
  .notification {
    left: 2vw;
    right: 2vw;
    max-width: none;
    top: 2vw;
  }
  
  .profile-picture-wrapper {
    width: 18vw;
    height: 18vw;
  }
}

/* === Focus states for better accessibility === */
.btn:focus,
.form-group input:focus {
  outline: 0.5vw solid #c8a165;
  outline-offset: 0.5vw;
}

/* === Custom Confirmation Modal === */
#confirmation-modal {
  z-index: 1100;
}

.confirmation-modal-content {
  max-width: 80vw;
  text-align: center;
  padding: 5vw;
}

.confirmation-icon {
  font-size: 10vw;
  color: #ffc107;
  margin-bottom: 3vw;
}

.confirmation-icon.warning {
  color: #dc3545;
}

.confirmation-icon.info {
  color: #c8a165;
}

#confirmation-title {
  margin: 0 0 2vw 0;
  font-size: 4.5vw;
  color: #333;
  font-weight: 600;
}

#confirmation-message {
  margin: 0 0 4vw 0;
  color: #666;
  line-height: 1.4;
  font-size: 3.5vw;
}

.confirmation-buttons {
  display: flex;
  gap: 2vw;
  justify-content: center;
}

.confirmation-buttons .btn {
  margin: 0;
  min-width: 18vw;
  padding: 2vw 3vw;
}

/* Danger button style */
.btn-danger {
  background: #dc3545 !important;
  color: #fff !important;
  border: none !important;
}

.btn-danger:hover {
  background: #c82333 !important;
  transform: translateY(-0.3vw);
  box-shadow: 0 0.8vw 2vw rgba(220, 53, 69, 0.3);
}

/* Warning button style */
.btn-warning {
  background: #ffc107 !important;
  color: #212529 !important;
  border: none !important;
}

.btn-warning:hover {
  background: #e0a800 !important;
  transform: translateY(-0.3vw);
  box-shadow: 0 0.8vw 2vw rgba(255, 193, 7, 0.3);
}

/* Confirmation modal animations */
#confirmation-modal .modal-content {
  animation: confirmationSlideIn 0.2s ease-out;
}

@keyframes confirmationSlideIn {
  from {
    transform: translateY(-4vw) scale(0.95);
    opacity: 0;
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

/* Mobile responsiveness for confirmation modal */
@media (max-width: 480px) {
  .confirmation-modal-content {
    width: 95%;
    padding: 4vw;
  }
  
  .confirmation-buttons {
    flex-direction: column;
    gap: 1.5vw;
  }
  
  .confirmation-buttons .btn {
    width: 100%;
    min-width: auto;
  }
  
  .confirmation-icon {
    font-size: 8vw;
  }
  
  #confirmation-title {
    font-size: 4vw;
  }
  
  #confirmation-message {
    font-size: 3vw;
  }
}

/* === Google Auth Section Styling === */
.google-auth-section {
  margin-top: 4vw;
  padding-top: 4vw;
  border-top: 1px solid #e9ecef;
}

.google-signin-container {
  display: flex;
  justify-content: center;
  margin-bottom: 3vw;
  min-height: 9vw;
}

.google-button-loading {
  display: flex;
  align-items: center;
  gap: 1.5vw;
  color: #666;
  font-size: 3.5vw;
}

.google-loading-spinner {
  width: 3.5vw;
  height: 3.5vw;
  border: 0.5vw solid #e9ecef;
  border-top: 0.5vw solid #c8a165;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

#adblock-notice,
#brave-notice {
  background: #fff3cd;
  border: 1px solid #ffeaa7;
  color: #856404;
  padding: 1.5vw 2.5vw;
  border-radius: 1vw;
  font-size: 3vw;
  margin-bottom: 2.5vw;
  text-align: center;
}

/* === Phone hint styling === */
.phone-hint {
  font-size: 2.8vw;
  color: #666;
  margin-top: 0.8vw;
  font-style: italic;
}

/* === Cancel membership button styling === */
#cancel-membership-row {
  padding: 2vw 4vw;
  background: #fff5f5;
  border-top: 1px solid #fed7d7;
}

#btn-cancel-membership {
  background: #dc3545;
  color: white;
  border: none;
  width: 100%;
  padding: 2vw 3vw;
  border-radius: 1vw;
  font-size: 3vw;
  font-weight: 500;
  transition: all 0.2s ease;
}

#btn-cancel-membership:hover {
  background: #c82333;
  transform: translateY(-0.3vw);
}

/* === Tryout Modal Styles === */
.tryout-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.tryout-modal.show {
  opacity: 1;
  visibility: visible;
}

.tryout-modal-content {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border: 2px solid #c8a165;
  border-radius: 20px;
  padding: 0;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow: hidden;
  position: relative;
  transform: scale(0.8);
  transition: transform 0.3s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.tryout-modal.show .tryout-modal-content {
  transform: scale(1);
}

.tryout-modal-header {
  background: linear-gradient(135deg, #c8a165 0%, #ffd700 100%);
  padding: 25px 30px 20px;
  text-align: center;
  position: relative;
}

.tryout-modal-header h2 {
  color: #000000;
  font-size: 1.8em;
  font-weight: 700;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.tryout-modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  color: #000000;
  font-size: 1.5em;
  cursor: pointer;
  padding: 5px;
  border-radius: 50%;
  transition: all 0.3s ease;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tryout-modal-close:hover {
  background: rgba(0, 0, 0, 0.1);
  transform: scale(1.1);
}

.tryout-modal-body {
  padding: 30px;
  text-align: center;
}

.tryout-icon {
  font-size: 4em;
  color: #ffd700;
  margin-bottom: 20px;
  animation: bounce 2s infinite;
}

.tryout-icon.success {
  color: #4CAF50;
  animation: none;
}

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

.tryout-modal-body p {
  color: #ffffff;
  font-size: 1.2em;
  line-height: 1.6;
  margin-bottom: 25px;
}

.tryout-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #cccccc;
  font-size: 1em;
}

.feature-item i {
  color: #4CAF50;
  font-size: 1.2em;
  min-width: 20px;
}

.tryout-modal-footer {
  padding: 0 30px 30px;
  display: flex;
  gap: 15px;
  justify-content: center;
}

.tryout-claim-btn {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #000000;
  border: none;
  padding: 15px 30px;
  border-radius: 30px;
  font-size: 1.1em;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
  min-width: 160px;
}

.tryout-claim-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
  background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
}

.tryout-claim-btn:active {
  transform: translateY(-1px);
}

.tryout-claim-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.tryout-later-btn {
  background: transparent;
  color: #cccccc;
  border: 2px solid #555;
  padding: 15px 30px;
  border-radius: 30px;
  font-size: 1.1em;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  min-width: 120px;
}

.tryout-later-btn:hover {
  border-color: #c8a165;
  color: #c8a165;
  background: rgba(200, 161, 101, 0.1);
}

.tryout-close-btn {
  background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
  color: #ffffff;
  border: none;
  padding: 15px 30px;
  border-radius: 30px;
  font-size: 1.1em;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  min-width: 120px;
}

.tryout-close-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(76, 175, 80, 0.3);
}

/* Success state styles */
.tryout-modal-content.success .tryout-modal-header {
  background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
}

.tryout-modal-content.success .tryout-modal-header h2 {
  color: #ffffff;
}

/* Responsive Design für Tryout Modal */
@media (max-width: 768px) {
  .tryout-modal-content {
    width: 95%;
    margin: 20px;
  }
  
  .tryout-modal-header {
    padding: 20px 20px 15px;
  }
  
  .tryout-modal-header h2 {
    font-size: 1.5em;
  }
  
  .tryout-modal-body {
    padding: 20px;
  }
  
  .tryout-icon {
    font-size: 3em;
  }
  
  .tryout-modal-body p {
    font-size: 1.1em;
  }
  
  .tryout-modal-footer {
    padding: 0 20px 20px;
    flex-direction: column;
    align-items: center;
  }
  
  .tryout-claim-btn,
  .tryout-later-btn,
  .tryout-close-btn {
    width: 100%;
    max-width: 250px;
  }
  
  .tryout-features {
    gap: 12px;
  }
  
  .feature-item {
    font-size: 0.9em;
  }
}

/* Mobile responsiveness für Tryout Modal */
@media (max-width: 480px) {
  .tryout-modal-content {
    width: 95%;
    margin: 10px;
  }
  
  .tryout-modal-header h2 {
    font-size: 1.3em;
  }
  
  .tryout-modal-body {
    padding: 15px;
  }
  
  .tryout-icon {
    font-size: 2.5em;
  }
  
  .tryout-modal-body p {
    font-size: 1em;
  }
  
  .tryout-claim-btn,
  .tryout-later-btn,
  .tryout-close-btn {
    padding: 12px 20px;
    font-size: 1em;
  }
}
