body {
  margin: 0;
  padding: 0;
  background: url('images/office.png') no-repeat center center fixed;
  background-size: cover;
	color: #ffffff;
}
footer {
  text-align: center;
}
.top-links {
      position: fixed;
      top: 10px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 16px;
      z-index: 3;
    }
    .top-links a {
      text-decoration: none;
      padding: 8px 14px;
      background: rgba(0,0,0,0.5);
      color: #fff;
      border-radius: 4px;
      font-size: 0.95rem;
      transition: 0.3s;
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .top-links img {
      height: 20px;
      width: auto;
      display: block;
    }
    .top-links a:hover {
      background: rgba(255,255,255,0.85);
      color: #000;
    }

.contact-container {
    width: 90%;
    max-width: 900px;
    margin: 80px auto;
    text-align: center;
    animation: fadeIn 1.5s ease;
}

.title {
    font-size: 40px;
    margin-bottom: 10px;
    text-shadow: 0 0 15px orange;
}

.subtitle {
    font-size: 25px;
    margin-bottom: 40px;
    text-shadow: 0 0 10px gold;
}

.contact-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-box {
    background: rgba(0, 0, 0, 0.8);
    padding: 25px;
    width: 350px;
    border-radius: 30px;
    border: 2px solid rgba(81,243,240,0.1);
    box-shadow: 0 0 20px rgba(81, 243, 2400, 0.3);
    transition: 0.3s ease;
}

.contact-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.6);
}

.contact-box h2 {
    margin-bottom: 10px;
    text-shadow: 0 0 10px teal;
}

.contact-btn {
    display: inline-block;
    padding: 12px 20px;
    margin-top: 15px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s ease;
}

.discord-btn {
    background: #5865F2;
    color: white;
    box-shadow: 0 0 15px #5865F2;
}

.discord-btn:hover {
    background: #4752C4;
    box-shadow: 0 0 25px #5865F2;
}

.email-btn {
    background: #ff4444;
    color: white;
    box-shadow: 0 0 15px #ff4444;
}

.email-btn:hover {
    background: #cc0000;
    box-shadow: 0 0 25px #ff4444;
}

input, textarea {
    width: 100%;
    padding: 10px;
    margin-top: 12px;
    border-radius: 6px;
    border: none;
    outline: none;
    background: #1a1a22;
    color: white;
    font-size: 15px;
}

textarea {
    height: 120px;
    resize: none;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.smoke {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('images/mist.png') repeat;
  opacity: 1;
  animation: drift 60s linear infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes drift {
  from { background-position: 0 0; }
  to { background-position: 2000px 0; }
}

