:root {
  --primary-gradient: linear-gradient(135deg, #ff9800 0%, #ff6f00 100%);
  --secondary-gradient: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
  --success-gradient: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
  --warning-gradient: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
  --info-gradient: linear-gradient(135deg, #ff9800 0%, #ff6f00 100%);
  --card-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

* {
  font-family: 'Kanit', sans-serif;
}

body {
  background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 25%, #ffffff 50%, #fff3e0 75%, #ffcc80 100%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.navbar-custom {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.1);
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.8rem;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn-gradient-primary {
  background: var(--primary-gradient);
  border: none;
  color: white;
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 152, 0, 0.4);
}

.btn-gradient-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 152, 0, 0.5);
  color: white;
}

.btn-gradient-success {
  background: var(--success-gradient);
  border: none;
  color: white;
  padding: 12px 35px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 152, 0, 0.4);
}

.btn-gradient-success:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 152, 0, 0.5);
  color: white;
}

.btn-gradient-secondary {
  background: linear-gradient(135deg, #c3cfe2 0%, #c3cfe2 100%);
  border: none;
  color: #333;
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-gradient-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  color: #333;
}

.btn-gradient-dark {
  background: linear-gradient(135deg, #434343 0%, #000000 100%);
  border: none;
  color: white;
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-gradient-dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  color: white;
}

.main-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.main-card {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  border-radius: 30px;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(255,255,255,0.2);
  overflow: hidden;
  max-width: 500px;
  width: 100%;
}

.card-header-gradient {
  background: var(--info-gradient);
  color: white;
  padding: 30px;
  text-align: center;
}

.card-header-gradient h2 {
  margin: 0;
  font-weight: 600;
}

.card-header-gradient .material-icons {
  font-size: 4rem;
  margin-bottom: 15px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.form-label {
  font-weight: 500;
  color: #555;
  margin-bottom: 8px;
}

.form-control, .form-select {
  border-radius: 12px;
  border: 2px solid #e0e0e0;
  padding: 14px 18px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
  border-color: #fa709a;
  box-shadow: 0 0 0 4px rgba(250, 112, 154, 0.15);
}

.version-display {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  color: white;
  padding: 20px;
  border-radius: 16px;
  text-align: center;
  margin-bottom: 20px;
}

.version-display .version-number {
  font-size: 2.5rem;
  font-weight: 700;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
}

.status-true {
  background: linear-gradient(135deg, #d4fc79 0%, #96e6a1 100%);
  color: #2d5016;
}

.status-false {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
  color: white;
}
