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

body {
 font-family: system-ui, sans-serif;
    background-color: #141414;
    color: #ffffff;
    line-height: 1.4;
    font-weight: 400;
    overflow-x: hidden;
}

/* CSS Variables for Netflix Colors */
:root {
    --netflix-red: #e50914;
    --netflix-black: #141414;
    --netflix-dark-gray: #181818;
    --netflix-gray: #333333;
    --netflix-light-gray: #808080;
    --netflix-white: #ffffff;
    --netflix-transparent: rgba(0, 0, 0, 0.7);
}

/* Sidebar Styles */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 68px;
    height: 100vh;
    background: linear-gradient(180deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 100%);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.sidebar.expanded {
    width: 248px;
}

.sidebar-header {
    padding: 20px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
 .sidebar-footer {
    position: absolute;
    bottom: 20px;
    width: 100%;
    padding: 0 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
   
}
.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--netflix-red);
    letter-spacing: -0.5px;
    white-space: nowrap;
}
/* Base navbar styling */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;  
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  z-index: 1000;
  transition: background-color 0.3s ease;
  background: transparent;
}

/* When scrolled, solid background */
.navbar.scrolled {
  background: #141414; 
}

.nav-section {
    margin: 20px 0;
}

.nav-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    margin: 4px 8px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--netflix-white);
    text-decoration: none;
    white-space: nowrap;
}

.nav-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.nav-item.active {
  background-color: rgba(255, 255, 255, 0.2);
  font-weight: 600;
  border-left: 3px solid var(--netflix-red);
  color: var(--netflix-red);
}


.nav-item i {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
    font-weight: normal;
    opacity: 1;
    display: inline-block;
    color: white !important;
    visibility: visible !important;
}

.nav-text {
    font-size: 0.85rem;
    transform: translateX(-10px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.sidebar.expanded .nav-text {
    transform: translateX(0);
    opacity: 1;
}

/* Search Input in Sidebar */
.sidebar-search {
    padding: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.search-input {
    width: 100%;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 4px;
    color: var(--netflix-white);
    font-size: 14px;
    transition: all 0.2s ease;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.search-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
}

/* Main Content */
.main-content {
    margin-left: 68px;
    transition: margin-left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-content.expanded {
    margin-left: 248px;
}

/* Top Header */
.top-header {
    position: fixed;
    top: 0;
    left: 68px;
    right: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.9) 0%, transparent 100%);
    padding: 20px 40px;
    z-index: 999;
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main-content.expanded .top-header {
    left: 248px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.breadcrumb {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.3px;
    color: var(--netflix-white);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-btn {
    background: none;
    border: none;
    color: var(--netflix-white);
    font-size: 1rem;
    font-weight: 300;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.header-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.profile-btn {
    width: 32px;
    height: 32px;
    border-radius: 4px;
    background: linear-gradient(45deg, #e50914, #ff6b6b);
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.profile-btn:hover {
    transform: scale(1.05);
}

/* Hero Section */
.hero {
    position: relative;
    height: 80vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    margin-top: 80px;
   
}
 .hero-video {
      width: 100%; height: 100%;
      object-fit: cover; object-position: center 20%;
      position: absolute; top: 0; left: 0; z-index: -3;
    }
    .hero-img {
      width: 100%; height: 120%;
      object-fit: cover; object-position: center 20%;
      position: absolute; top: 0; left: 0; z-index: -4;
    }
.hero-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px; /* adjust how tall the fade looks */
  background: linear-gradient(to top, #141414, transparent);
  pointer-events: none; 
}
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -2;
}

.hero-background img.hero-img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.hero-gradient {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3));
  z-index: 1;
}

.hero-content {
    padding: 0 40px;
    max-width: 600px;
    z-index: 1;
}

.hero-type {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 16px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    line-height: 1.1;
}

.hero-badge {
    display: inline-block;
    background-color: var(--netflix-red);
    color: var(--netflix-white);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-ranking {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 16px;
    opacity: 0.9;
}

.hero-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    font-size: 16px;
    flex-wrap: wrap;
}

.rating {
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 2px 6px;
    border-radius: 2px;
    font-size: 14px;
}

.year, .duration, .genre {
    opacity: 0.8;
}

.hero-description {
    font-size: 18px;
    margin-bottom: 24px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-family: 'Netflix Sans', sans-serif;
    font-weight: 600;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.btn-play {
    background-color: var(--netflix-white);
    color: var(--netflix-black);
}

.btn-play:hover {
    background-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.02);
}

.btn-info {
    background-color: rgba(109, 109, 110, 0.7);
    color: var(--netflix-white);
}

.btn-info:hover {
    background-color: rgba(109, 109, 110, 0.4);
    transform: scale(1.02);
}

/* Movie Sections */
.movie-sections {
    margin-top:0;
    padding-bottom:0;
     padding-top: 0;
}
.movie-row {
  margin-top: 0;
  padding-top: 0;
}

.movie-row {
  position: relative;
  overflow: hidden;
   padding-left: 0;
  margin-left: 0;
  padding-top: 0; 
}
/* Align row title and controls */
.row-header {
  display: flex;
  justify-content: space-between;
  align-items: center; 
  padding: 0 2rem;
  margin-bottom:0;
}

/* Title style */
.row-title {
  font-size: 1.5rem;
  margin-top: -30px;
}

/* Buttons spacing fix */
.row-controls {
  display: flex;
  gap: 0.5rem;
}

.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20; 
  width: 48px;
  height: 48px;
  background-color: rgba(0, 0, 0, 0.6);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

/* Hover effect */
.scroll-btn:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%) scale(1.05);
}

/* Position to far left and right */
.scroll-btn.left {
  left: 0; 
}

.scroll-btn.right {
  right: 0; 
}

.row-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    margin-bottom: 0;
}

.row-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--netflix-white);
    letter-spacing: -0.3px;
}

/* Movie Cards */

.movie-list {
  display: flex;
  flex-direction: row;   
  gap: 10px;            
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  white-space: nowrap;
}

/* Each card should keep fixed width */
.movie-card {
  position: relative;
  flex-shrink: 0;        
  min-width: 200px;     
  max-width: 200px;
  height: 300px;
  border-radius: 8px;
  overflow: hidden;
  background: #141414;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.movie-row {
    margin-top: 0;
    padding-top: 2rem;
    padding-left: 0;
    margin-left: 0;
}

.movie-card:hover {
    transform: scale(1.05) translateY(-8px);
    z-index: 10;
}

/* Hide scrollbar for all browsers */
.movie-list {
  display: flex;
  flex-direction: row;   
  gap: 10px;             
  overflow-x: auto;     
  overflow-y: hidden;    
  scroll-behavior: smooth;

  /* hide scrollbar */
  -ms-overflow-style: none;  
  scrollbar-width: none;     
}
.movie-list::-webkit-scrollbar {
  display: none;  
}


.movie-list::-webkit-scrollbar {
  display: none;             
}

.row-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 5;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.row-fade.left {
  left: 0;
  background: linear-gradient(to right, #141414, transparent);
  opacity: 0;
}

.row-fade.right {
  right: 0;
  background: linear-gradient(to left, #141414, transparent);
  opacity: 1;
}

/* Ensure row is relative so arrows can be positioned */
.movie-row {
  position: relative;
  overflow: hidden;
}

/* Cards hover scaling */
.movie-card:hover {
  transform: scale(1.05) translateY(-8px);
  z-index: 5; 
}

/* Fades */
.row-fade {
  z-index: 6;
}

/* Arrows */
.row-fade .scroll-btn {
  z-index: 10; 
  pointer-events: auto;
}

.scroll-btn {
  pointer-events: auto; /* make button clickable */
  border: none;
  background: rgba(0,0,0,0.6);
  color: white;
  font-size: 1.8rem;
  border-radius: 50%;
  padding: 10px;
  cursor: pointer;
  transition: background 0.3s ease, opacity 0.3s ease;
  opacity: 0; /* hidden by default */
  z-index: 10; /* above fade */
}
.movie-row:hover .scroll-btn {
  opacity: 1;
}

.scroll-btn:hover {
  background: rgba(255,255,255,0.3);
}
.movie-row {
  position: relative;
}

.movie-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Center overlay for Play button --- */
.overlay-center {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  background: rgba(0, 0, 0, 0.25); 
}

.movie-card:hover .overlay-center {
  opacity: 1;
}

/* Play button (circle) */
.play-btn {
  background: rgba(245, 243, 243, 0.7);
  border: none;
  color: #0c0c0c;
  font-size: 1.8rem;
  padding: 16px 22px;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}
/* --- Bottom overlay for Info button --- */
.overlay-bottom {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%; 
  opacity: 0;
  transition: opacity 0.3s ease;
}

.movie-card:hover .overlay-bottom {
  opacity: 1;
}

/* Info button = wide disc shape */
.info-btn {
  width: 100%;
  background: rgba(250, 248, 248, 0.7);
  border: none;
  color: #0f0f0f;
  font-size: 0.95rem;
  padding: 10px 0;
  border-radius: 30px; 
  cursor: pointer;
  text-align: center;
  transition: background 0.2s ease, color 0.2s ease;
}

.info-btn:hover {
  background:#e50914 ;
  color: #ecdada;
}
.play-btn:hover {
    background :#e50914;
    color: #ecdada;
}
/* Progress Bar */
.progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--netflix-red);
    transition: width 0.3s ease;
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    background: var(--netflix-dark-gray);
    border-radius: 8px;
    overflow: hidden;
    animation: modalSlideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    background: rgba(0, 0, 0, 0.7);
    border: none;
    border-radius: 50%;
    color: var(--netflix-white);
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

.modal-hero {
    position: relative;
    height: 300px;
    background-size: cover;
    background-position: center;
}

.modal-hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, var(--netflix-dark-gray) 100%);
}

.modal-hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
}

.modal-badge {
    display: inline-block;
    background-color: var(--netflix-red);
    color: var(--netflix-white);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
}

.modal-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.modal-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    font-size: 16px;
    opacity: 0.8;
}

.modal-buttons {
    display: flex;
    gap: 12px;
}

.modal-body {
    padding: 40px;
}

.modal-description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.9);
}

.modal-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.modal-tag {
    background: rgba(255, 255, 255, 0.1);
    color: var(--netflix-white);
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 14px;
    opacity: 0.8;
}

/* Footer */
.footer {
    background-color: var(--netflix-black);
    padding: 40px 0;
    margin-top: 60px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    margin-bottom: 32px;
}

.footer-link {
    color: var(--netflix-light-gray);
    text-decoration: none;
    font-size: 14px;
    line-height: 2;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: var(--netflix-white);
}

.footer-copyright {
    color: var(--netflix-light-gray);
    font-size: 14px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    background: var(--netflix-dark-gray);
    border-radius: 8px;
    overflow: hidden;
    animation: modalSlideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    background: rgba(0, 0, 0, 0.7);
    border: none;
    border-radius: 50%;
    color: var(--netflix-white);
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

.modal-hero {
    position: relative;
    height: 300px;
    background-size: cover;
    background-position: center;
}

.modal-hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, var(--netflix-dark-gray) 100%);
}

.modal-hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
}

.modal-badge {
    display: inline-block;
    background-color: var(--netflix-red);
    color: var(--netflix-white);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
}

.modal-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.modal-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    font-size: 16px;
    opacity: 0.8;
}

.modal-buttons {
    display: flex;
    gap: 12px;
}

.modal-body {
    padding: 40px;
}

.modal-description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.9);
}

.modal-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.modal-tag {
    background: rgba(255, 255, 255, 0.1);
    color: var(--netflix-white);
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 14px;
    opacity: 0.8;
}

/* Progress Bar */
.progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--netflix-red);
    transition: width 0.3s ease;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 40px;
    }
    
    .movie-card {
        flex: 0 0 200px;
    }
    
    .movie-image {
        height: 112px;
    }
}

@media (max-width: 1024px) {
    .sidebar {
        width: 60px;
    }
    
    .sidebar.expanded {
        width: 220px;
    }
    
    .main-content {
        margin-left: 60px;
    }
    
    .main-content.expanded {
        margin-left: 220px;
    }
    
    .top-header {
        left: 60px;
        padding: 16px 24px;
    }
    
    .main-content.expanded .top-header {
        left: 220px;
    }
    
    .hero-content {
        padding: 0 24px;
    }
    
    .row-header {
        padding: 0 24px;
    }
    
    .movie-list {
        padding: 0 24px;
    }
}

@media (max-width: 768px) {
    .sidebar {
        transform: translateX(-100%);
        width: 280px;
    }
    
    .sidebar.expanded {
        transform: translateX(0);
    }
    
    .main-content {
        margin-left: 0;
    }
    
    .main-content.expanded {
        margin-left: 0;
    }
    
    .top-header {
        left: 0;
        padding: 12px 16px;
    }
    
    .hero {
        height: 60vh;
        min-height: 400px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-content {
        padding: 0 16px;
    }
    
    .row-header {
        padding: 0 16px;
    }
    
    .movie-list {
        padding: 0 16px;
    }
    
    .movie-card {
        flex: 0 0 160px;
    }
    
    .movie-image {
        height: 90px;
    }
    
    .modal-content {
        width: 95%;
        max-height: 95vh;
    }
    
    .modal-hero {
        height: 200px;
    }
    
    .modal-hero-content {
        padding: 20px;
    }
    
    .modal-title {
        font-size: 24px;
    }
    
    .modal-body {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .movie-card {
        flex: 0 0 140px;
    }
    
    .movie-image {
        height: 78px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .footer-content {
        padding: 0 16px;
    }
    
}
.footer {
  background-color:black;
  color: #b3b3b3;           
  padding: 40px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.footer-link {
  color: #b3b3b3;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: #ffffff;
}

.footer-socials {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
  justify-content: center;
}

.footer-socials a {
  color: #b3b3b3;
  font-size: 20px;
  transition: color 0.2s ease;
}

.footer-socials a:hover {
  color: #ffffff;
}

.footer-socials i {
  pointer-events: none;
}

.footer-copyright {
  text-align: center;
  font-size: 12px;
  color: #737373;
}

