:root {
  --color-normal-user: white;
  --color-vip-user: #ae7cef;
  --color-admin-user: gold;
  --color-wife: #d228bc;
}

body {
  background-color: #0d0d0d;
  color: #ffffff;
  font-family: "Share Tech Mono", monospace;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
}

.background {
  display: none;
}

@keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
header {
  background: rgba(24, 35, 46, 0.82);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 0 0 16px 16px;
  box-shadow: 0 2px 16px rgba(0, 191, 174, 0.2);
  padding: 20px;
  text-align: center;
  border-bottom: 2px solid #333;
  margin-bottom: 0;
}
header h1 {
  margin: 0;
  font-size: 2.5em;
  color: #00bfae;
  font-family: "Orbitron", sans-serif;
  text-shadow: 0 0 10px #00bfae, 0 0 20px #01312b;
}

nav {
  margin: 0;
  padding: 0;
  text-align: center;
}
nav ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  text-align: center;
}
nav ul li {
  display: inline-block;
  margin: 0 15px;
}
nav ul li a {
  color: #00bfae;
  text-decoration: none;
  font-size: 1.2em;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}
nav ul li a:hover {
  color: #02d4aa;
  text-shadow: 0 0 8px #02d4aa;
}

.glow-link {
  color: #00bfae;
  text-shadow: none;
  transition: color 0.3s, border-bottom 0.3s;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}
.glow-link:hover {
  color: #02d4aa;
  border-bottom: 1px solid #02d4aa;
  background-color: rgba(2, 212, 170, 0.07);
}

#logout-all-btn {
  display: inline-block;
  white-space: nowrap;
  padding: 0.5em 1em;
  text-align: center;
  box-sizing: border-box;
  max-width: none;
  overflow: visible;
}

.glow-btn {
  background: rgba(20, 20, 20, 0.5);
  color: #00bfae;
  border: 1px solid #01312b;
  border-radius: 8px;
  padding: 6px 16px;
  font-size: 0.95em;
  box-shadow: none;
  text-shadow: none;
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s, color 0.3s;
  min-width: 80px;
  max-width: 120px;
  width: auto;
}
.glow-btn:hover {
  border-color: #02d4aa;
  background: rgba(2, 212, 170, 0.1);
  color: #02d4aa;
}

.glow-btn-disabled {
  background: rgba(20, 20, 20, 0.5);
  color: #01463e;
  border: 1px solid #01312b;
  border-radius: 8px;
  padding: 6px 16px;
  font-size: 0.95em;
  box-shadow: none;
  text-shadow: none;
  min-width: 80px;
  max-width: 120px;
  width: auto;
}

.glow-btn-disabled,
.glow-btn-disabled:hover,
button.glow-btn:disabled,
button.glow-btn:disabled:hover {
  opacity: 0.5;
  pointer-events: none;
  cursor: not-allowed;
  background: #1e2a2f !important;
  color: #888 !important;
  box-shadow: none !important;
  transition: none !important;
}

footer {
  text-align: center;
  padding: 0px;
  background-color: rgb(20, 20, 20);
  border-top: 2px solid #333;
  color: #00bfae;
  font-size: 0.9em;
}

.tabs {
  width: 97%;
  margin: 32px auto 0 auto;
  padding: 32px 32px 24px 32px;
  border-radius: 18px;
  box-shadow: 0 4px 32px 0 rgba(0, 0, 0, 0.25), 0 0 0 1px #01312b;
  border: 1px solid #222;
  background: rgba(20, 20, 20, 0.7);
  text-align: left;
  box-sizing: border-box;
}
.tabs .tab-buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  position: relative;
}
.tabs .tab-buttons::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: linear-gradient(to right, rgba(2, 212, 170, 0.18) 0%, rgba(0, 191, 174, 0.12) 60%, rgba(2, 212, 170, 0.18) 100%);
  border-radius: 2px;
  pointer-events: none;
}
.tabs .tab-buttons .tab-btn {
  background: transparent;
  color: #00bfae;
  border: 1.5px solid transparent;
  border-radius: 6px 6px 0 0;
  padding: 10px 28px;
  font-family: "Orbitron", sans-serif;
  font-size: 1.1em;
  letter-spacing: 1px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.tabs .tab-buttons .tab-btn.active, .tabs .tab-buttons .tab-btn:hover {
  background: rgba(2, 212, 170, 0.08);
  color: #02d4aa;
  border-color: #02d4aa;
}
.tabs .tab-content {
  position: relative;
}
.tabs .tab-content .tab {
  display: none;
  opacity: 0;
  padding: 18px 8px 8px 8px;
  background: transparent;
  border-radius: 0 0 12px 12px;
  min-height: 120px;
  transition: opacity 0.5s;
}
.tabs .tab-content .tab.active {
  display: block;
  opacity: 1;
}
.tabs .tab-content .tab ul {
  margin: 18px 0 0 0;
  padding-left: 18px;
  list-style: disc;
}
.tabs .tab-content .tab ul li {
  margin-bottom: 8px;
}

.button-row {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  padding: 32px 32px 32px 0;
}

.project-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
  font-size: 1em;
  background: rgba(20, 20, 20, 0.6);
  border-radius: 8px;
  overflow: hidden;
}
.project-table th, .project-table td {
  padding: 10px 14px;
  border-bottom: 1px solid #222;
  text-align: left;
}
.project-table th {
  background: rgba(2, 212, 170, 0.07);
  color: #00bfae;
  font-family: "Orbitron", sans-serif;
  font-weight: 700;
}
.project-table tr:last-child td {
  border-bottom: none;
}
.project-table a {
  color: #00bfae;
  text-decoration: underline;
}
.project-table a:hover {
  color: #02d4aa;
}

#register-message {
  margin-bottom: 12px;
}

#login-error {
  margin-bottom: 12px;
}

#password-reset-message {
  margin-bottom: 12px;
}

.auth-forms-container {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
  margin: 32px 0;
  text-align: center;
}

.auth-form-box {
  text-align: left;
  min-width: 200px;
  max-width: 600px;
  flex: 1 1 200px;
  background: rgba(20, 20, 20, 0.85);
  border-radius: 18px;
  box-shadow: 0 4px 32px 0 rgba(0, 0, 0, 0.25), 0 0 0 1px #01312b;
  border: 1px solid #222;
  padding: 32px 32px 24px 32px;
  transition: box-shadow 0.3s ease-in-out;
}
.auth-form-box:focus-within {
  box-shadow: 0 0 12px rgba(0, 191, 174, 0.8);
}
.auth-form-box h2 {
  font-family: "Orbitron", sans-serif;
  color: #00bfae;
  margin-bottom: 24px;
  font-size: 1.4em;
  text-align: center;
}
.auth-form-box label {
  display: block;
  margin-bottom: 4px;
  color: #ffffff;
  font-family: "Share Tech Mono", monospace;
  font-size: 1em;
}
.auth-form-box .glow-btn {
  width: 100%;
  margin-top: 18px;
  font-weight: 500;
}

.glow-input {
  width: calc(100% - 20px);
  padding: 10px 14px;
  margin: 8px auto 18px auto;
  border: 1px solid #01312b;
  border-radius: 8px;
  background: rgba(20, 20, 20, 0.65);
  color: #00bfae;
  font-size: 1em;
  font-family: "Share Tech Mono", monospace;
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
}
.glow-input:focus {
  border-color: #02d4aa;
  box-shadow: 0 0 8px #02d4aa;
}

.logged-in-user {
  color: #ffe066;
  font-weight: bold;
  text-shadow: 0 0 6px rgba(255, 224, 102, 0.3333333333);
  letter-spacing: 0.5px;
}

#cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.9);
  color: #ffffff;
  padding: 16px;
  text-align: center;
  z-index: 1000;
}
#cookie-banner div {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}
#cookie-banner div h3 {
  color: #ffe066;
  margin-bottom: 12px;
}
#cookie-banner div p {
  margin: 8px 0;
  font-size: 1em;
  line-height: 1.5;
}
#cookie-banner div button {
  margin-top: 12px;
}

.admin-table {
  border-collapse: collapse;
  width: 75%;
  margin-bottom: 10px;
  background-color: #0d0d0d;
  color: #ffffff;
}
.admin-table th, .admin-table td {
  padding: 10px 15px;
  text-align: left;
  border-bottom: 1px solid #01312b;
}
.admin-table th {
  background-color: rgba(2, 212, 170, 0.1);
  color: #00bfae;
  font-weight: bold;
}
.admin-table tr:nth-child(even) {
  background-color: rgba(20, 20, 20, 0.8);
}
.admin-table tr:nth-child(odd) {
  background-color: rgba(20, 20, 20, 0.6);
}
.admin-table tr:hover {
  background-color: #02d4aa;
  color: #0d0d0d;
}

/* VIP Panel Styling */
.vip-panel-container {
  padding: 20px;
  background: rgba(20, 20, 20, 0.9);
  border-radius: 10px;
  box-shadow: 0 0 8px rgba(0, 191, 174, 0.4);
}
.vip-panel-container h2 {
  color: #00bfae;
  text-shadow: 0 0 6px rgba(0, 191, 174, 0.6);
}
.vip-panel-container p {
  color: #b3b3b3;
  font-size: 1.1em;
}
.vip-panel-container p strong {
  color: #00bfae;
}
.vip-panel-container label {
  display: block;
  margin-top: 15px;
  color: #00bfae;
  font-size: 1em;
}
.vip-panel-container input[type=text] {
  width: 97%;
  padding: 10px;
  margin-top: 10px;
  margin-bottom: 20px;
  border: 1px solid #00bfae;
  border-radius: 5px;
  background: rgba(30, 30, 30, 0.9);
  color: #e6e6e6;
  font-size: 1em;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.vip-panel-container input[type=text]:focus {
  border-color: #02d4aa;
  box-shadow: 0 0 6px rgba(2, 212, 170, 0.6);
}
.vip-panel-container #vip-message-status {
  color: #00bfae;
  font-size: 1em;
  margin-top: 10px;
  display: none;
  text-shadow: 0 0 4px rgba(0, 191, 174, 0.5);
}

/* Copyright Banner Styling */
#copyright-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.9);
  color: #ffffff;
  padding: 16px;
  text-align: center;
  z-index: 1000;
}
#copyright-banner div {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}
#copyright-banner div h3 {
  color: #ffe066;
  margin-bottom: 12px;
}
#copyright-banner div p {
  margin: 8px 0;
  font-size: 1em;
  line-height: 1.5;
}
#copyright-banner div button {
  margin-top: 12px;
}

#copyright-link {
  color: #00bfae;
  text-decoration: none;
  position: relative;
}
#copyright-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: 0;
  height: 1px;
  background: rgba(0, 191, 174, 0.7);
  transition: all 0.4s ease-in-out;
  transform: translateX(-50%);
}
#copyright-link:hover::after {
  width: 100%;
}

.error-animation {
  animation: shake 0.3s ease-in-out;
}

@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px);
  }
  50% {
    transform: translateX(5px);
  }
  75% {
    transform: translateX(-5px);
  }
}
.comments-section {
  background: rgba(0, 50, 40, 0.07);
  border-radius: 10px;
  padding: 18px 24px;
  box-shadow: 0 2px 16px rgba(0, 191, 175, 0.312);
}

.comment-list {
  list-style: none;
  padding: 0;
}

.comment-list li::marker {
  content: "";
  display: none;
}

.comment-item {
  background: rgba(0, 191, 174, 0.09);
  border-left: 4px solid #00bfae;
  margin-bottom: 18px;
  padding: 14px 18px;
  border-radius: 7px;
  position: relative;
}

.comment-item.reply {
  margin-left: 40px;
  background: rgba(0, 191, 174, 0.04);
  border-left: 4px solid #02d4aa;
}

.comment-header {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
}

.comment-username {
  font-weight: bold;
  color: #00bfae;
  margin-right: 12px;
  font-family: "Orbitron", sans-serif;
}

.comment-clearance {
  font-size: 0.95em;
  color: #02d4aa;
  background: #101820;
  border-radius: 4px;
  padding: 2px 8px;
  margin-right: 8px;
  border: 1px solid #02d4aa;
}

.comment-date {
  font-size: 0.85em;
  color: #b2dfdb;
  margin-left: auto;
}

.comment-body {
  font-size: 1.08em;
  color: #e0f7fa;
}

.comment-actions {
  margin-top: 6px;
}

.comment-actions button {
  background: none;
  border: none;
  color: #ff5252;
  font-size: 0.95em;
  cursor: pointer;
  padding: 0 6px;
}

.comment-actions button:hover {
  text-decoration: underline;
}

.comment-actions button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  filter: grayscale(70%);
}

.comment-username {
  font-weight: bold;
  margin-right: 12px;
  font-family: "Orbitron", sans-serif;
  color: var(--color-normal-user);
}

.comment-username.vip-user {
  color: var(--color-vip-user);
}

.comment-username.admin-user {
  color: var(--color-admin-user);
}

#inline-reply-form {
  background: rgba(2, 212, 170, 0.06);
  border-left: 3px solid #00bfae;
  padding: 10px 12px 10px 18px;
  margin: 8px 0 8px 0;
  border-radius: 6px;
}

.delete-btn,
.red-btn {
  color: #ff5252 !important;
  border: none;
  background: none;
  font-weight: bold;
}

.delete-btn:hover,
.red-btn:hover {
  text-decoration: underline;
  color: #ff0000 !important;
}

.reply-btn {
  color: #009b8e !important;
  border: none;
  background: none;
  font-weight: bold;
}

.reply-btn:hover {
  color: #02d4aa !important;
  text-decoration: underline;
}

.deleted-comment {
  color: #888;
  font-style: italic;
}

.comment-body {
  max-height: 7.5em; /* about 5 lines */
  overflow: hidden;
  position: relative;
  transition: max-height 0.2s;
}

.comment-body.expanded {
  max-height: none;
}

.expand-btn {
  display: inline-block;
  margin-top: 4px;
  color: #00bfae;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.95em;
  padding: 0;
}

.textarea-wrapper {
  display: block;
  width: 100%;
  position: relative;
}

#comment-textarea {
  width: 100%;
  box-sizing: border-box;
  resize: vertical;
  display: block;
}

#comment-message {
  display: block;
  width: 100%;
  text-align: right;
  font-size: 0.78em;
  color: #767676;
  margin-top: 2px;
  transition: color 0.2s;
  pointer-events: none;
}

.comment-action-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

#comment-action-message {
  font-size: 0.98em;
  color: #00bfae;
  min-width: 80px;
  transition: color 0.2s;
}

.reply-char-count {
  display: block;
  width: 100%;
  text-align: right;
  font-size: 0.78em;
  color: #767676;
  margin-top: 2px;
}

.reply-action-message {
  font-size: 0.98em;
  color: #00bfae;
  min-width: 80px;
  transition: color 0.2s !important;
  margin-left: 10px;
}

.reply-textarea {
  resize: vertical !important;
}

.load-more-btn {
  background: linear-gradient(90deg, #001715 0%, #00241d 100%);
  color: #5af4ff;
  border: none;
  border-radius: 8px;
  min-width: 220px;
  max-width: 100%;
  width: auto;
  padding: 14px 32px;
  font-size: 1em;
  font-family: "Orbitron", sans-serif;
  font-weight: 400;
  letter-spacing: 1px;
  white-space: normal;
  text-align: center;
  margin: 18px auto 0 auto;
  display: block;
  box-sizing: border-box;
  box-shadow: 0 2px 16px rgba(0, 191, 174, 0.18);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.1s;
  cursor: pointer;
  outline: none;
}

.load-more-btn:hover,
.load-more-btn:focus {
  color: #00ffea;
  box-shadow: 0 4px 24px rgba(0, 191, 175, 0.39);
}

@media (max-width: 600px) {
  .load-more-btn {
    width: 95%;
    min-width: 0;
    font-size: 1em;
    padding: 14px 0;
  }
}
#contact-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s;
  background: rgba(10, 10, 10, 0.55);
  backdrop-filter: blur(2px) saturate(120%);
  -webkit-backdrop-filter: blur(2px) saturate(120%);
}

#contact-modal.visible {
  opacity: 1;
  pointer-events: auto;
}

#contact-modal > div {
  background: rgba(30, 40, 55, 0.18);
  border-radius: 22px;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  border: 1.5px solid rgba(2, 212, 170, 0.18);
  padding: 40px 36px 32px 36px;
  max-width: 700px;
  min-width: 320px;
  width: 90vw;
  min-height: 320px;
  position: relative;
  color: #fff;
  box-sizing: border-box;
  outline: 1.5px solid rgba(255, 255, 255, 0.08);
  border-left: 3px solid #00bfae;
}

#contact-modal > div::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 22px;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
  z-index: 1;
}

#contact-modal textarea {
  background: rgba(20, 28, 36, 0.55);
  color: #fff;
  border: 1px solid #00bfae;
  border-radius: 8px;
  padding: 10px;
  width: 97%;
  font-size: 1em;
  font-family: "Share Tech Mono", monospace;
  resize: vertical;
}

@media (max-width: 600px) {
  #contact-modal > div {
    padding: 18px 8px 18px 8px;
    min-width: 0;
    width: 98vw;
  }
}
.platform-icon {
  height: 20px;
  width: 20px;
  max-width: 100%;
  vertical-align: middle;
  object-fit: contain;
  display: inline-block;
}

.vip-section {
  position: relative;
  border: none;
  border-radius: 10px;
  padding: 18px 20px 14px 20px;
  margin-bottom: 20px;
  background: rgba(0, 255, 204, 0.04);
}
.vip-section::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -10px;
  bottom: 0;
  border-radius: 10px;
  padding: 1px;
  background: linear-gradient(135deg, #00bfae 0%, transparent 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 0;
}
.vip-section legend {
  position: relative;
  z-index: 1;
  border-radius: 5px;
  background: rgb(24, 28, 32);
  padding: 0 0px;
  margin-left: 18px;
  top: 0;
  font-weight: bold;
  color: #cd61ff;
  letter-spacing: 1px;
  box-shadow: 0 0 0 4px rgb(24, 28, 32);
}

/*video::-webkit-media-controls-picture-in-picture-button {
    display: none !important;
}*/

/*# sourceMappingURL=styles.css.map */
