.banner {
  background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 100%);
  color: #fff;
  text-align: center;
  padding: 12px 0;
  font-weight: bold;
  font-size: 1.2em;
}

    .banner a {
      color: white;
      text-decoration: none;
    }

    .main {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding: 40px 20px;
      text-align: center;
    }

.domain-name {
  font-size: 3em;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--ink);
}

.domain-price {
  font-size: 1.8em;
  font-weight: bold;
  margin-top: 10px;
  margin-bottom: 20px;
  color: var(--accent-dark);
}
     .description {
      font-size: 1.1em;
      margin-bottom: 30px;
      max-width: 600px;
    }

    form {
      margin-bottom: 40px;
    }

    input[type="email"] {
      padding: 12px;
      font-size: 1em;
      border: 2px solid #ccc;
      border-radius: 8px;
      width: 250px;
      margin-right: 10px;
    }

input[type="submit"] {
  padding: 12px 20px;
  font-size: 1em;
  background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
  box-shadow: 0 4px 6px rgba(0,0,0,0.08);
}

input[type="submit"]:hover {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
}


    .counter {
      display: flex;
      justify-content: center;
      margin-bottom: 10px;
    }

    .digit {
      background-color: black;
      color: white;
      font-weight: bold;
      font-size: 1.2em;
      padding: 10px;
      margin: 2px;
      width: 30px;
      text-align: center;
      border-radius: 4px;
      font-family: 'Courier New', monospace;
    }

    .footer {
      text-align: center;
      padding: 10px;
      background-color: #eee;
      font-size: 0.9em;
      font-style: italic;
      color: #666;
    }

    @media (max-width: 600px) {
      .domain-name {
        font-size: 1.6em;
      }

      input[type="email"] {
        width: 180px;
        margin-bottom: 10px;
      }

      input[type="submit"] {
        width: 100%;
      }

      .digit {
        width: 25px;
        font-size: 1em;
      }
    }

.webring-inline {
  text-align: center;
  margin-top: 50px;
  font-size: 1.2em; /* Base size */
}

.webring-title {
  font-weight: bold !important;
  color: #ff4444 !important;
  font-size: 1.44em !important;
  margin: 0 15px;
  letter-spacing: 1px;
}


.webring-link {
  color: #ccc;
  text-decoration: none;
  font-family: 'Courier New', monospace;
  padding: 0 10px;
}

.webring-link:hover {
  color: #fff;
}



