:root {
  /* Core Colors */
  --bg-color: #141414;
  --bg-color-transparent: rgba(20, 20, 20, 0.7);
  --text-main: #FFFFFF;
  --text-muted: #B3B3B3;
  --primary-color: #E50914;
  --primary-hover: #F40612;
  
  /* Additional UI Colors */
  --highlight-color: #46D369; /* For ratings / matches */
  --dark-gray: #333333;
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);

  /* Typography */
  --font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;

  /* Spacing & Sizing */
  --nav-height: 70px;
  --border-radius: 4px;
  --border-radius-lg: 8px;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.4s ease;
}

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

body {
  background-color: var(--bg-color);
  color: var(--text-main);
  font-family: var(--font-family);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

a:hover {
  color: var(--text-muted);
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  border: none;
  outline: none;
}

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

.btn-primary:hover {
  background-color: var(--primary-hover);
  color: white;
  transform: scale(1.05);
}

.btn-secondary {
  background-color: var(--glass-bg);
  backdrop-filter: blur(10px);
  color: white;
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* Glassmorphism Classes */
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-lg);
}

/* Container */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 4%;
    margin-left: 0;

}

/* Scrollbar styling for webkit */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-color); 
}
 
::-webkit-scrollbar-thumb {
  background: var(--dark-gray); 
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted); 
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.text-muted {
  color: var(--text-muted);
}

.text-center {
  text-align: center;
}

/* Forms */
.form-group {
  margin-bottom: 1.5rem;
}

.form-control {
  width: 100%;
  padding: 1rem;
  background-color: var(--dark-gray);
  border: 1px solid transparent;
  border-radius: var(--border-radius);
  color: white;
  font-size: 1rem;
  transition: border-color var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-muted);
}
