.content {
  max-width: 800px;
  margin: 0 auto;
  padding: 2.5rem 2rem;
  min-height: calc(100vh - 200px);
}

.container {
  background: var(--card-bg);
  padding: 2.5rem;
  border-radius: 12px;
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
}

h1 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.subtitle {
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
}

.quote-card {
  background: var(--bg-secondary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 3rem 2.5rem;
  margin-bottom: 2rem;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  transition: border-color 0.2s ease;
}

.refresh-quote-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--accent-color);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: white;
  z-index: 2;
}

.refresh-quote-btn:hover {
  background: var(--accent-hover);
}

.refresh-quote-btn:active {
  animation: spin 0.1s linear;
}

.refresh-quote-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.quote-icon {
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-size: 4rem;
  color: var(--accent-color);
  opacity: 0.2;
  font-family: Georgia, serif;
  line-height: 1;
}

.quote-text {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
  transition: opacity 0.3s ease;
  position: relative;
  z-index: 1;
}

.quote-author {
  font-size: 1.125rem;
  color: var(--accent-color);
  font-weight: 600;
  text-align: right;
  transition: opacity 0.3s ease;
}

.btn-primary {
  width: 100%;
  padding: 1rem;
  background: var(--accent-color);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}

.btn-primary:disabled {
  background: var(--text-tertiary);
  cursor: not-allowed;
  transform: none;
}

@media (max-width: 768px) {
  .content {
    padding: 2rem 1.5rem;
  }

  .container {
    padding: 2rem;
  }

  h1 {
    font-size: 1.875rem;
  }

  .quote-card {
    padding: 2.5rem 2rem;
    min-height: 200px;
  }

  .quote-icon {
    font-size: 3rem;
  }

  .quote-text {
    font-size: 1.25rem;
  }

  .quote-author {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 1.5rem;
  }

  .quote-card {
    padding: 2rem 1.5rem;
  }

  .quote-text {
    font-size: 1.125rem;
  }
}
