/* =========================================================
===================== AAA GAMING UI v2 =====================
=============== TITLU MICȘORAT LA 72PX ====================
========================================================= */

/* ------------------ GLOBAL ------------------ */
body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: radial-gradient(circle at center, #0d0f16 0%, #06070c 60%, #020207 100%);
  color: #f1f1f1;
  text-align: center;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  animation: fadeIn 1.1s ease both;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 50% 20%, rgba(100,150,255,0.08), transparent 60%),
              repeating-linear-gradient(0deg, rgba(255,255,255,0.015) 0px, rgba(255,255,255,0.015) 1px, transparent 1px, transparent 2px);
  opacity: 1;
  pointer-events: none;
  z-index: -1;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ------------------ TITLU ------------------ */
h1 {
  margin-top: 130px;
  font-size: 72px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 3px;
  background: linear-gradient(90deg, #e9f3ff, #94c9ff, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 6px 30px rgba(120,180,255,0.45));
  animation: titlePulse 4s ease-in-out infinite;
}

@keyframes titlePulse {
  0% { filter: drop-shadow(0 4px 20px rgba(120,180,255,0.35)); }
  50% { filter: drop-shadow(0 10px 45px rgba(120,180,255,0.65)); }
  100% { filter: drop-shadow(0 4px 20px rgba(120,180,255,0.35)); }
}

.subtitle {
  font-size: 20px;
  opacity: 0.55;
  margin-top: -12px;
}

/* ------------------ BIO ------------------ */
.bio {
  max-width: 820px;
  margin: 55px auto;
  font-size: 20px;
  line-height: 1.8;
  opacity: 0.9;
  padding: 10px 30px;
  background: rgba(255,255,255,0.02);
  border-radius: 15px;
  box-shadow: 0 0 25px rgba(110,160,255,0.08);
  transition: 0.35s ease;
}

.bio:hover {
  opacity: 1;
  transform: translateY(-6px);
}

/* ------------------ PROFILE CIRCLE ------------------ */
.profile-circle {
  width: 240px;
  height: 240px;
  margin: 50px auto;
  border-radius: 50%;
  background: radial-gradient(circle, #1c1f26, #0d0f13);
  border: 3px solid rgba(120,180,255,0.35);
  box-shadow: 0 0 30px rgba(120,180,255,0.25), inset 0 0 20px rgba(255,255,255,0.03);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: 0.35s ease;
}

.profile-circle:hover {
  transform: scale(1.08);
  border-color: rgba(140,200,255,0.55);
  box-shadow: 0 0 60px rgba(120,180,255,0.45), inset 0 0 40px rgba(255,255,255,0.07);
}

.profile-circle span:first-child { font-size: 56px; font-weight: 800; color: #cbe5ff; }
.profile-circle span:last-child { font-size: 20px; opacity: 0.7; }

/* ------------------ USERNAME ------------------ */
.username {
  margin-top: 18px;
  font-size: 30px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 1px;
}

/* ------------------ BUTTONS ------------------ */
.btn {
  padding: 16px 48px;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 600;
  display: inline-block;
  margin: 14px;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, #2f6cff, #4aa8ff);
  box-shadow: 0 8px 30px rgba(70,130,255,0.25);
  transition: 0.3s ease;
}

.btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 45px rgba(70,130,255,0.4);
}

/* ------------------ SECTION TITLES ------------------ */
h2 {
  font-size: 36px;
  font-weight: 700;
  margin-top: 110px;
  color: #e7e7e7;
}

h2::after {
  content: "";
  width: 90px;
  height: 4px;
  margin: 16px auto 0;
  display: block;
  background: linear-gradient(90deg, #73b6ff, #c0e2ff);
  border-radius: 3px;
}

/* ------------------ SOCIAL CARDS ------------------ */
.socials {
  display: flex;
  justify-content: center;
  gap: 45px;
  flex-wrap: wrap;
  margin-top: 60px;
}

.social {
  width: 220px;
  height: 220px;
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 10px 35px rgba(0,0,0,0.45);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: 0.3s ease;
  text-decoration: none;
  color: #fff;
}

.social img {
  width: 64px;
  opacity: 0.9;
  transition: 0.3s;
}

.social:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 18px 55px rgba(120,180,255,0.35);
  border-color: rgba(120,180,255,0.4);
}

.social:hover img { opacity: 1; }

/* ------------------ MENU BUTTON ------------------ */
.menu-btn {
  position: fixed;
  top: 30px;
  right: 30px;
  font-size: 30px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  color: #f1f1f1;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: 0.3s;
  z-index: 1000;
}

.menu-btn:hover { transform: translateY(-3px); }

/* ------------------ SIDE MENU ------------------ */
.side-menu {
  position: fixed;
  right: -300px;
  top: 0;
  width: 300px;
  height: 100%;
  background: #0e1116;
  box-shadow: -6px 0 30px rgba(0,0,0,0.5);
  padding-top: 110px;
  display: flex;
  flex-direction: column;
  transition: 0.35s ease;
  z-index: 999;
}

.side-menu.active { right: 0; }

.side-menu a {
  color: #e5e5e5;
  padding: 22px 45px;
  font-size: 20px;
  text-decoration: none;
  transition: 0.25s;
}

.side-menu a:hover {
  background: rgba(255,255,255,0.05);
  padding-left: 65px;
}

/* ------------------ FOOTER (ORDONAT STÂNGA-MIJLOC-DREAPTA) ------------------ */
footer.main-footer {
  background: #0b0e14;
  padding: 50px 25px;
  margin-top: 90px;
  width: 92%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 20px;
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.6);
  color: #b9b9b9;
}

footer.main-footer > div {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

/* Footer stânga */
footer.main-footer > div > div:first-child {
  display: flex;
  gap: 20px;
  align-items: center;
}

footer.main-footer h2 { margin: 0; font-size: 28px; }
footer.main-footer p { margin: 6px 0; opacity: 0.85; }

/* Footer mijloc */
footer.main-footer > div > div:nth-child(2) h3,
footer.main-footer > div > div:nth-child(3) h3 {
  margin-bottom: 12px;
}

footer.main-footer > div > div:nth-child(2) a {
  display: block;
  margin-bottom: 6px;
  opacity: 0.8;
  text-decoration: none;
  color: #b9b9b9;
}

footer.main-footer > div > div:nth-child(3) div { display: flex; gap: 14px; }

footer.main-footer > p {
  margin-top: 35px;
  text-align: center;
  opacity: 0.6;
}

/* ------------------ RESPONSIVE ------------------ */
@media (max-width: 768px) {
  h1 { font-size: 54px; }
  .profile-circle { width: 190px; height: 190px; }
  .social { width: 180px; height: 180px; }
}

@media (max-width: 480px) {
  h1 { font-size: 38px; }
  .btn { padding: 14px 34px; font-size: 16px; }
  .social { width: 150px; height: 150px; }
}
