* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
  padding: 20px;
  color: #333;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 40px 30px;
  text-align: center;
}

header h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 1.1em;
  opacity: 0.9;
}

.stats {
  background: #f8f9fa;
  padding: 20px 30px;
  display: flex;
  justify-content: space-around;
  border-bottom: 1px solid #e0e0e0;
}

.stats p {
  font-size: 1em;
  color: #666;
}

.stats span {
  font-weight: bold;
  color: #667eea;
}

main {
  padding: 30px;
}

section {
  margin-bottom: 40px;
}

h2 {
  color: #333;
  margin-bottom: 20px;
  font-size: 1.8em;
}

.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #555;
}

input[type="text"],
textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #e0e0e0;
  border-radius: 6px;
  font-size: 1em;
  font-family: inherit;
  transition: border-color 0.3s;
}

input[type="text"]:focus,
textarea:focus {
  outline: none;
  border-color: #667eea;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

button {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  padding: 14px 30px;
  font-size: 1.1em;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  width: 100%;
}

button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

button:active {
  transform: translateY(0);
}

button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.message {
  margin-top: 20px;
  padding: 15px;
  border-radius: 6px;
  display: none;
}

.message.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  display: block;
}

.message.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
  display: block;
}

.answered-prayer-section {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 8px;
  border: 2px solid #667eea;
}

.answered-prayer {
  background: white;
  padding: 25px;
  border-radius: 8px;
}

.prayer-info {
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 2px solid #e0e0e0;
}

.prayer-info p {
  margin-bottom: 10px;
  line-height: 1.6;
}

.prayer-text {
  background: #f8f9fa;
  padding: 15px;
  border-radius: 6px;
  margin-top: 10px;
  font-style: italic;
  color: #555;
}

.answer h3 {
  color: #667eea;
  margin-bottom: 15px;
  font-size: 1.3em;
}

.answer-text {
  line-height: 1.8;
  font-size: 1.05em;
  color: #333;
  white-space: pre-wrap;
}

@media (max-width: 600px) {
  header h1 {
    font-size: 2em;
  }
  
  .stats {
    flex-direction: column;
    gap: 10px;
  }
  
  main {
    padding: 20px;
  }
}

