:root {
  --primary: #A5D6A7;
  --primary-dark: #81C784;
  --primary-light: #C8E6C9;
  --accent: #64DD17;
  --accent-dark: #4CAF50;
  --accent-light: #?;
  --yandex-red: #FF3232;
  --yandex-dark: #1E1E1E;
  --discord-blurple: #7289DA;
  --dark: #121212;
  --dark-gray: #1E1E1E;
  --medium-gray: #2D2D2D;
  --light-gray: #424242;
  --text: #E0E0E0;
  --text-secondary: #9E9E9E;
  --white: #FFFFFF;
  --black: #000000;
  --success: #4CAF50;
  --warning: #FFC107;
  --error: #F44336;
  --info: #2196F3;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--dark);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}


.section {
  padding: 100px 0;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.section-title span {
  color: var(--accent);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  outline: none;
}

.btn.primary {
  background: var(--accent);
  color: var(--dark);
}

.btn.primary:hover {
  background: var(--accent-light);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(100, 221, 23, 0.2);
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}

.btn.secondary:hover {
  background: var(--accent);
  color: var(--dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(100, 221, 23, 0.2);
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(30, 30, 30, 0.95);
  backdrop-filter: blur(10px);
  padding: 15px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
    max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
}

.logo span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-link {
  position: relative;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--accent);
}

.nav-link:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background: var(--white);
  margin: 5px 0;
  transition: all 0.3s ease;
}

.lang-switcher {
  top: 20px;
  right: 20px;
  z-index: 1001;
  display: flex;
  gap: 5px;
  background: var(--medium-gray);
  border-radius: 20px;
  padding: 5px;
}

.lang-btn {
  padding: 5px 15px;
  border-radius: 15px;
  background: transparent;
  color: var(--text);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.8rem;
  font-weight: 500;
}

.lang-btn.active {
  background: var(--accent);
  color: var(--dark);
}

.hero {
  height: 100vh;
  min-height: 800px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 30%, rgba(100, 221, 23, 0.1) 0%, transparent 50%);
  z-index: -1;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
    max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-content {
  flex: 1;
  max-width: 600px;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 15px;
}

.hero-title span {
  color: var(--accent);
  position: relative;
}

.hero-title span::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 10px;
  background: rgba(100, 221, 23, 0.3);
  z-index: -1;
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 20px;
  color: var(--text-secondary);
}

.hero-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: var(--text-secondary);
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
}

.image-wrapper {
  position: relative;
  width: 350px;
  height: 350px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.discord-presence-card {
  background: rgba(30, 30, 30, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 16px;
  margin-top: 30px;
  border: 1px solid rgba(114, 137, 218, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  max-width: 350px;
}

.discord-presence-card:hover {
  border-color: rgba(114, 137, 218, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.discord-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--discord-blurple);
  font-weight: 600;
  font-size: 0.95rem;
}

.discord-header i {
  font-size: 1.2rem;
}

.discord-body {
  display: flex;
  align-items: center;
  gap: 15px;
}

.discord-avatar-wrapper {
  position: relative;
  width: 48px;
  height: 48px;
}

.discord-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.discord-info {
  flex: 1;
  min-width: 0;
}

.discord-username {
  font-weight: 600;
  font-size: 1rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.discord-status {
  font-size: 0.85rem;
  color: var(--text-secondary);
  display: flex;
  flex-direction: column;
}

.status-type {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.status-activity {
  font-size: 0.8rem;
  opacity: 0.8;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.about-content {
  display: flex;
  gap: 50px;
  align-items: center;
}

.about-text {
  flex: 1;
}

.about-text p {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.about-stats {
  display: flex;
  gap: 30px;
  margin-top: 40px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  display: block;
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.about-skills {
  flex: 1;
  max-width: 500px;
}

.skill-item {
  margin-bottom: 25px;
}

.skill-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.skill-bar {
  width: 100%;
  height: 8px;
  background: var(--medium-gray);
  border-radius: 4px;
  overflow: hidden;
}

.skill-progress {
  height: 100%;
  background: var(--accent);
  border-radius: 4px;
  position: relative;
}

.skill-progress::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: shine 2s infinite;
}

@keyframes shine {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.skills {
  background: var(--dark-gray);
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.skill-card {
  background: var(--medium-gray);
  border-radius: 15px;
  padding: 30px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.skill-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  border-color: var(--accent);
}

.skill-icon {
  width: 60px;
  height: 60px;
  background: rgba(100, 221, 23, 0.1);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
  color: var(--accent);
}

.skill-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.skill-list {
  color: var(--text-secondary);
}

.skill-list li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}

.skill-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.project-card {
  background: var(--medium-gray);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.project-image {
  height: 200px;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
  transform: scale(1.1);
}

.project-content {
  padding: 20px;
}

.project-title {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.project-description {
  color: var(--text-secondary);
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 15px;
}

.project-tag {
  background: rgba(100, 221, 23, 0.1);
  color: var(--accent);
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 0.7rem;
  font-weight: 500;
}

.project-links {
  display: flex;
  gap: 10px;
}

.project-link {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--accent);
  transition: color 0.3s ease;
}

.project-link:hover {
  color: var(--accent-light);
}

.section-footer {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.activity {
  background: var(--dark-gray);
}

.activity-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.activity-card {
  background: var(--dark-gray);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.activity-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.card-header {
  display: flex;
  align-items: center;
  padding: 18px 24px;
  background: rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid var(--light-gray);
}

.service-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-size: 1.2rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.card-header h3 {
  font-size: 1.2rem;
  margin-right: auto;
}

.status-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.status-dot.online {
  background: var(--success);
  box-shadow: 0 0 10px var(--success);
}

.status-dot.idle {
  background: var(--warning);
  box-shadow: 0 0 10px var(--warning);
}

.status-dot.dnd {
  background: var(--error);
  box-shadow: 0 0 10px var(--error);
}

.status-dot.offline {
  background: var(--text-secondary);
  box-shadow: 0 0 10px var(--text-secondary);
}

.status-text {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.time-info {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.activity-card.discord {
  border-color: rgba(114, 137, 218, 0.2);
}

.activity-card.discord:hover {
  border-color: rgba(114, 137, 218, 0.4);
}

.activity-card.discord .service-icon {
  color: var(--discord-blurple);
  background: rgba(114, 137, 218, 0.2);
}

.activity-card.yandex {
  border-color: rgba(255, 50, 50, 0.2);
}

.activity-card.yandex:hover {
  border-color: rgba(255, 50, 50, 0.4);
}

.activity-card.yandex .service-icon {
  color: var(--yandex-red);
  background: rgba(255, 50, 50, 0.2);
}

.card-body {
  padding: 20px;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.avatar-container {
  position: relative;
  width: 64px;
  height: 64px;
}

.avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.status-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 3px solid var(--dark-gray);
}

.user-details {
  flex: 1;
  min-width: 0;
}

.username {
  font-size: 1.1rem;
  margin-bottom: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.user-id {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.activities-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.activity-item {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.3s ease;
}

.activity-item:hover {
  background: rgba(0, 0, 0, 0.3);
}

.activity-image {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
}

.activity-image i {
  font-size: 1.2rem;
  color: var(--text-secondary);
}

.activity-details {
  flex: 1;
  min-width: 0;
}

.activity-type {
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.section-container {
    max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.activity-name {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.activity-state {
  font-size: 0.85rem;
  color: var(--text-secondary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.activity-time {
  font-size: 0.8rem;
  color: var(--text-secondary);
  opacity: 0.8;
  margin-top: 5px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.activity-time i {
  font-size: 0.7rem;
}

.no-activity {
  text-align: center;
  padding: 30px 20px;
  color: var(--text-secondary);
}

.no-activity i {
  font-size: 2rem;
  margin-bottom: 15px;
  opacity: 0.5;
}

.no-activity p {
  font-size: 0.9rem;
}

.track-info {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.album-cover {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  background: var(--light-gray);
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}

.album-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cover-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 1.8rem;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
}

.track-details {
  flex: 1;
  min-width: 0;
}

.track-name {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.artist-name, .album-name {
  font-size: 0.9rem;
  color: var(--text-secondary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.album-name {
  font-size: 0.8rem;
  opacity: 0.8;
  margin-top: 3px;
}

.progress-container {
  margin-bottom: 20px;
}

.progress-bar {
  width: 100%;
  height: 4px;
  background: var(--light-gray);
  border-radius: 2px;
  overflow: hidden;
}

.progress {
  height: 100%;
  background: var(--yandex-red);
  width: 0;
  transition: width 0.3s ease;
}

.player-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
}

.control-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.control-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

.control-btn.main {
  width: 50px;
  height: 50px;
  background: rgba(255, 50, 50, 0.2);
  color: var(--yandex-red);
}

.control-btn.main:hover {
  background: rgba(255, 50, 50, 0.3);
}

.control-btn i {
  font-size: 1rem;
}

.control-btn.main i {
  font-size: 1.2rem;
}

.contact-content {
  display: flex;
  gap: 50px;
}

.contact-info {
  flex: 1;
  display: flex;
  gap: 100px;
  justify-content: center;
}

.info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.info-icon {
  width: 60px;
  height: 60px;
  background: rgba(100, 221, 23, 0.1);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent);
  flex-shrink: 0;
}

.info-content h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.footer {
  background: var(--dark-gray);
  padding: 80px 0 0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
  margin-bottom: 50px;
}

.footer-logo .logo {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.footer-logo p {
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.footer-links h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-links h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--accent);
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: var(--accent);
}

.footer-social h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-social h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--accent);
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--medium-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--accent);
  color: var(--dark);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid var(--light-gray);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.footer-lang {
  display: flex;
  gap: 5px;
  background: var(--medium-gray);
  border-radius: 20px;
  padding: 5px;
}

.activity-loader {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 30px;
}

.loader-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  animation: bounce 1.4s infinite ease-in-out;
}

.loader-dot:nth-child(1) {
  animation-delay: -0.32s;
}

.loader-dot:nth-child(2) {
  animation-delay: -0.16s;
}

@keyframes bounce {
  0%, 80%, 100% { 
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
}

.floating {
  animation: floating 6s ease-in-out infinite;
}

@keyframes floating {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(100, 221, 23, 0.4);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(100, 221, 23, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(100, 221, 23, 0);
  }
}

.hover-grow {
  transition: all 0.3s ease;
}

.hover-grow:hover {
  transform: scale(1.02);
}

.fade-in {
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (max-width: 992px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-buttons {
    justify-content: center;
  }

  .about-content {
    flex-direction: column;
  }

  .about-skills {
    max-width: 100%;
    width: 100%;
  }

  .contact-content {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .contact-info {
    flex: 1;
    display: flex;
    gap: 100px;
    justify-content: center;
    flex-direction: column;
}

  .hamburger {
    display: block;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: var(--dark-gray);
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .section {
    padding: 70px 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .activity-cards {
    grid-template-columns: 1fr;
  }

  .user-info {
    flex-direction: column;
    text-align: center;
  }

  .track-info {
    flex-direction: column;
    text-align: center;
  }

  .album-cover {
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .image-wrapper {
    width: 280px;
    height: 280px;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .about-stats {
    flex-direction: column;
    gap: 20px;
  }
}