* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "JetBrains Mono", monospace;
  cursor: none;
}

body {
  background: linear-gradient(135deg, #080611 0%, #1a1129 50%, #241233 100%);
  color: #ffffff;
  overflow-x: hidden;

  scroll-behavior: auto;
}

.cursor {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255, 105, 180, 0.2);
  box-shadow: 0 0 10px #ff69b4, 0 0 20px #ff69b4, 0 0 40px #ff69b4,
    0 0 80px rgba(255, 105, 180, 0.6);
  animation: glowPulse 2s infinite alternate;
}

.cursor-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3px;
  height: 3px;
  background: #ff69b4;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 5px rgba(255, 105, 180, 0.8);
  transition: opacity 0.2s ease;
}

.cursor.hover .cursor-dot {
  opacity: 0;
}

@keyframes glowPulse {
  from {
    box-shadow: 0 0 8px #ff69b4, 0 0 16px #ff69b4,
      0 0 32px rgba(255, 105, 180, 0.5);
  }
  to {
    box-shadow: 0 0 12px #ff1493, 0 0 24px #ff1493,
      0 0 48px rgba(255, 20, 147, 0.8);
  }
}

.cursor-border {
  position: absolute;
  background: #ff69b4;
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cursor-border.top,
.cursor-border.bottom {
  height: 2px;
  width: 100%;
}

.cursor-border.left,
.cursor-border.right {
  width: 2px;
  height: 100%;
}

.cursor-border.top {
  top: 0;
  left: 0;
}

.cursor-border.bottom {
  bottom: 0;
  left: 0;
}

.cursor-border.left {
  top: 0;
  left: 0;
}

.cursor-border.right {
  top: 0;
  right: 0;
}

.cursor.hover {
  background: rgba(150, 20, 80, 0.25);
  border: 2px solid rgba(180, 40, 100, 0.6);
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(200, 40, 100, 0.5), 0 0 16px rgba(200, 40, 100, 0.4),
    0 0 32px rgba(200, 40, 100, 0.3);
  animation: glowPulseHover 3s infinite alternate;
}

@keyframes glowPulseHover {
  from {
    box-shadow: 0 0 6px rgba(180, 40, 100, 0.4),
      0 0 12px rgba(180, 40, 100, 0.3), 0 0 24px rgba(180, 40, 100, 0.25);
  }
  to {
    box-shadow: 0 0 10px rgba(200, 60, 120, 0.5),
      0 0 20px rgba(200, 60, 120, 0.35), 0 0 30px rgba(200, 60, 120, 0.3);
  }
}

nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 2rem;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  background: linear-gradient(45deg, #ff69b4, #da70d6);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #ff69b4;
}

.header {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(255, 105, 180, 0.1) 0%,
    transparent 50%
  );
}

.header-content h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, #ffffff, #ff69b4);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeInUp 1s ease-out;
}

.header-content .subtitle {
  font-size: 1.5rem;
  color: #da70d6;
  margin-bottom: 1rem;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.header-content p {
  font-size: 1.2rem;
  color: #b0b0b0;
  margin-bottom: 1rem;
  animation: fadeInUp 1s ease-out 0.3s both;
}

.header-content {
  font-size: 1rem;
  color: #ff69b4;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #ff4da6, #b84dff);
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  font-weight: bold;
  letter-spacing: 0.5px;
  transition: all 0.3s ease, transform 0.2s ease;
  animation: fadeInUp 1s ease-out 0.5s both;
  box-shadow: 0 0 10px rgba(255, 77, 166, 0.4), 0 0 20px rgba(184, 77, 255, 0.3);
}

.cta-button:hover {
  transform: translateY(-3px) scale(1.03);
  background: linear-gradient(135deg, #ff5fbf, #c36bff);
  box-shadow: 0 0 15px rgba(255, 95, 191, 0.6),
    0 0 30px rgba(195, 107, 255, 0.5);
}

section {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  scroll-margin-top: 100px;
  backdrop-filter: blur(12px);
}

h2 {
  position: relative;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  background: linear-gradient(45deg, #ffffff, #ff69b4);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.project-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.project-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 40px rgba(255, 105, 180, 0.1);
}

.project-card h3 {
  color: #ff69b4;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.project-card p {
  color: #b0b0b0;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.project-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 1.2rem;
  object-fit: cover;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tag {
  background: rgba(255, 105, 180, 0.2);
  color: #ff69b4;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  border: 1px solid rgba(255, 105, 180, 0.3);
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 2rem;
}

.skill-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  padding: 1rem;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.skill-item:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-5px);
}

.skill-item p {
  padding-top: 0.5rem;
}

.skill-icon {
  font-size: 3rem;
  color: #ff69b4;
  margin-bottom: 1rem;
}

.contact {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
}

.contact-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-link:hover {
  background: rgba(255, 105, 180, 0.2);
  border-color: #ff69b4;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

.review-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;

  position: relative;
}

.review-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 15px 30px rgba(255, 105, 180, 0.1);
}

.review-text {
  font-style: italic;
  color: #e0e0e0;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, #ff69b4, #da70d6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: bold;
  color: white;
}

.author-info h4 {
  color: #ff69b4;
  margin-bottom: 0.2rem;
}

.author-info .stars {
  color: #ffd700;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeOutDown {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(30px);
  }
}

@media (max-width: 768px) {
  .header-content h1 {
    font-size: 2.5rem;
  }

  .nav-links {
    display: none;
  }

  .contact-links {
    flex-direction: column;
    align-items: center;
  }
}

.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.scroll-animate.visible {
  animation: fadeInUp 0.6s forwards;
}

.scroll-animate.hidden {
  animation: fadeOutDown 0.6s forwards;
}

.time-info-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1.5rem 0 2rem 0;
  padding: 1rem 1.5rem;
  padding-left: 5.5rem;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 105, 180, 0.2);
  border-radius: 12px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.time-info-container:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 105, 180, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 105, 180, 0.1);
}

.time-info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  min-width: fit-content;
}

.time-label {
  font-size: 0.75rem;
  color: rgba(255, 105, 180, 0.8);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.time-value {
  color: #ffffff;
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
  text-shadow: 0 0 10px rgba(255, 105, 180, 0.3);
}

.time-separator {
  color: rgba(255, 105, 180, 0.6);
  font-weight: 300;
  font-size: 1rem;
  user-select: none;
}

#current-time {
  background: linear-gradient(45deg, #ff69b4, #da70d6);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  font-size: 1rem;
  animation: pulse-glow 2s ease-in-out infinite alternate;
}

@keyframes pulse-glow {
  from {
    text-shadow: 0 0 5px rgba(255, 105, 180, 0.3);
  }

  to {
    text-shadow: 0 0 15px rgba(255, 105, 180, 0.6);
  }
}

@media (max-width: 768px) {
  .time-info-container {
    flex-direction: column;
    gap: 0.8rem;
    padding: 1rem;
    font-size: 0.8rem;
  }

  .time-info-item {
    flex-direction: row;
    gap: 0.5rem;
    width: 100%;
    justify-content: space-between;
    padding: 0.3rem 0;
  }

  .time-separator {
    display: none;
  }

  .time-label {
    font-size: 0.7rem;
  }

  .time-value {
    font-size: 0.8rem;
  }

  #current-time {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .time-info-container {
    margin: 1rem 0;
    padding: 0.8rem;
  }

  .time-info-item {
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(255, 105, 180, 0.1);
  }

  .time-info-item:last-child {
    border-bottom: none;
  }
}

.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  animation: fadeIn 0.3s ease forwards;
}

.subtitle-terms {
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 1.5rem;
  background: linear-gradient(45deg, #d4d4d4, #b03a8f);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.modal-content {
  background-color: rgba(30, 10, 40, 0.95);
  margin: 10% auto;
  padding: 2rem;
  border-radius: 12px;
  max-width: 700px;
  color: #fff;
  position: relative;
  animation: slideIn 0.3s ease forwards;
}

.close-btn {
  color: #ff69b4;
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 2rem;
  font-weight: bold;
  transition: 0.3s ease;
}

.close-btn:hover {
  color: #ffffff;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.tech-stack-container {
  overflow: hidden;
  margin: 1rem 0 2rem 0;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 105, 180, 0.2);
  border-radius: 12px;

  display: flex;
  justify-content: center;
}

.tech-stack {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.tech-item {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(255, 105, 180, 0.2);
  color: #ff69b4;
  border-radius: 20px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.8rem;
  white-space: nowrap;
  transition: transform 0.3s ease;
}

.tech-item:hover {
  transform: scale(1.1);
}

.tech-stack-container::-webkit-scrollbar {
  display: none;
}

.tech-stack-container {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.roblox-group-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 105, 180, 0.2);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;

  position: relative;
  overflow: hidden;
}

.roblox-group-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 105, 180, 0.4);
  box-shadow: 0 20px 40px rgba(255, 105, 180, 0.15);
}

.roblox-group-card h3 {
  color: #ff69b4;
  margin-bottom: 1rem;
  font-size: 1.4rem;
  font-weight: 700;
}

.roblox-group-card p {
  color: #cfcfcf;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.roblox-link {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background: linear-gradient(45deg, #722f50, #9e519b);
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.roblox-link:hover {
  transform: translateY(-3px);
  background: linear-gradient(45deg, #9e519b, #ff69b4);
  box-shadow: 0 8px 20px rgba(255, 105, 180, 0.3);
}

@media (max-width: 1024px) {
  .cursor {
    display: none;
  }

  body {
    cursor: auto;
  }

  a,
  button {
    cursor: pointer;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    font-size: 1.5rem;
    color: #ff69b4;
    cursor: pointer;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.95);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 1rem;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    padding: 1rem;
    text-align: center;
  }
}

@media (max-width: 768px) {
  section {
    padding: 3rem 1rem;
  }

  .header-content h1 {
    font-size: 2rem;
  }

  .header-content .subtitle {
    font-size: 1.2rem;
  }

  .header-content p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .header-content h1 {
    font-size: 1.6rem;
  }

  h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .skills-grid {
    grid-template-columns: 1fr;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .modal-content {
    width: 90%;
    max-width: 95%;
    margin: 15% auto;
    padding: 1.5rem;
    font-size: 0.95rem;
  }

  .subtitle-terms {
    font-size: 1rem;
  }

  .close-btn {
    top: 10px;
    right: 15px;
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .modal-content {
    width: 95%;
    margin: 20% auto;
    padding: 1rem;
    border-radius: 10px;
    font-size: 0.9rem;
  }

  .subtitle-terms {
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .time-info-container {
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    font-size: 0.85rem;
  }

  .time-info-item {
    flex-direction: row;
    justify-content: space-between;
    padding: 0.5rem 0;
  }

  #current-time {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .time-info-container {
    padding: 0.8rem;
    margin: 0.8rem 0;
  }

  .time-info-item {
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(255, 105, 180, 0.15);
  }

  .time-info-item:last-child {
    border-bottom: none;
  }

  .time-label {
    font-size: 0.65rem;
  }

  .time-value {
    font-size: 0.75rem;
  }

  #current-time {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .cta-button {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }

  .project-card,
  .review-card,
  .roblox-group-card {
    padding: 1.2rem;
  }
}

.discord-info {
  text-align: center;
  margin-top: 1rem;
}

#copyDiscord {
  margin-top: 1rem;
  border: none;
}

.terms-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

@media (max-width: 600px) {
  .terms-buttons {
    flex-direction: column;
    align-items: center;
  }
}

.header-layout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.roblox-profile-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 105, 180, 0.3);
    border-radius: 16px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    max-width: 350px;
    margin: 0 auto 2rem auto;
}

.roblox-profile-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 105, 180, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 105, 180, 0.15);
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.avatar-container {
    position: relative;
    display: inline-block;
}

.avatar-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ff69b4;
}

.status-indicator {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    border: 2px solid #fff;
    background: #9ca3af;
}

.status-indicator.online {
    background: #3b82f6;
    box-shadow: 0 0 8px #3b82f6;
}

.status-indicator.in-game {
    background: #22c55e;
    box-shadow: 0 0 8px #22c55e;
}

.status-indicator.in-studio {
    background: #f59e0b;
    box-shadow: 0 0 8px #f59e0b;
}

.status-indicator.offline {
    background: #9ca3af;
    box-shadow: 0 0 6px #9ca3af;
}

.profile-info h3 {
    color: #ff69b4;
    margin: 0 0 0.3rem 0;
    font-size: 1.1rem;
}

.status-text {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.status-text i {
    font-size: 14px;
}
.activity-details {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 105, 180, 0.2);
}

.activity-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
}

.activity-label {
    color: rgba(255, 105, 180, 0.8);
}

.activity-value {
    color: #ffffff;
    font-weight: 600;
}

.game-name {
    color: #da70d6;
    font-weight: 600;
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .roblox-profile-card {
        max-width: 100%;
        margin-bottom: 1.5rem;
    }
}