* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  background-color: #090808;
  color: #ffffff;
}

body {
  margin: 0;
  color: #ffffff;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  background-color: #090808;
}

/* Global scrollbar styles */
::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
  background: #2a2a2a;
  border-radius: 6px;
  border: 2px solid #0a0a0a;
}

::-webkit-scrollbar-thumb:hover {
  background: #3a3a3a;
}

::-webkit-scrollbar-corner {
  background: #0a0a0a;
}

* {
  scrollbar-width: thin;
  scrollbar-color: #2a2a2a #0a0a0a;
}

/* Главная страница - стили из Home.css */
.home-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  padding: 32px;
}

.home-content {
  max-width: 1000px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.home-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 768px) {
  .home-main {
    grid-template-columns: 1fr;
  }
}

.home-left {
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-maskot {
  width: 100%;
  max-width: 400px;
  height: auto;
  object-fit: contain;
}

.home-right {
  display: flex;
  flex-direction: column;
}

.home-description {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.home-text {
  font-size: 15px;
  line-height: 1.7;
  color: #cccccc;
  margin: 0 0 16px 0;
}

.home-text:last-child {
  margin-bottom: 0;
}

.highlight-gold {
  color: #d4af37;
  font-weight: 600;
}

.home-credits {
  text-align: center;
}

.credits-title {
  font-size: 13px;
  color: #888888;
  margin: 0 0 12px 0;
  font-weight: 500;
}

.credits-links {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.credit-link {
  padding: 6px 14px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  color: #d4af37;
  font-size: 13px;
  font-family: 'Courier New', monospace;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.credit-link:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: rgba(212, 175, 55, 0.3);
  color: #f0c952;
  transform: translateY(-1px);
  text-decoration: none;
}

/* Страница доната - стили из Donate.css и App.css */
.donate-page {
  padding: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.donate-header {
  text-align: center;
  margin-bottom: 48px;
}

.donate-header h1 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #ffffff;
}

.donate-header p {
  font-size: 16px;
  color: #888888;
}

.donate-sections {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.donate-section {
  background: #111111;
  border: 1px solid #1a1a1a;
  border-radius: 8px;
  padding: 24px;
  transition: all 0.2s;
}

.donate-section:hover {
  border-color: #2a2a2a;
  transform: translateY(-2px);
}

.donate-section h2 {
  font-size: 24px;
  color: #d4af37;
  margin-bottom: 16px;
  font-weight: 600;
}

.donate-section p {
  font-size: 15px;
  color: #cccccc;
  line-height: 1.7;
  margin-bottom: 16px;
}

.donate-section ul {
  color: #cccccc;
  padding-left: 20px;
  line-height: 1.7;
}

.donate-section li {
  margin-bottom: 8px;
}

.donate-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.donate-method {
  background: #0a0a0a;
  border: 1px solid #1a1a1a;
  border-radius: 8px;
  padding: 24px;
  text-align: center;
  transition: all 0.2s;
}

.donate-method:hover {
  border-color: #2a2a2a;
  transform: translateY(-2px);
}

.donate-method h3 {
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 8px;
}

.donate-method p {
  color: #888888;
  font-size: 14px;
  margin-bottom: 0;
}

.donate-thanks {
  text-align: center;
  padding: 32px;
  background: rgba(212, 175, 55, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  margin-top: 48px;
}

.donate-thanks h2 {
  font-size: 28px;
  color: #d4af37;
  margin-bottom: 12px;
}

.donate-thanks p {
  color: #cccccc;
  font-size: 16px;
}

/* Стили для банковских карт на странице доната */
.banks-row {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 32px 0;
}

.bank-card {
  border: 1px solid #1a1a1a;
  border-radius: 8px;
  padding: 24px;
  flex: 1;
  min-width: 200px;
  transition: all 0.2s;
}

.bank-card:hover {
  border-color: #d4af37;
  transform: translateY(-2px);
}

.bank-card h3 {
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 16px;
}

.requisites {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.label {
  font-size: 13px;
  color: #888888;
  font-weight: 500;
  text-transform: uppercase;
}

.value {
  font-size: 18px;
  color: #d4af37;
  font-weight: 600;
  font-family: 'Courier New', monospace;
}

/* Стили для списка благодарностей */
.thanks-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 16px;
}