:root {
  --primary-color: #2a2a2a;
  --secondary-color: #4a4a4a;
  --accent-color: #8a2be2;
  --text-color: #ffffff;
  --card-bg: #1a1a1a;
  --hover-color: #3a3a3a;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #121212;
  color: #ffffff;
  line-height: 1.6;
  min-height: 100vh;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #444;
}

/* Selection */
::selection {
  background: rgba(138, 43, 226, 0.3);
  color: #fff;
}

/* Navigation */
.nav-container {
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding: 1rem;
  background: #1a1a1a;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(138, 43, 226, 0.2);
}

.nav-btn {
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  text-decoration: none;
  color: #ffffff;
  transition: all 0.3s ease;
  font-weight: 500;
  background: transparent;
}

.nav-btn:hover {
  background: rgba(138, 43, 226, 0.2);
}

.nav-btn.active {
  background: #3e1b5f;
}

/* Container */
.container {
  width: 100%;
  margin: 0 auto;
  min-height: calc(100vh - 80px);
}

/* Profile Section */
.profile-section {
  text-align: center;
  margin-bottom: 50px;
}

.profile-image {
  width: 150px;
  height: 150px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--accent-color);
}

.profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-section h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
}

.profile-section .title {
  font-size: 1.2em;
  color: var(--accent-color);
  margin-bottom: 15px;
}

.profile-section .subtitle,
.profile-section .quote {
  font-style: italic;
  color: #888;
}

/* Contact Links */
.contact-section {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.contact-link {
  color: var(--text-color);
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 25px;
  background-color: var(--secondary-color);
  transition: all 0.3s ease;
}

.contact-link:hover {
  background-color: var(--accent-color);
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 80px 15px 15px;
  }

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

  .contact-link {
    width: 100%;
    text-align: center;
  }
}
