@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Manrope:wght@400;500;600;700&display=swap");

:root {
    --primary: #8a2be2;
    --primary-light: #9d41ff;
    --primary-dark: #6a1fb0;
    --accent: #4a0080;
    --accent-light: #ff8a50;
    --text-light: #ffffff;
    --text-dark: #1e293b;
    --bg-dark: #121212;
    --bg-card: rgba(30, 30, 30, 0.7);
    --bg-glass: rgba(15, 15, 15, 0.65);
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --border-radius-sm: 8px;
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.2), 0 8px 10px rgba(0, 0, 0, 0.12);
    --shadow-inner: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    height: 100%;
    overflow-x: hidden;
}

body {
  background: url("https://images.pexels.com/photos/1933239/pexels-photo-1933239.jpeg")
    no-repeat center center fixed;
    background-size: cover;
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    touch-action: pan-x pan-y;
    max-width: 100vw;
}

body::before {
  content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  background: linear-gradient(
    to right,
    rgba(10, 10, 10, 0.95),
    rgba(10, 10, 10, 0.7)
  );
    z-index: -2;
}

.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMDAiIGhlaWdodD0iMzAwIj48ZmlsdGVyIGlkPSJhIiB4PSIwIiB5PSIwIj48ZmVUdXJidWxlbmNlIGJhc2VGcmVxdWVuY3k9Ii43NSIgc3RpdGNoVGlsZXM9InN0aXRjaCIgdHlwZT0iZnJhY3RhbE5vaXNlIi8+PGZlQ29sb3JNYXRyaXggdHlwZT0ic2F0dXJhdGUiIHZhbHVlcz0iMCIvPjwvZmlsdGVyPjxwYXRoIGQ9Ik0wIDhoMzAwdjMwMEgweiIgZmlsdGVyPSJ1cmwoI2EpIiBvcGFjaXR5PSIuMDUiLz48L3N2Zz4=");
    opacity: 0.3;
    z-index: -1;
    pointer-events: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Manrope", sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

h2.section-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 0.5rem;
  color: white;
}

h2.section-title::after {
  content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.animate-in {
    animation: fadeIn 0.6s ease-out forwards;
}

.pulse {
    animation: pulse 2s infinite;
}

.underline {
    position: relative;
    display: inline-block;
    padding-bottom: 6px;
}

.underline::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease-out;
    animation: underlineGrow 0.7s ease-out forwards;
}

@keyframes underlineGrow {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

header {
    position: sticky;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: var(--bg-glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 100;
    transition: var(--transition);
    margin: 1rem 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
}

header.scrolled {
    background-color: rgba(10, 10, 10, 0.9);
    margin: 0;
    border-radius: 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 100px;
}

.logo img {
    width: 50px;
    height: auto;
    transition: var(--transition);
    display: block;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    white-space: nowrap;
  text-shadow: none;
}

nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-grow: 1;
}

nav ul.menu {
    display: flex;
    list-style-type: none;
    gap: 1.5rem;
}

.lang-selector {
  display: flex !important;
    gap: 0.5rem;
    margin-left: 1.5rem;
    position: relative;
    z-index: 10;
  opacity: 1 !important;
  visibility: visible !important;
}

.lang-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-light);
    padding: 0.25rem 0.6rem;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 600;
    transition: var(--transition);
  display: block !important;
    opacity: 1 !important;
  visibility: visible !important;
  position: relative;
}

.lang-btn.active,
.lang-btn:hover {
  background-color: var(--primary);
  border-color: var(--primary-dark);
}

@media (max-width: 768px) {
    header {
        margin: 0.5rem;
        padding: 0.75rem 1rem;
        flex-wrap: nowrap;
    }
    
    .logo {
        min-width: auto;
        max-width: 40%;
        margin-right: auto;
    }
    
    .logo img {
        width: 40px;
    }
    
    .logo h1 {
        font-size: 1.25rem;
    }
    
    nav {
        flex-grow: 0;
    }
    
    .lang-selector {
        position: relative;
        top: 0;
        right: 0;
        margin-left: 1rem;
        z-index: 101;
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .lang-btn {
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .hamburger-menu {
        margin-left: 15px;
        z-index: 102;
    }
}

nav ul.menu li a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-sm);
    transition: var(--transition);
    position: relative;
  text-shadow: none;
}

nav ul.menu li a:hover {
    color: var(--primary);
    background-color: rgba(255, 255, 255, 0.05);
}

nav ul.menu li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transition: width 0.3s ease;
    border-radius: 2px;
}

nav ul.menu li a:hover::after {
    width: 100%;
}

nav ul.menu li a i {
    font-size: 1.25rem;
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 102;
    margin-left: 15px;
    position: relative;
}

.bar {
    height: 2px;
    width: 100%;
    background-color: var(--text-light);
    border-radius: 2px;
    transition: var(--transition);
    position: absolute;
}

.bar:nth-child(1) {
    top: 0;
}

.bar:nth-child(2) {
    top: 9px;
}

.bar:nth-child(3) {
    top: 18px;
}

.hamburger-menu.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger-menu.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.hero {
    position: relative;
    height: calc(100vh - 200px);
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    overflow: hidden;
}

.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  background: url("banner.png") no-repeat center center;
    background-size: cover;
    opacity: 0.2;
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    backdrop-filter: blur(5px);
    background-color: rgba(0, 0, 0, 0.2);
    box-shadow: var(--shadow);
    animation: fadeIn 1s ease-out;
}

.hero-logo {
    width: 100%;
    max-width: 280px;
    height: auto;
    margin-bottom: 2rem;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.5));
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.cta-button.primary {
    background-color: var(--primary);
    border: 1px solid var(--primary-dark);
}

.cta-button.primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.cta-button.secondary {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-button.secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.info-bar {
    background: linear-gradient(90deg, #0055cc, #007bff, #0099ff);
    color: white;
    padding: 0.75rem 1rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.info-bar.warning {
    background: linear-gradient(90deg, #e65100, #f59e0b, #ff9800);
    box-shadow: 0 2px 15px rgba(255, 152, 0, 0.3);
}

.info-bar.error {
    background: linear-gradient(90deg, #c41c00, #ef4444, #ff5252);
    box-shadow: 0 2px 15px rgba(239, 68, 68, 0.3);
}

.info-bar::before {
  content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  background: linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0) 70%
  );
    z-index: 0;
}

.info-bar.warning::before,
.info-bar.error::before {
  background: linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0) 70%
  );
}

.info-bar p {
    margin: 0;
    position: relative;
    z-index: 1;
}

.info-bar.warning p,
.info-bar.error p {
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.info-bar i {
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

.info-bar.warning i {
    animation: warning-glow 2s infinite alternate;
}

.info-bar.error i {
    animation: error-glow 2s infinite alternate;
}

@keyframes warning-glow {
    0% { 
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.7),
      0 0 10px rgba(255, 217, 0, 0.5);
        transform: scale(1);
    }
    100% { 
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.9),
      0 0 20px rgba(255, 217, 0, 0.8), 0 0 30px rgba(255, 152, 0, 0.5);
        transform: scale(1.1);
    }
}

@keyframes error-glow {
    0% { 
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.7),
      0 0 10px rgba(239, 68, 68, 0.5);
        transform: scale(1);
    }
    100% { 
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.9),
      0 0 20px rgba(239, 68, 68, 0.8), 0 0 30px rgba(220, 38, 38, 0.5);
        transform: scale(1.1);
    }
}

.about-me-link {
    display: inline-block;
    color: #ffffff;
    background-color: var(--primary);
    text-decoration: none;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-weight: 600;
  transition: var(--transition);
    margin: 0 0.3rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  text-shadow: none;
}

.about-me-link:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

@keyframes pulse-icon {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.2);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0.8;
  }
}

.pulse i {
    animation: pulse-icon 2s infinite ease-in-out;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: white;
    position: relative;
  display: block;
    width: 100%;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
}

.section-title::after {
  content: "";
    display: block;
    width: 100px;
    height: 4px;
    background: var(--primary);
    margin: 0.5rem auto 0;
    border-radius: 2px;
}

.projects-section {
    padding: 4rem 2rem;
    margin-top: 2rem;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.project-card {
  display: flex;
  flex-direction: column;
  background-color: var(--bg-card);
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
    box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.3s ease;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  position: relative;
}

.project-card:hover {
  transform: translateY(-15px);
  box-shadow: var(--shadow-lg), 0 0 20px rgba(138, 43, 226, 0.4);
  border-color: rgba(255, 255, 255, 0.25);
}

.project-top {
    position: relative;
}

.project-image {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.2);
    height: 180px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.project-logo {
    max-width: 120px;
    max-height: 120px;
    object-fit: contain;
    transition: var(--transition);
}

.project-card:hover .project-logo {
    transform: scale(1.1);
}

.project-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.35rem 0.75rem;
    border-radius: var(--border-radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  color: white;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.project-badge.os {
    background-color: #3a86ff;
}

.project-badge.cloud {
    background-color: #ff006e;
}

.project-badge.music {
    background-color: #8338ec;
}

.project-badge.tools {
    background-color: #fb5607;
}

.project-badge.donation {
  background-color: #ffd700;
  color: #333;
  font-weight: bold;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
  text-shadow: none;
}

.project-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.project-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: white;
}

.project-desc {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    flex-grow: 1;
    line-height: 1.5;
}

.project-links {
    display: flex;
    gap: 0.75rem;
    margin-top: auto;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    border-radius: var(--border-radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
  text-shadow: none;
}

.project-link.primary {
    background-color: var(--primary);
    color: white;
    flex-grow: 1;
    justify-content: center;
  border: 1px solid var(--primary-dark);
  box-shadow: var(--shadow-sm);
}

.project-link.secondary {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-light);
}

.project-link.primary:hover {
    background-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.project-link.secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.discord-banner {
    margin: 4rem auto;
    max-width: 1000px;
  background: linear-gradient(135deg, #5865f2, #404eed);
    border-radius: var(--border-radius-lg);
    padding: 0;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-lg);
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.discord-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2.5rem 3rem;
    position: relative;
    z-index: 2;
}

.discord-banner::before {
  content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  background: linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0) 70%
  );
    z-index: 1;
}

.discord-overlay {
  position: absolute;
  top: 0;
  left: auto;
  right: 0;
  height: 100%;
  width: 30%;
  background: url("img/discord/discord-overlay.png") no-repeat right center;
  background-size: auto 100%;
  mask-image: linear-gradient(
    to left,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  -webkit-mask-image: linear-gradient(
    to left,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  z-index: 1;
  opacity: 0.7;
}

.discord-text {
    max-width: 60%;
}

.discord-text h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: white;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.discord-text p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.discord-button {
    background-color: white;
  color: #5865f2;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 700;
    font-size: 1.1rem;
  transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  text-shadow: none;
}

.discord-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3);
}

.discord-button i {
    font-size: 1.4rem;
}

.downloads {
    padding: 4rem 2rem;
}

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

.download-item {
    display: flex;
    flex-direction: column;
    background-color: var(--bg-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    transition: var(--transition);
    opacity: 1;
    transform: translateY(0);
  visibility: visible;
}

.download-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 255, 255, 0.2);
}

.download-icon {
    display: flex;
    justify-content: center;
    padding: 2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.download-img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    transition: var(--transition);
}

.download-item:hover .download-img {
    transform: scale(1.1) rotate(5deg);
}

.download-content {
    padding: 1.5rem 2rem 2rem;
    text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.download-title,
.trials-title {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.download-desc {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
  flex-grow: 1;
}

.download-link,
.browse {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: var(--primary);
    color: var(--text-light);
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: var(--transition);
  box-shadow: var(--shadow-sm);
  text-shadow: none;
}

.download-link:hover,
.browse:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.browse {
    background-color: var(--accent);
}

.browse:hover {
    background-color: var(--accent-light);
}

.patch-notes-section {
    padding: 4rem 2rem;
    position: relative;
}

.patch-title {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--primary-dark), var(--primary));
    padding: 0.75rem 2rem;
    border-radius: var(--border-radius);
    z-index: 2;
    box-shadow: var(--shadow);
}

.patch-title h2 {
    color: white;
    margin: 0;
    font-size: 1.5rem;
  text-shadow: none;
}

.patch-box {
    background-color: var(--bg-card);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem 2rem 2rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    opacity: 1;
    transform: translateY(0);
  transition: var(--transition);
  visibility: visible;
}

.patch-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.version-badge {
    background-color: var(--primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
  text-shadow: none;
}

.patch-content {
    margin-bottom: 2rem;
}

.patch-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-light);
}

.patch-list {
    list-style: none;
}

.patch-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius-sm);
    background-color: rgba(255, 255, 255, 0.05);
    transition: var(--transition);
  border: 1px solid transparent;
}

.patch-list li:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.patch-list li i {
    color: var(--primary);
    margin-top: 0.2rem;
    font-size: 1.1rem;
}

.patch-gallery {
    margin-top: 2rem;
}

.gallery-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary-light);
    text-align: center;
}

.gallery-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.thumbnail-image {
    width: 150px;
    height: 100px;
    object-fit: cover;
    border-radius: var(--border-radius-sm);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.thumbnail-image:hover {
    transform: scale(1.05);
    border-color: var(--primary);
  box-shadow: 0 0 15px rgba(138, 43, 226, 0.5);
}

footer {
    background-color: var(--bg-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 3rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    padding: 0 2rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    align-items: start;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    margin-top: -1rem;
}

.footer-logo-img {
    width: 80px;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-top: 0;
}

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

.footer-links h4,
.footer-social h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
    text-align: center;
}

.footer-links h4::after,
.footer-social h4::after {
  content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--primary);
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 0.5rem;
}

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    display: inline-block;
    position: relative;
}

.footer-links ul li a:hover {
    color: var(--primary);
}

.footer-links ul li a::after {
  content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
    transform: translateX(0);
}

.footer-links ul li a:hover::after {
    width: 100%;
}

.footer-social {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: -0.5rem;
}

.footer-social h4 {
    margin-bottom: 0.75rem;
}

.social-icons {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 0.25rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow-sm);
}

.social-icon:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
  border-color: var(--primary);
  box-shadow: var(--shadow);
}

.social-icon i {
    font-size: 1.2rem;
}

.footer-bottom {
    padding: 1.5rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.popup-overlay.active {
    display: flex;
}

.popup-image {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-lg);
}

.close-popup {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.close-popup:hover {
    background-color: var(--danger);
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 1001;
}

.carousel-arrow:hover {
    background-color: var(--primary);
}

.left-arrow {
    left: 20px;
}

.right-arrow {
    right: 20px;
}

@media (max-width: 992px) {
    header {
        margin: 0.5rem 1rem;
        padding: 0.75rem 1.5rem;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .downloads-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .noise-overlay {
        position: fixed;
        z-index: -1;
        width: 100vw;
        height: 100vh;
    }
    
    body {
        background-attachment: fixed;
        height: auto;
        position: relative;
    }
    
    header {
        margin: 0.5rem;
        padding: 0.75rem 1rem;
    }
    
    nav ul.menu {
        position: fixed;
        flex-direction: column;
        background-color: var(--bg-glass);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        padding: 5rem 1rem 2rem;
        transition: 0.5s;
        box-shadow: var(--shadow-lg);
        z-index: 90;
        align-items: center;
    }
    
    nav ul.menu.active {
        right: 0;
    }
    
    nav ul.menu li a {
        width: 100%;
        padding: 1rem;
        justify-content: center;
    }
    
    .hamburger-menu {
        display: block;
        margin-left: 15px;
        position: relative;
        height: 20px;
        width: 30px;
    }
    
    .bar {
        display: block;
        position: absolute;
        height: 2px;
        width: 100%;
    }
    
    .hero {
        min-height: 75vh;
        padding: 2rem 1rem;
        overflow: hidden;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .hero-logo {
        max-width: 120px;
        margin-bottom: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .info-bar {
        padding: 0.75rem;
        font-size: 0.85rem;
    }
    
  .downloads,
  .patch-notes-section {
        padding: 2rem 1rem;
    }
    
    .patch-title {
        margin-bottom: 1.5rem;
    }
    
    .patch-box {
        padding: 1.5rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-logo {
        margin-top: 0;
    }
    
    .footer-social {
        margin-top: -3.5rem;
    }
    
    .footer-social h4 {
        margin-bottom: 0.5rem;
    }
    
    .main {
        overflow-x: hidden;
        width: 100%;
    }
    
    .particles-container {
        position: absolute;
        height: 100%;
        width: 100%;
        top: 0;
        left: 0;
        overflow: hidden;
    }

  .discord-banner-content {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem 1rem;
  }

  .discord-text {
    margin-bottom: 1.5rem;
    max-width: 100%;
  }

  .discord-button {
    margin: 0 auto;
  }

  .discord-overlay {
    width: 40%;
    background-size: auto 100%;
  }
}

@media (max-width: 768px) and (min-height: 700px) {
    .footer-social {
        margin-top: -3.5rem;
    }
}

@media (max-width: 768px) and (max-height: 700px) {
    .footer-social {
        margin-top: 0;
    }
    
    .footer-content {
        gap: 1.8rem;
    }
}

@media (max-width: 576px) {
    .logo img {
        width: 40px;
    }
    
    .logo h1 {
        font-size: 1.25rem;
    }
    
    .hamburger-menu {
        width: 25px;
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
    }
    
    nav ul.menu {
        width: 85%;
    }
    
    .download-icon {
        padding: 1.5rem 0;
    }
    
    .download-img {
        width: 80px;
        height: 80px;
    }
    
    .download-content {
        padding: 1rem 1.5rem 1.5rem;
    }
    
    .thumbnail-image {
        width: 120px;
        height: 80px;
    }
    
    .carousel-arrow {
        width: 40px;
        height: 40px;
    }
    
    .left-arrow {
        left: 10px;
    }
    
    .right-arrow {
        right: 10px;
    }
    
    .footer-social {
        margin-top: 0;
    }
}

@media (max-width: 486px) {
    .footer-social {
        margin-top: 1rem;
    }
    
    .footer-content {
        gap: 2rem;
    }

  .discord-text h3 {
    font-size: 1.5rem;
  }

  .discord-text p {
    font-size: 0.9rem;
  }

  .discord-button {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
}

.footer-logo-link {
    display: flex;
    justify-content: center;
    transition: var(--transition);
}

.footer-logo-link:hover {
    transform: scale(1.05);
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    display: inline-block;
    position: relative;
    padding: 0.25rem 0.5rem;
    border-radius: var(--border-radius-sm);
}

.footer-link:hover {
    color: var(--text-light);
    background-color: rgba(255, 255, 255, 0.05);
}

.footer-link::after {
  content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
    transform: translateX(0);
}

.footer-link:hover::after {
    width: 100%;
}

.glowing-card {
    animation: card-glow 3s infinite alternate;
}

@keyframes card-glow {
    0% {
        box-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
    }
    100% {
        box-shadow: 0 0 25px rgba(255, 215, 0, 0.7);
    }
}

.donation-card {
  border: 2px solid #ffd700;
  background: linear-gradient(
    145deg,
    rgba(30, 30, 30, 0.7),
    rgba(40, 40, 10, 0.85)
  );
    position: relative;
    overflow: hidden;
    z-index: 1;
    transform-style: preserve-3d;
    transform: perspective(1000px);
}

.donation-card:hover {
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.4);
    transform: translateY(-10px) perspective(1000px);
  border-color: #ffd700;
}

.donation-card:hover::before {
    opacity: 0.7;
}

.donation-sparkles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

.donation-sparkles::before,
.donation-sparkles::after {
  content: "";
    position: absolute;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cpath d='M20 0 L21 19 L40 20 L21 21 L20 40 L19 21 L0 20 L19 19 Z' fill='%23FFD700' fill-opacity='0.7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    width: 20px;
    height: 20px;
    opacity: 0;
    animation: sparkle-anim 4s infinite linear;
}

.donation-sparkles::before {
    top: 25%;
    left: 20%;
    animation-delay: 0s;
}

.donation-sparkles::after {
    top: 60%;
    right: 20%;
    animation-delay: 2s;
}

@keyframes sparkle-anim {
    0% {
        transform: scale(0) rotate(0deg);
        opacity: 0;
    }
    20% {
        transform: scale(1) rotate(45deg);
        opacity: 0.7;
    }
    40% {
        transform: scale(0.8) rotate(90deg);
        opacity: 0.5;
    }
    60% {
        transform: scale(1.2) rotate(135deg);
        opacity: 0.7;
    }
    80% {
        transform: scale(0.9) rotate(180deg);
        opacity: 0.4;
    }
    100% {
        transform: scale(0) rotate(225deg);
        opacity: 0;
    }
}

.donation-btn {
    animation: button-pulse 2s infinite;
  background: linear-gradient(90deg, #ffd700, #ffa500) !important;
    border: none !important;
    color: #222 !important;
    font-weight: bold !important;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4) !important;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.donation-btn::before {
  content: "";
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.3) 0%,
    rgba(255, 255, 255, 0) 70%
  );
    transform: scale(0);
    transition: transform 0.8s;
    z-index: -1;
}

.donation-btn:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6) !important;
}

.donation-btn:hover::before {
    transform: scale(1);
}

@keyframes button-pulse {
    0% {
        box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
    }
    50% {
        box-shadow: 0 5px 20px rgba(255, 215, 0, 0.7);
    }
    100% {
        box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
    }
}

.donation-card h3 {
  background: linear-gradient(90deg, #ffd700, #ffa500);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 1.8rem;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
}

.donation-card .project-desc {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    line-height: 1.6;
    font-weight: 500;
}

.donation-card .project-image {
  background: radial-gradient(
    circle,
    rgba(40, 40, 10, 0.8),
    rgba(30, 30, 30, 0.9)
  );
}

.donate-nav-link {
  background: linear-gradient(
    90deg,
    rgba(255, 215, 0, 0.15),
    rgba(255, 165, 0, 0.15)
  ) !important;
    border: 1px solid rgba(255, 215, 0, 0.5) !important;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3) !important;
    padding: 0.5rem 1rem !important;
    border-radius: var(--border-radius) !important;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.donate-nav-link::before {
  content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 215, 0, 0.4) 0%,
    rgba(255, 215, 0, 0) 70%
  );
    opacity: 0;
    z-index: -1;
    transition: opacity 0.5s ease;
}

.donate-nav-link:hover {
  background: linear-gradient(
    90deg,
    rgba(255, 215, 0, 0.25),
    rgba(255, 165, 0, 0.25)
  ) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4) !important;
}

.donate-nav-link:hover::before {
    opacity: 1;
    animation: donation-nav-pulse 2s infinite;
}

.donate-nav-link i {
  color: #ffd700 !important;
}

.donate-nav-link .nav-text {
    font-weight: 600;
  background: linear-gradient(90deg, #ffd700, #ffa500);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

@keyframes donation-nav-pulse {
    0% {
        opacity: 0.3;
        transform: scale(0.95);
    }
    50% {
        opacity: 0.7;
        transform: scale(1);
    }
    100% {
        opacity: 0.3;
        transform: scale(0.95);
    }
}

.about-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.about-hero {
    margin-bottom: 3rem;
}

.profile-container {
    display: flex;
    align-items: center;
    gap: 2rem;
  background: linear-gradient(
    135deg,
    rgba(138, 43, 226, 0.2),
    rgba(138, 43, 226, 0.05)
  );
  border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.profile-container:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 255, 255, 0.2);
}

.profile-image {
    flex-shrink: 0;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary);
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.6);
  transition: var(--transition);
}

.profile-container:hover .profile-image {
  transform: scale(1.05) rotate(3deg);
  box-shadow: 0 0 25px rgba(138, 43, 226, 0.8);
}

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

.profile-title h1 {
    font-size: 2.5rem;
    margin: 0 0 0.5rem 0;
    color: white;
}

.profile-title p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.about-card {
    background-color: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  transition: var(--transition);
}

.about-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 255, 255, 0.2);
}

.about-card h2 {
    margin-top: 0;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.about-card h2 i {
    color: var(--primary);
}

.about-text p {
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.mini-projects {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.mini-project {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    overflow: hidden;
    padding: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.mini-project:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  border-color: var(--primary);
}

.mini-project img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin: 0 auto 1rem;
    display: block;
  transition: var(--transition);
}

.mini-project:hover img {
  transform: scale(1.1);
}

.mini-project h3 {
    text-align: center;
    margin: 0 0 0.5rem;
    color: white;
}

.mini-project p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    margin: 0;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(0, 0, 0, 0.2);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    color: white;
    text-decoration: none;
    font-weight: 500;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow-sm);
}

.social-link:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow);
}

.social-link i {
  font-size: 1.5rem;
}

.social-link.discord {
  background: linear-gradient(
    90deg,
    rgba(88, 101, 242, 0.8),
    rgba(64, 78, 237, 0.8)
  );
  border-color: rgba(88, 101, 242, 0.5);
}

.social-link.discord:hover {
  background: linear-gradient(
    90deg,
    rgba(88, 101, 242, 1),
    rgba(64, 78, 237, 1)
  );
  border-color: rgba(88, 101, 242, 1);
}

.social-link.email {
  background: linear-gradient(
    90deg,
    rgba(219, 68, 55, 0.8),
    rgba(180, 50, 50, 0.8)
  );
  border-color: rgba(219, 68, 55, 0.5);
}

.social-link.email:hover {
  background: linear-gradient(
    90deg,
    rgba(219, 68, 55, 1),
    rgba(180, 50, 50, 1)
  );
  border-color: rgba(219, 68, 55, 1);
}

.social-link.github {
  background: linear-gradient(
    90deg,
    rgba(51, 51, 51, 0.8),
    rgba(36, 36, 36, 0.8)
  );
  border-color: rgba(51, 51, 51, 0.5);
}

.social-link.github:hover {
    background: linear-gradient(90deg, rgba(51, 51, 51, 1), rgba(36, 36, 36, 1));
  border-color: rgba(51, 51, 51, 1);
}

@media (max-width: 768px) {
    .profile-container {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .profile-image {
        width: 150px;
        height: 150px;
        margin: 0 auto;
    }
    
    .mini-projects {
        grid-template-columns: 1fr;
    }
}

/* Language Switcher */
.language-switcher {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.8);
    padding: 5px;
    border-radius: 5px;
    z-index: 1000;
    display: flex;
    gap: 5px;
}

.language-switcher button {
    background: none;
    border: 1px solid #fff;
    color: #fff;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.language-switcher button:hover {
    background: rgba(255, 255, 255, 0.1);
}

.language-switcher button.active {
    background: #fff;
    color: #000;
}
