* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Arial, sans-serif;
  -webkit-tap-highlight-color: transparent;
}

body {
  min-height: 100vh;
  width: 100vw;
  background: #050b12;
  color: white;
  overflow-x: hidden;
  overflow-y: auto;
  position: relative;
}

/* Background Glow */
.bg-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 0, 70, 0.18) 0%, transparent 70%);
  filter: blur(90px);
  top: -120px;
  left: -120px;
  z-index: 0;
  animation: float 6s infinite alternate ease-in-out;
}

.bg-glow2 {
  position: fixed;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 50, 50, 0.15) 0%, transparent 70%);
  filter: blur(90px);
  bottom: -120px;
  right: -120px;
  z-index: 0;
  animation: float 8s infinite alternate ease-in-out;
}

@keyframes float {
  from { transform: translate(0, 0); }
  to { transform: translate(35px, 35px); }
}

/* LOGIN CARD */
.auth-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 340px;
  transform: translate(-50%, -50%);
  padding: 30px;
  background: rgba(20, 25, 35, 0.85);
  border: 1px solid rgba(255, 0, 70, 0.25);
  border-radius: 20px;
  backdrop-filter: blur(15px);
  box-shadow: 0 0 40px rgba(0,0,0,0.6);
  z-index: 10;
  text-align: center;
}

.eyes {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 15px;
}

.eye {
  width: 45px;
  height: 20px;
  background: rgba(255, 0, 70, 0.08);
  border: 2px solid #ff003c;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(255, 0, 60, 0.5);
}

.pupil {
  width: 10px;
  height: 10px;
  background: #ff003c;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 8px #ff003c;
}

.lid {
  position: absolute;
  width: 100%;
  height: 0%;
  background: #050b12;
  top: 0;
  transition: 0.1s;
}

h2 span {
  color: #ff003c;
}

.form-group {
  margin-bottom: 15px;
}

input {
  width: 100%;
  padding: 12px;
  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  color: white;
  outline: none;
}

input:focus {
  border: 1px solid #ff003c;
}

.error-text {
  font-size: 12px;
  color: #ff4a4a;
  margin-top: 6px;
  text-align: left;
  min-height: 16px;
}

.btn-action {
  width: 100%;
  padding: 12px;
  background: linear-gradient(90deg, #ff003c, #ff4d4d);
  border: none;
  border-radius: 10px;
  color: white;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(255, 0, 60, 0.35);
}

.switch-area {
  margin-top: 15px;
  font-size: 13px;
  color: #aaa;
}

.switch-area b {
  color: #ff003c;
  cursor: pointer;
  margin-left: 5px;
}

/* Popup */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(10px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.popup-box {
  width: 300px;
  padding: 30px;
  background: #141923;
  border: 1px solid #ff003c;
  border-radius: 20px;
  text-align: center;
  animation: zoom 0.3s ease;
}

@keyframes zoom {
  from { transform: scale(0.7); opacity: 0; }
}

.popup-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid #ff003c;
  margin-bottom: 15px;
}

.popup-ok {
  display: block;
  width: 100%;
  padding: 12px;
  background: #ff003c;
  color: #000;
  font-weight: bold;
  border-radius: 10px;
  margin-top: 20px;
  cursor: pointer;
}

.shake {
  animation: shakeEffect 0.4s;
}

@keyframes shakeEffect {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-10px); }
  75% { transform: translateX(10px); }
}

.fade {
  animation: fadeEffect 0.4s;
}

@keyframes fadeEffect {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* PAGE 2 */
.next-page {
  position: absolute;
  width: 100%;
  height: 100%;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 30px;
  z-index: 20;
}

.neon-title {
  font-size: 45px;
  color: #ff003c;
  text-shadow: 0 0 10px #ff003c, 0 0 25px #ff4d4d;
  margin-bottom: 25px;
  text-align: center;
}

.video-box {
  width: 95%;
  max-width: 500px;
  height: 280px;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid rgba(255, 0, 60, 0.25);
  box-shadow: 0 0 30px rgba(255, 0, 60, 0.15);
}

.main-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.select-area {
  margin-top: 20px;
  width: 95%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.select-group label {
  display: block;
  margin-bottom: 10px;
  font-size: 15px;
  color: #ff003c;
  text-shadow: 0 0 8px rgba(255, 0, 60, 0.35);
}

.triple-select {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

select {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255, 0, 60, 0.2);
  color: white;
  font-size: 14px;
  outline: none;
  cursor: pointer;
}

select:focus {
  border: 1px solid #ff003c;
}

.long-input {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255, 0, 60, 0.2);
  color: white;
  outline: none;
}

.confirm-btn {
  margin-top: 25px;
  width: 95%;
  max-width: 500px;
  padding: 14px;
  border: none;
  border-radius: 15px;
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
  background: linear-gradient(90deg, #ff003c, #ff4d4d);
  color: white;
  box-shadow: 0 0 20px rgba(255, 0, 60, 0.35);
  transition: 0.2s;
}

.confirm-btn:hover {
  transform: scale(1.05);
}

/* PAGE 3 */
.page3 {
  position: absolute;
  width: 100%;
  height: 100%;
  display: none;
  flex-direction: column;
  padding: 18px;
  padding-bottom: 95px;
  z-index: 30;
  overflow-y: auto;
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.hello-text {
  font-size: 20px;
  color: #ff003c;
}

.mini-status {
  font-size: 12px;
  color: #aaa;
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #00ff4c;
}

.divider {
  opacity: 0.5;
}

.profile-card {
  width: 100%;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255, 0, 60, 0.15);
  border-radius: 18px;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  margin-bottom: 15px;
}

.profile-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 0, 60, 0.15);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
}

.profile-name {
  font-size: 16px;
  font-weight: bold;
}

.profile-role, .profile-exp {
  font-size: 12px;
  color: #aaa;
  margin-top: 2px;
}

.live-tag {
  position: absolute;
  right: 14px;
  top: 14px;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 15px;
  background: rgba(0,255,0,0.12);
  color: #00ff66;
  border: 1px solid rgba(0,255,0,0.25);
}

.banner-box {
  width: 100%;
  height: 200px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 0, 60, 0.2);
  margin-bottom: 18px;
}

.content-area {
  width: 100%;
}

.section-page {
  display: none;
}

.section-title {
  color: #ff003c;
  font-size: 18px;
  margin-bottom: 8px;
}

.section-desc {
  font-size: 13px;
  color: #aaa;
}

/* Bug Tabs */
.bug-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
}

.bug-tab {
  flex: 1;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(0,0,0,0.35);
  color: #aaa;
  font-weight: bold;
  cursor: pointer;
}

.bug-tab.active {
  background: rgba(255, 0, 60, 0.2);
  border: 1px solid rgba(255, 0, 60, 0.3);
  color: #ff003c;
}

.bug-box {
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255, 0, 60, 0.15);
  border-radius: 18px;
  padding: 16px;
}

.mini-label-red {
  font-size: 13px;
  color: #ff003c;
  margin-bottom: 8px;
  display: block;
}

.long-input-red {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255, 0, 60, 0.18);
  color: white;
  outline: none;
  margin-bottom: 14px;
}

.long-select-red {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255, 0, 60, 0.18);
  color: white;
  outline: none;
  margin-bottom: 16px;
}

.send-btn-red {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 15px;
  cursor: pointer;
  font-weight: bold;
  background: linear-gradient(90deg, #ff003c, #ff4d4d);
  color: white;
  box-shadow: 0 0 20px rgba(255, 0, 60, 0.35);
}

/* Settings button */
.setting-btn {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 15px;
  cursor: pointer;
  font-weight: bold;
  background: rgba(255, 0, 60, 0.18);
  border: 1px solid rgba(255, 0, 60, 0.25);
  color: white;
}

/* NAVBAR */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-around;
  padding: 10px 0;
  background: rgba(0,0,0,0.75);
  border-top: 1px solid rgba(255, 0, 60, 0.18);
  z-index: 9999;
}

.nav-btn {
  flex: 1;
  background: transparent;
  border: none;
  color: #aaa;
  font-weight: bold;
  cursor: pointer;
  padding: 12px 0;
  font-size: 13px;
}

.nav-btn.active {
  color: #ff003c;
  text-shadow: 0 0 10px rgba(255,0,60,0.4);
}

/* CONTACT PAGE */
.contact-page {
  position: absolute;
  width: 100%;
  height: 100%;
  display: none;
  flex-direction: column;
  padding: 18px;
  z-index: 50;
}

.contact-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.back-btn {
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 0, 60, 0.25);
  background: rgba(0,0,0,0.4);
  color: white;
  cursor: pointer;
  font-weight: bold;
}

.contact-head-title {
  font-size: 18px;
  color: #ff003c;
}

.contact-box-classic {
  width: 100%;
  padding: 18px;
  border-radius: 18px;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255, 0, 60, 0.15);
}

.contact-box-classic h3 {
  margin-bottom: 15px;
  color: white;
}

.contact-link {
  display: block;
  text-decoration: none;
  padding: 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  color: white;
  margin-bottom: 12px;
  font-weight: bold;
  border: 1px solid rgba(255,255,255,0.1);
}
