/* Base Styles */
:root {
  --primary: #0e0e14;
  --secondary: #12141c;
  --accent: #00f0ff;
  --accent-dark: #00bccc;
  --text-primary: #f0f0f5;
  --text-secondary: #cccccc;
  --card-bg: #1a1a26;
  --highlight-green: #4caf50;
  --highlight-blue: #2196f3;
  --highlight-purple: #9c27b0;
  --highlight-orange: #ff9800;
  --highlight-teal: #009688;
  --highlight-pink: #e91e63;
  --highlight-cyan: #00bcd4;
  --highlight-yellow: #ffeb3b;
  --highlight-gray: #607d8b;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: var(--primary);
  color: var(--text-primary);
  scroll-behavior: smooth;
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Orbitron', sans-serif;
  font-weight: 500;
}

.container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

h2 {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 50px;
  position: relative;
  text-align: center;
}

h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--accent);
  margin: 15px auto 0;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: 'Orbitron', sans-serif;
}

.btn-filled {
  background-color: var(--accent);
  color: var(--primary);
}

.btn-filled:hover {
  background-color: var(--accent-dark);
  transform: translateY(-2px);
}

.btn-outline {
  border: 2px solid var(--accent);
  color: var(--accent);
  margin-left: 15px;
}

.btn-outline:hover {
  background-color: var(--accent);
  color: var(--primary);
  transform: translateY(-2px);
}

/* Navigation */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: var(--secondary);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  flex-wrap: wrap; 
}

.navbar.scrolled {
  background: rgba(18, 20, 28, 0.95);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  color: var(--accent);
  font-size: 1.5rem;
  font-weight: bold;
  display: flex;
  align-items: center;
}

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

.nav-links li {
  margin-left: 30px;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--accent);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--accent);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(145deg, var(--primary), var(--secondary));
  padding-top: 80px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('assets/images/backgraound.gif') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.hero-content {
  position: relative; 
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1;
  min-width: 300px;
  padding-right: 40px;
}

.hero-text h1 {
  font-size: 3.2rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-text h2 {
  font-size: 1.5rem;
  color: var(--text-secondary);
  font-weight: 400;
  margin-bottom: 25px;
  text-align: left;
}

.hero-text p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 600px;
}

.highlight {
  color: var(--accent);
}

.highlight-text {
  color: var(--accent);
  font-weight: 600;
}

.social-links {
  display: flex;
  margin-top: 30px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 240, 255, 0.1);
  color: var(--accent);
  margin-right: 15px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--accent);
  color: var(--primary);
  transform: translateY(-3px);
}

.hero-profile {
  flex: 1;
  min-width: 300px;
  position: relative;
}

.hero-img {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(61, 194, 255, 0.3);
  position: relative;
  z-index: 1;
}

.glow-effect {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: radial-gradient(circle at center, rgba(0, 240, 255, 0.3) 0%, transparent 70%);
  border-radius: 10px;
  z-index: 0;
  animation: pulse 4s infinite alternate;
}

@keyframes pulse {
  0% {
    opacity: 0.3;
  }
  100% {
    opacity: 0.7;
  }
}

/* About Section */
.about-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.about-text {
  flex: 1;
  min-width: 300px;
  text-align: justify;
}

.about-image {
  flex: 1;
  min-width: 300px;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.skills-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.skill-item {
  background: rgba(0, 240, 255, 0.1);
  color: var(--accent);
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
}

/* Skills Section */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.skill-card {
  background: var(--card-bg);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
  border: 1px solid rgba(0, 240, 255, 0.1);
}

.skill-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 240, 255, 0.1);
  transition: all 0.3s ease;
  border-color: rgba(0, 240, 255, 0.6);
}

.skill-card i {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 20px;
}

.skill-card h3 {
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.skill-card p {
  color: var(--text-secondary);
}

/* Experience & Education Section */
.timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 120px;
}

.timeline::before {
  content: '';
  position: absolute;
  width: 3px;
  background: var(--accent);
  top: 0;
  bottom: 0;
  left: 60px;
  z-index: 1;
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
}

.timeline-logo {
  position: absolute;
  left: -200px;
  top: 0;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgb(255, 255, 255);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--accent);
  z-index: 2;
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.3);
}

.timeline-logo img {
  width: 80%;
  height: 80%;
  object-fit: contain;
  filter: brightness(1.2) contrast(1.2);
}

.timeline-content {
  padding: 30px;
  background: var(--card-bg);
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 240, 255, 0.2);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.timeline-content:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 240, 255, 0.15);
  border-color: rgba(0, 240, 255, 0.4);
}

.timeline-header {
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.timeline-header h3 {
  color: var(--accent);
  margin: 0;
  font-size: 1.4rem;
}

.timeline-header span {
  color: var(--text-secondary);
  font-size: 1rem;
}

.timeline-organization {
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.timeline-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  cursor: pointer;
}

.timeline-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding-top: 10px;
}

.timeline-details.active {
  max-height: 1000px;
  padding-top: 15px;
}

.timeline-details ul {
  padding-left: 25px;
}

.timeline-details li {
  margin-bottom: 10px;
  font-size: 1rem;
}

.location-icon {
  width: 16px;
  height: 16px;
  filter: brightness(1.2);
}

.timeline-item:hover .timeline-logo {
  transform: scale(1.05) rotate(3deg);
  box-shadow: 0 0 35px rgba(0, 240, 255, 0.6);
  transition: all 0.3s ease;
  border-color: rgba(0, 240, 255, 0.6);
}

@media (max-width: 768px) {
  .timeline {
    padding-left: 90px;
  }
  
  .timeline::before {
    left: 45px;
  }
  
  .timeline-logo {
    width: 80px;
    height: 80px;
    left: -90px;
  }
  
  .timeline-content {
    padding: 20px;
  }
  
  .timeline-header h3 {
    font-size: 1.2rem;
  }
}

/* Projects Section */
.project-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 10px;
}

.project-tab-btn {
  padding: 8px 20px;
  border: 2px solid var(--accent);
  background: transparent;
  color: var(--accent);
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.9rem;
}

.project-tab-btn:hover {
  background: rgba(0, 240, 255, 0.1);
}

.project-tab-btn.active {
  background: var(--accent);
  color: var(--primary);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.project-card {
  background: var(--card-bg);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease;
  border: 1px solid rgba(0, 240, 255, 0.1);
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 240, 255, 0.1);
  transition: all 0.3s ease;
  border-color: rgba(0, 240, 255, 0.6);
}

.project-image {
  position: relative;
  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-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-overlay a {
  color: white;
  font-size: 1.5rem;
  margin: 0 10px;
  transition: transform 0.3s ease;
}

.project-overlay a:hover {
  transform: scale(1.2);
}

.category-label {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
  z-index: 2;
}

.robotics-label {
  background: rgba(0, 240, 255, 0.2);
  color: var(--accent);
  border: 1px solid var(--accent);
}

.ai-label {
  background: rgba(233, 30, 99, 0.2);
  color: #e91e63;
  border: 1px solid #e91e63;
}

.embedded-label {
  background: rgba(255, 152, 0, 0.2);
  color: #ff9800;
  border: 1px solid #ff9800;
}

.project-info {
  padding: 20px;
}

.project-info h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.project-info p {
  color: var(--text-secondary);
  margin-bottom: 15px;
  text-align: justify;
}

.project-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.project-skills li {
  background: rgba(0, 240, 255, 0.1);
  color: var(--accent);
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
}


/* Publications Section */
.publications-list {
  max-width: 1100px;
  margin: 0 auto;
}

.publication-card {
  background: var(--card-bg);
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 30px;
  border: 1px solid rgba(0, 240, 255, 0.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  position: relative;
}

.publication-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 240, 255, 0.15);
  border-color: rgba(0, 240, 255, 0.4);
}

.publication-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0,240,255,0.05) 0%, transparent 100%);
  border-radius: 10px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.publication-card:hover::before {
  opacity: 1;
}

.publication-title {
  color: var(--accent);
  margin-bottom: 10px;
  font-size: 1.3rem;
  transition: color 0.3s ease;
}

.publication-card:hover .publication-title {
  color: var(--accent-dark);
}

.publication-authors {
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 5px;
}

.publication-venue {
  color: var(--text-secondary);
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.publication-links {
  margin-bottom: 15px;
}

.publication-link {
  display: inline-block;
  margin-right: 15px;
  color: var(--accent);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.publication-link:hover {
  text-decoration: underline;
  color: var(--accent-dark);
}

.publication-abstract {
  color: var(--text-secondary);
  line-height: 1.6;
  transition: color 0.3s ease;
}

.publication-card:hover .publication-abstract {
  color: var(--text-primary);
}

/* Competitions Styles */
.competitions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(550px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.competition-card {
  background: var(--card-bg);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(0, 240, 255, 0.1);
  transition: transform 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.competition-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 240, 255, 0.15);
  border-color: rgba(0, 240, 255, 0.4);
}

.competition-badge {
  position: absolute;
  top: 20px; 
  right: 10px;
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  border-radius: 20px;
  padding: 6px 12px;
  font-size: 1.25rem;
  text-align: right;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.competition-badge[aria-label*="1st"] {
  background: linear-gradient(135deg, #FFD700, #C9B037);
  color: #000;
}

.competition-badge[aria-label*="2nd"] {
  background: linear-gradient(135deg, #C0C0C0, #A8A8A8);
  color: #000;
}

.competition-badge[aria-label*="Finalist"] {
  background: linear-gradient(135deg, #CD7F32, #A67C52);
  color: #fff;
}

.competition-content {
  position: relative; 
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.competition-org {
  color: var(--text-secondary);
  margin: 10px 0 15px;
  font-size: 0.9rem;
}

.competition-details ul {
  list-style: none;
  padding-left: 20px;
  margin-bottom: 20px;
}

.competition-details li {
  margin-bottom: 8px;
  position: relative;
}

.competition-details li::before {
  content: "▸";
  position: absolute;
  left: -20px;
  color: var(--accent);
  font-weight: bold;
}

.competition-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  margin-top: auto;
}

.competition-link {
  display: inline-flex;
  align-items: center;
  color: var(--accent);
  font-size: 0.85rem;
  text-decoration: none;
  transition: opacity 0.3s;
}

.competition-link:hover {
  opacity: 0.8;
}

.competition-link i {
  margin-right: 6px;
  font-size: 0.9rem;
}

.competition-team-info {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.competition-team-logo {
  width: 40px;  
  height: auto;
}

.competition-image-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.competition-images {
  display: flex;
}

.competition-images img {
  width: 50%;
  height: auto;
  object-fit: cover;
  display: block;
}


/* Honors Section */
.honors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.honor-card {
  background: var(--card-bg);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
  border: 1px solid rgba(0, 240, 255, 0.1);
}

.honor-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 240, 255, 0.1);
  transition: all 0.3s ease;
  border-color: rgba(0, 240, 255, 0.6);
}

.honor-card i {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 20px;
}

.honor-card h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.honor-card p {
  color: var(--text-secondary);
}

/* Volunteering Styles */
.volunteering-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.volunteer-card {
  background: var(--card-bg);
  border-radius: 10px;
  padding: 25px;
  border: 1px solid rgba(0, 240, 255, 0.1);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.volunteer-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 240, 255, 0.15);
  border-color: rgba(0, 240, 255, 0.4);
}

.volunteer-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.volunteer-icon {
  font-size: 2rem;
  color: var(--accent);
  margin-right: 15px;
  width: 50px;
  text-align: center;
}

.volunteer-org {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.volunteer-date {
  display: inline-block;
  background: rgba(0, 240, 255, 0.1);
  color: var(--accent);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 15px;
  font-size: 0.8rem;
}

.volunteer-details ul {
  list-style: none;
  padding-left: 20px;
}

.volunteer-details li {
  margin-bottom: 8px;
  position: relative;
}

.volunteer-details li::before {
  content: "▹";
  position: absolute;
  left: -20px;
  color: var(--accent);
}

.contact-section {
  background: linear-gradient(145deg, var(--primary), var(--secondary));
  padding: 60px 0;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

/* Contact Section */
.contact-section {
  background: linear-gradient(145deg, var(--primary), var(--secondary));
  padding: 10px 0;
  min-height: 80vh;
  display: flex;
  align-items: center; 
  justify-content: center; 
}

.contact-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.contact-info {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  text-align: center;
}

.contact-info h3 {
  margin-bottom: 20px;
  font-size: 1.5rem;
  color: white;
}

.contact-info p {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.contact-info i {
  margin-right: 10px;
  color: var(--accent);
  width: 25px;
  text-align: center;
}

.contact-social-links {
  display: flex;
}

.contact-social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 240, 255, 0.1);
  color: var(--accent);
  margin-right: 15px;
  transition: all 0.3s ease;
}

.contact-social-links a:hover {
  background: var(--accent);
  color: var(--primary);
  transform: translateY(-3px);
}

/* Footer */
footer {
  background: var(--secondary);
  padding: 20px 0;
  text-align: center;
}

footer p {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--text-secondary);
  margin: 0 10px;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--accent);
}

/* Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero-text h1 {
    font-size: 2.8rem;
  }
  
  .hero-text h2 {
    font-size: 1.3rem;
  }
  
  .timeline::before {
    left: 31px;
  }
  
  .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }
  
  .timeline-item.right {
    left: 0;
  }
  
  .timeline-item.right .timeline-content::after,
  .timeline-item.left .timeline-content::after {
    left: 15px;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }
  
  .nav-links {
    position: fixed;
    top: 80px;
    left: -120%;
    width: 100%;
    height: calc(100vh - 80px);
    background: var(--secondary);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: left 0.3s ease;
  }
  
  .nav-links.active {
    left: 0;
  }
  
  .nav-links li {
    margin: 15px 0;
  }
  
  .hero-text {
    padding-right: 0;
    margin-bottom: 40px;
    text-align: center;
  }
  
  .hero-text h1, 
  .hero-text h2,
  .hero-text p {
    text-align: center;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .project-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .hero-text h1 {
    font-size: 2.2rem;
  }
  
  .hero-text h2 {
    font-size: 1.1rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .btn-outline {
    margin-left: 0;
    margin-top: 15px;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
}

/* Common Components */

.common-location {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.common-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  margin-top: auto;
}

.common-link {
  display: inline-flex;
  align-items: center;
  color: var(--accent);
  font-size: 0.85rem;
  text-decoration: none;
  transition: opacity 0.3s;
}

.common-link:hover {
  opacity: 0.8;
}

.common-link i {
  margin-right: 6px;
  font-size: 0.9rem;
}

