/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: #ffffff;
}

/* BACKGROUND WITH DOT TEXTURE */
body {
  background-color: #0e0e0e;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 4px 4px;
}

/* PAGE LAYOUT */
.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* HERO CENTER BLOCK */
.hero-center {
  margin-top: 30vh; /* чуть выше центра */
  text-align: center;
}

.main-logo {
  width: 600px;
  margin-bottom: 24px;
}

.subtitle {
  font-size: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #d0d0d0;
}

/* SECOND INFO BLOCK */
.info-block {
  margin-top: 80px;
  text-align: center;
  max-width: 420px;
}

.info-image {
  width: 300px;
  margin-bottom: 20px;
  opacity: 0.9;
}

.info-text {
  font-size: 15px;
  line-height: 1.6;
  color: #b5b5b5;
}

/* Redirect Button */

.redirect-btn {
    display: inline-block;
    margin-top: 25px;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    color: #ffffff;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 rgba(59, 130, 246, 0.6);
}

.redirect-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5);
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

.redirect-btn:active {
    transform: scale(0.97);
}
