.goa-settings-container {
  margin: 0 0 20px 0;
  background: transparent;
}

.goa-admin-header {
  background: #fff;
  border: 1px solid #c3c4c7;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
  margin: 0 0 20px 0;
  position: relative;
}

.goa-header {
  background: linear-gradient(135deg, #2271b1 0%, #135e96 100%);
  color: white;
  padding: 25px 30px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #c3c4c7;
}

.goa-header::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="80" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="60" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="70" cy="30" r="1" fill="rgba(255,255,255,0.1)"/></svg>')
    repeat;
  animation: float 20s infinite linear;
  pointer-events: none;
}

@keyframes float {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.goa-header h1 {
  margin: 0;
  font-size: 1.8em;
  font-weight: 400;
  position: relative;
  z-index: 1;
  color: white;
}

.goa-header .subtitle {
  margin: 8px 0 0 0;
  font-size: 1em;
  opacity: 0.9;
  position: relative;
  z-index: 1;
  color: white;
}

.goa-content {
  padding: 0;
}

.goa-status-card {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border: 2px solid #00a32a;
  box-shadow: 0 4px 12px rgba(0, 163, 42, 0.15);
  margin: 0 0 25px 0;
  padding: 25px;
  display: flex;
  align-items: center;
  gap: 20px;
  border-radius: 8px;
}

.goa-status-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #00a32a 0%, #008a20 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(0, 163, 42, 0.3);
}

.goa-status-text {
  flex: 1;
}

.goa-status-text h3 {
  margin: 0 0 10px 0;
  color: #00a32a;
  font-size: 1.4em;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.goa-status-text p {
  margin: 0;
  color: #1d2327;
  line-height: 1.6;
  font-size: 1.05em;
  font-weight: 500;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.8);
}

.goa-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  padding: 30px;
}

.goa-feature-card {
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 25px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.goa-feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #667eea, #764ba2);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.goa-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.goa-feature-card:hover::before {
  transform: scaleX(1);
}

.goa-feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  margin-bottom: 20px;
}

.goa-feature-card h4 {
  margin: 0 0 12px 0;
  color: #333;
  font-size: 1.2em;
  font-weight: 600;
}

.goa-feature-card p {
  margin: 0;
  color: #6c757d;
  line-height: 1.6;
}

.goa-stats-section {
  background: #fff;
  border: 1px solid #c3c4c7;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
  padding: 20px;
  margin: 0 0 20px 0;
}

.goa-stats-section h3 {
  margin: 0 0 5px 0;
  color: #1d2327;
  font-size: 1.15em;
  font-weight: 600;
}

.goa-stats-section > p {
  margin: 0 0 20px 0;
  color: #646970;
  font-size: 0.95em;
}

.goa-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 15px;
}

.goa-stat-item {
  background: #f6f7f7;
  padding: 15px;
  text-align: center;
  border: 1px solid #dcdcde;
  border-radius: 3px;
}

.goa-stat-number {
  font-size: 1.8em;
  font-weight: 600;
  color: #2271b1;
  margin-bottom: 5px;
  display: block;
}

.goa-stat-label {
  color: #646970;
  font-size: 0.85em;
  font-weight: 500;
}

.goa-footer {
  background: #f6f7f7;
  border: 1px solid #c3c4c7;
  border-top: none;
  padding: 15px 20px;
  text-align: center;
  color: #646970;
  font-size: 0.9em;
}

.goa-footer p {
  margin: 0;
}

.goa-footer a {
  color: #2271b1;
  text-decoration: none;
}

.goa-footer a:hover {
  color: #135e96;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .goa-header h1 {
    font-size: 1.5em;
  }

  .goa-features-grid {
    grid-template-columns: 1fr;
  }

  .goa-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .goa-status-card {
    flex-direction: column;
    text-align: center;
  }
}

.goa-status-text p .plugin-name {
  color: #2271b1;
  font-weight: 700;
  background: linear-gradient(135deg, #2271b1, #135e96);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  position: relative;
}

.goa-status-text p .plugin-name::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #2271b1, transparent);
  opacity: 0.6;
}
