/* --- CONTACT PAGE STYLES --- */

/* Wrapper */
.roblox-wrapper {
  font-family: 'Nunito', sans-serif;
  max-width: 1000px;
  margin: 0 auto;
  color: #2c3e50;
}

/* Layout Grid */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 30px;
  margin-top: 30px;
}

/* Sidebar Styling */
.info-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 16px;
  border: 2px solid #ecf0f1;
  border-bottom: 5px solid #bdc3c7; /* 3D effect */
  margin-bottom: 20px;
}
.info-card h3 { margin-top: 0; color: #2c3e50; font-family: 'Fredoka One', cursive; }

.email-box {
  display: flex; gap: 15px; align-items: flex-start;
  background: #f8f9fa;
  padding: 15px;
  border-radius: 12px;
  margin-top: 15px;
  border: 1px solid #dee2e6;
  transition: 0.2s;
}
.email-box:hover { background: #e8f8f5; border-color: #2ecc71; transform: translateX(5px); }

.email-box .icon { font-size: 24px; }
.email-box a {
  display: block; color: #2980b9; text-decoration: none; font-weight: bold; word-break: break-all;
}
.email-box small { color: #7f8c8d; font-size: 13px; display: block; margin-top: 3px; }

.note {
  font-size: 13px; background: #fff3cd; color: #856404; padding: 12px; border-radius: 8px; border: 1px solid #ffeeba; margin-top: 15px;
}

/* Form Container Styling */
.form-container {
  background: #ffffff;
  padding: 35px;
  border-radius: 16px;
  border: 2px solid #ecf0f1;
  border-bottom: 6px solid #bdc3c7; /* Stronger 3D effect */
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-weight: 800; margin-bottom: 8px; color: #34495e; font-size: 15px;
}

/* Inputs */
.game-input {
  width: 100%;
  padding: 14px;
  border: 2px solid #ecf0f1;
  border-radius: 12px;
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  transition: 0.2s;
  box-sizing: border-box; /* Fix width issues */
}
.game-input:focus { border-color: #2ecc71; outline: none; background: #f0fdf4; }

textarea.game-input { resize: vertical; min-height: 120px; }

/* Submit Button */
.game-btn {
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 12px;
  font-size: 18px;
  font-weight: bold;
  color: white;
  cursor: pointer;
  transition: 0.1s;
  text-transform: uppercase;
  font-family: 'Fredoka One', cursive;
}
.game-btn.green { background: #2ecc71; border-bottom: 5px solid #27ae60; }
.game-btn:hover { filter: brightness(1.1); transform: translateY(-2px); }
.game-btn:active { transform: translateY(3px); border-bottom-width: 2px; }
.game-btn:disabled { background: #bdc3c7; border-bottom-color: #95a5a6; cursor: not-allowed; }

/* Status Message */
.status-msg {
  margin-top: 15px; font-weight: bold; text-align: center; font-size: 16px; min-height: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-layout { grid-template-columns: 1fr; }
  .form-container { padding: 20px; }
}