/* Global Reset */
html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  background: url("../images/background.jpg") no-repeat center center fixed;
  background-size: cover;
  color: whitesmoke;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
#user-email {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 1rem;
  max-width: 200px;
}
#vanta-bg {
  min-height: 100vh;
  width: 100%;
  overflow-x: hidden;
}
/* General Layout */
.site-wrap {
  max-width: 700px;
  margin: 0 auto;
  padding: 5rem 2rem 10rem;
}
section {
  margin-bottom: 6rem;
  padding: 2.5rem;
  background: rgba(0, 0, 0, 0.65);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 255, 255, 0.4);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
  transition: all 1.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
section:last-child {
  margin-bottom: 0;
}
/* Typography */
h1,
.section-title {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  font-weight: bold;
}
.section-title {
  margin-top: 2rem;
  margin-bottom: 1.2rem;
  border-bottom: 2px solid #00ffff;
  padding-bottom: 0.5rem;
}
p,
li {
  font-size: 1.1rem;
  line-height: 1.6rem;
}
ul {
  list-style: none;
  padding-left: 1.2rem;
  margin-bottom: 0;
}
ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.8rem;
}
ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 6px;
  height: 6px;
  background: #00ffff;
  border-radius: 50%;
  opacity: 0.8;
}
/* Button Styles */
.glow-button {
  position: relative;
  display: inline-block;
  min-width: 120px;
  font-weight: bold;
  padding: 12px 24px;
  color: #00ffff;
  background: transparent;
  border: 2px solid #00ffff;
  border-radius: 12px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 0 8px rgba(0, 255, 255, 0.4);
}
.glow-button:hover {
  background: rgba(0, 255, 255, 0.1);
  box-shadow:
    0 0 15px rgba(0, 255, 255, 0.8),
    0 0 30px rgba(0, 255, 255, 0.6);
  color: #ffffff;
  border-color: #ffffff;
}
/* Scroll Animation */
[data-scroll] {
  opacity: 0;
  transform: translateY(6rem) scale(0.93);
  will-change: opacity, transform;
  transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}
[data-scroll="in"] {
  opacity: 1;
  transform: translateY(0) scale(1);
}
/* Splitting Text Animation */
.splitting .char {
  color: transparent;
  position: relative;
}
.splitting .char::after {
  content: attr(data-char);
  position: absolute;
  left: 0;
  top: 0;
  color: #204754;
  opacity: 0;
  transform: translateY(30%);
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition-delay: calc(0.2s + (0.04s * var(--char-index)));
}
/* Header Bar */
.header-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3rem;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
}
/* Scroll Icon */
.icon-scroll {
  position: fixed;
  left: 50%;
  top: 85%;
  transform: translateX(-50%);
  width: 40px;
  height: 70px;
  border-radius: 25px;
  border: 2px solid #00ffff;
  box-shadow:
    0 0 8px #00ffff,
    0 0 16px #00ffff,
    inset 0 0 8px #00ffff;
  background: rgba(255, 255, 255, 0.02);
  z-index: 2000;
}
.icon-scroll::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  width: 8px;
  height: 8px;
  background: #00ffff;
  border-radius: 50%;
  transform: translateX(-50%);
  animation: scroll 1.5s infinite;
}
table td:nth-child(n + 2),
table th:nth-child(n + 2) {
  text-align: center;
}
@keyframes scroll {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(46px);
  }
}
/* Dashboard Components */
.dashboard-container {
  background: rgba(0, 0, 0, 0.6);
  padding: 20px;
  border-radius: 16px;
  margin-top: 20px;
  margin-bottom: 20px;
}
.square-button {
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(0, 255, 255, 0.6);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: 0.3s;
}
.square-button:hover {
  background: rgba(0, 255, 255, 0.1);
  border-color: #00ffff;
}
.square-button i {
  font-size: 48px;
  margin-bottom: 10px;
  color: #00ffff;
}
/* Email Text */
.email-text {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 70%;
  margin: 0 auto;
  font-weight: bold;
  text-align: center;
  color: white;
}
/* Form Styles */
.form-control {
  color: white;
  background-color: transparent;
  border-color: rgba(0, 255, 255, 0.6);
}
.form-control::placeholder {
  color: rgba(255, 255, 255, 0.6) !important;
  opacity: 1;
}
.zoom-icon {
  font-size: 1.2rem;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 6px;
  border-radius: 50%;
  transition: transform 0.2s ease;
  cursor: zoom-in;
}
.zoom-container:hover .zoom-icon {
  transform: scale(1.2);
}
.dropdown-menu li::before {
  content: none !important;
  display: none !important;
  padding-left: 0 !important;
  margin-left: 0 !important;
}
.dropdown-menu li {
  list-style: none !important;
  padding-left: 0 !important;
  margin-left: 0 !important;
  position: static !important;
}
/* Responsive (Mobile) */
@media (max-width: 600px) {
  .site-wrap {
    padding: 5rem 1rem 8rem;
  }
  h1,
  .section-title {
    font-size: 1.4rem;
  }
  p,
  ul li {
    font-size: 1rem;
    line-height: 1.6rem;
  }
  ul li {
    padding-left: 0;
  }
  ul li::before {
    left: -1rem;
    top: 0.5rem;
    width: 4px;
    height: 4px;
  }
  section {
    padding: 1rem;
  }
  .table-mobile-small {
    font-size: 0.8rem;
  }
}
