/* BACKGROUND */
body {
  background: #0d0f0d url("../../assets/icons/rtg-192.png")
    center center / cover no-repeat fixed;
  color: #e8ffe8;
  font-family: system-ui, sans-serif;
  margin: 0;
  min-height: 100vh;
}

*, *::before, *::after {
  box-sizing: border-box;
}

/* HEADER */
.rtg-header {
  text-align: center;
  padding: 30px;
  background: rgba(0,0,0,0.35);
  border-bottom: 2px solid #2e6b33;
  backdrop-filter: blur(10px);
}
.rtg-header h1 {
  font-size: 2.4rem;
  color: #caffca;
  margin: 0;
}
.rtg-back {
  display: inline-block;
  margin-top: 10px;
  color: #a8ffa8;
  text-decoration: none;
  font-size: 1rem;
}

/* LAYOUT */
.profile-shell {
  max-width: 700px;
  margin: 40px auto;
  padding: 0 20px;
}

.profile-card {
  background: rgba(20,35,20,0.85);
  border-radius: 18px;
  border: 2px solid #2e6b33;
  padding: 25px;
  box-shadow: 0 0 18px rgba(0,0,0,0.4);
}

.profile-card h2 {
  margin-top: 0;
  color: #caffca;
  font-size: 1.8rem;
}

/* INPUTS */
label {
  display: block;
  margin-top: 14px;
  font-size: 0.95rem;
  color: #a8ffa8;
  font-weight: bold;
}

input,
textarea {
  width: 100%;
  padding: 12px;
  margin-top: 6px;
  border-radius: 12px;
  border: 2px solid #2e6b33;
  background: rgba(15,30,15,0.9);
  color: #e8ffe8;
  font-size: 1rem;
}
textarea {
  height: 100px;
}

/* LOGO PREVIEW */
.logo-preview {
  width: 120px;
  height: 120px;
  margin-top: 14px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 3px solid #3fa63f;
  box-shadow: 0 0 10px rgba(0,0,0,0.4);
}

/* BUTTON */
.rtg-btn-green {
  margin-top: 20px;
  padding: 14px;
  width: 100%;
  border: none;
  border-radius: 12px;
  background: #2e6b33;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  font-size: 1.1rem;
}
.rtg-btn-green:hover {
  background: #3fa63f;
}
