/* RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #050505;
  font-family: 'Rajdhani', sans-serif;
  color: #f0f0f0;
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4, .logo, .btn, .nav-links a, .game-card h3, .section-title {
  font-family: 'Orbitron', monospace;
  font-weight: 700;
  letter-spacing: 1px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #121212;
}

::-webkit-scrollbar-thumb {
  background: #ff7b00;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #ff962e;
}

/* Particles Background */
#particles-js {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  pointer-events: none;
}

/* Mouse Glow Effect */
.mouse-glow {
  position: fixed;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 123, 0, 0.08) 0%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  transition: transform 0.05s ease;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(5, 5, 5, 0.9);
  backdrop-filter: blur(12px);
  z-index: 1000;
  padding: 1rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.3s;
  border-bottom: 1px solid rgba(255, 123, 0, 0.3);
}

.logo {
  font-size: 1.8rem;
  font-weight: 900;
  background: linear-gradient(135deg, #ff7b00, #ffb347);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 15px rgba(255, 123, 0, 0.5);
  letter-spacing: 3px;
}

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

.nav-links a {
  color: #ddd;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 2px;
  background: #ff7b00;
  transition: 0.3s;
}

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

.nav-links a:hover,
.nav-links a.active {
  color: #ff7b00;
  text-shadow: 0 0 8px #ff7b00;
}

.hamburger {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #ff7b00;
}

/* Mobile Navigation */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }
  
  .nav-links {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: #0a0a0a;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 3rem;
    transition: 0.4s;
    gap: 2rem;
    border-left: 2px solid #ff7b00;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-links li {
    width: 100%;
    text-align: center;
  }
}

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

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  z-index: 2;
}

.glowing-logo {
  position: relative;
  display: inline-block;
}

.animated-logo {
  font-size: 5rem;
  background: linear-gradient(135deg, #fff, #ff7b00, #ffb347);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: logoPulse 2s ease-in-out infinite;
  letter-spacing: 8px;
}

@keyframes logoPulse {
  0%, 100% {
    text-shadow: 0 0 0px rgba(255, 123, 0, 0);
  }
  50% {
    text-shadow: 0 0 30px rgba(255, 123, 0, 0.8);
  }
}

.logo-glow-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 123, 0, 0.3) 0%, rgba(0, 0, 0, 0) 70%);
  animation: ringPulse 2s ease-in-out infinite;
}

@keyframes ringPulse {
  0%, 100% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.2);
  }
}

.tagline {
  font-size: 1.5rem;
  letter-spacing: 6px;
  margin-top: 1rem;
  color: #ff7b00;
  font-weight: 500;
}

.sub-tagline {
  font-size: 1.2rem;
  opacity: 0.8;
  margin-top: 0.5rem;
}

/* Buttons */
.btn-group {
  margin-top: 2rem;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-family: 'Orbitron';
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.btn-primary {
  background: linear-gradient(135deg, #ff7b00, #ff5500);
  color: #050505;
  box-shadow: 0 0 20px rgba(255, 123, 0, 0.5);
  border: none;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 35px rgba(255, 123, 0, 0.8);
}

.btn-outline {
  border: 2px solid #ff7b00;
  color: #ff7b00;
  background: transparent;
}

.btn-outline:hover {
  background: #ff7b00;
  color: #050505;
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(255, 123, 0, 0.5);
}

/* Hero Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  color: #ff7b00;
  font-size: 0.8rem;
  letter-spacing: 2px;
  animation: bounce 2s infinite;
}

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

/* Sections */
section {
  padding: 80px 0;
}

.section-header {
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2.5rem;
  position: relative;
  display: inline-block;
  background: linear-gradient(135deg, #fff, #ff7b00);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.title-glow {
  width: 80px;
  height: 3px;
  background: #ff7b00;
  margin-top: 10px;
  box-shadow: 0 0 10px #ff7b00;
}

/* Video Slider */
.video-slider-wrapper {
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 10px;
}

.video-slider {
  display: flex;
  gap: 1.5rem;
  min-width: min-content;
}

.video-card {
  min-width: 350px;
  background: #121212;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 123, 0, 0.2);
}

.video-card:hover {
  transform: translateY(-8px);
  border-color: #ff7b00;
  box-shadow: 0 10px 30px rgba(255, 123, 0, 0.3);
}

.video-thumbnail iframe {
  width: 100%;
  height: 200px;
  border: none;
}

.video-info {
  padding: 1rem;
}

.video-info h3 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.video-info span {
  font-size: 0.8rem;
  color: #ff7b00;
}

/* Games Grid */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.game-card {
  background: #121212;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  text-align: center;
  border: 1px solid rgba(255, 123, 0, 0.2);
  cursor: pointer;
}

.game-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: #ff7b00;
  box-shadow: 0 15px 40px rgba(255, 123, 0, 0.4);
}

.game-image {
  position: relative;
  overflow: hidden;
}

.game-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.game-card:hover .game-image img {
  transform: scale(1.1);
}

.game-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.game-overlay span {
  color: #ff7b00;
  font-weight: bold;
  padding: 8px 20px;
  border: 2px solid #ff7b00;
  border-radius: 30px;
}

.game-card h3 {
  margin: 1rem 0 0.3rem;
  font-size: 1.3rem;
}

.game-card p {
  font-size: 0.8rem;
  opacity: 0.7;
  margin-bottom: 1rem;
}

/* Other Channels */
.channels-section {
  padding: 60px 0 20px;
}

.channels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.channel-card {
  background: #121212;
  border-radius: 20px;
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid rgba(255, 123, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.channel-card:hover {
  transform: translateY(-6px);
  border-color: #ff7b00;
  box-shadow: 0 12px 30px rgba(255, 123, 0, 0.25);
}

.channel-avatar {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 2px solid rgba(255, 123, 0, 0.6);
  box-shadow: 0 0 20px rgba(255, 123, 0, 0.2);
}

.channel-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

.channel-card p {
  opacity: 0.8;
  margin-bottom: 1.2rem;
}

/* About Preview */
.about-preview {
  background: linear-gradient(135deg, #0a0a0a 0%, #050505 100%);
}

.preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.preview-content p {
  margin: 1.5rem 0;
  font-size: 1.1rem;
  line-height: 1.8;
}

/* About Logo Hero */
.about-logo-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  background: radial-gradient(circle at left, rgba(255, 123, 0, 0.18), rgba(0, 0, 0, 0.2));
  border: 1px solid rgba(255, 123, 0, 0.35);
  box-shadow: 0 0 25px rgba(255, 123, 0, 0.25);
  margin: 0 auto 1.6rem;
  width: max-content;
}

.about-logo-hero img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 2px solid rgba(255, 123, 0, 0.7);
  box-shadow: 0 0 18px rgba(255, 123, 0, 0.4);
}

.about-logo-hero span {
  font-family: 'Orbitron', monospace;
  letter-spacing: 1px;
  color: #ffb347;
  text-transform: uppercase;
  font-size: 0.85rem;
  text-align: center;
}

.stats-row {
  display: flex;
  gap: 2rem;
  margin: 2rem 0;
}

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

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ff7b00;
  font-family: 'Orbitron';
}

.stat-item span {
  font-size: 0.8rem;
  opacity: 0.7;
  display: block;
}

.preview-quote {
  background: #121212;
  padding: 2rem;
  border-radius: 20px;
  border-left: 4px solid #ff7b00;
}

.preview-quote i {
  font-size: 2rem;
  color: #ff7b00;
  margin-bottom: 1rem;
  display: block;
}

.preview-quote p {
  font-size: 1.2rem;
  font-style: italic;
  margin-bottom: 1rem;
}

.preview-quote span {
  color: #ff7b00;
  font-weight: bold;
}

/* Gallery Preview */
.preview-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.preview-gallery-loop {
  position: relative;
  overflow: hidden;
  margin-bottom: 2rem;
}

.preview-gallery-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: galleryLoop 28s linear infinite;
}

.preview-gallery-loop:hover .preview-gallery-track {
  animation-play-state: paused;
}

.preview-gallery-track .preview-gallery-item {
  flex: 0 0 240px;
  aspect-ratio: 1;
}

@keyframes galleryLoop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.preview-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
  aspect-ratio: 1;
}

.preview-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.preview-gallery-item:hover img {
  transform: scale(1.1);
}

.preview-gallery-item .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.preview-gallery-item:hover .overlay {
  opacity: 1;
}

.overlay i {
  font-size: 2rem;
  color: #ff7b00;
}

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

/* Gallery Page Grid */
.gallery-page {
  padding: 120px 0 60px;
}

.gallery-page .section-description {
  margin: 0 0 2rem;
}

.gallery-page-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
}

/* Community Banner */
.community-banner {
  background: linear-gradient(135deg, #ff7b0011, #050505);
  margin: 0 5%;
  border-radius: 40px;
  padding: 3rem;
  text-align: center;
  border: 1px solid rgba(255, 123, 0, 0.3);
}

.banner-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.banner-content p {
  margin-bottom: 1.5rem;
}

.community-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.community-stats div {
  font-size: 1.2rem;
}

.community-stats i {
  color: #ff7b00;
  margin-right: 8px;
}

/* Contact CTA */
.contact-cta {
  padding: 40px 0;
}

.cta-card {
  background: linear-gradient(135deg, #121212, #0a0a0a);
  text-align: center;
  padding: 3rem;
  border-radius: 30px;
  border: 1px solid rgba(255, 123, 0, 0.3);
}

.cta-card h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.cta-card p {
  margin-bottom: 1.5rem;
  opacity: 0.8;
}

/* Footer */
footer {
  background: #050505;
  border-top: 1px solid rgba(255, 123, 0, 0.3);
  margin-top: 2rem;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 3rem 5%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.footer-brand .logo {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.footer-brand p {
  opacity: 0.7;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  color: #ccc;
  font-size: 1.5rem;
  transition: 0.3s;
}

.social-links a:hover {
  color: #ff7b00;
  transform: translateY(-3px);
}

.footer-links h4 {
  margin-bottom: 1rem;
  color: #ff7b00;
}

.footer-links ul {
  list-style: none;
}

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

.footer-links ul li a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links ul li a:hover {
  color: #ff7b00;
  padding-left: 5px;
}

.footer-newsletter input {
  padding: 10px;
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 8px;
  color: white;
  width: 70%;
}

.footer-newsletter button {
  padding: 10px 15px;
  background: #ff7b00;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.footer-newsletter button:hover {
  background: #ff962e;
}

.footer-bottom {
  text-align: center;
  padding: 1.5rem;
  border-top: 1px solid #1a1a1a;
  font-size: 0.8rem;
  opacity: 0.7;
}

.footer-bottom a {
  color: #ff7b00;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 1024px) {
  .preview-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .preview-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .animated-logo {
    font-size: 3.5rem;
  }
}

@media (max-width: 768px) {
  .games-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
  
  .video-card {
    min-width: 280px;
  }
  
  .stats-row {
    flex-direction: column;
    gap: 1rem;
  }
  
  .community-stats {
    flex-direction: column;
    gap: 0.8rem;
  }
  
  .btn {
    padding: 10px 24px;
    font-size: 0.8rem;
  }
  
  section {
    padding: 50px 0;
  }
}

/* Page Specific - About Page Timeline */
.timeline-section {
  padding: 100px 0 60px;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: #ff7b00;
}

.timeline-item {
  padding: 20px;
  position: relative;
  width: 50%;
}

.timeline-item:nth-child(odd) {
  left: 0;
}

.timeline-item:nth-child(even) {
  left: 50%;
}

.timeline-content {
  background: #121212;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid rgba(255, 123, 0, 0.3);
}

.timeline-year {
  color: #ff7b00;
  font-size: 1.5rem;
  font-weight: bold;
}

@media (max-width: 768px) {
  .timeline::before {
    left: 0;
  }
  
  .timeline-item {
    width: 100%;
    padding-left: 30px;
  }
  
  .timeline-item:nth-child(even) {
    left: 0;
  }
}

/* Gallery Page Masonry Grid */
.masonry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  padding: 100px 5% 60px;
}

.masonry-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.masonry-item img {
  width: 100%;
  height: auto;
  transition: transform 0.4s;
  border-radius: 16px;
}

.masonry-item:hover {
  transform: translateY(-5px);
}

.masonry-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-overlay span {
  color: #ff7b00;
  font-weight: 700;
  letter-spacing: 1px;
  background: rgba(0, 0, 0, 0.5);
  padding: 8px 14px;
  border-radius: 20px;
  border: 1px solid rgba(255, 123, 0, 0.4);
}

.masonry-item:hover .gallery-overlay {
  opacity: 1;
}

/* Contact Form */
.contact-page-form {
  padding: 120px 5% 60px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.form-container {
  background: #121212;
  padding: 2rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 123, 0, 0.3);
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #ff7b00;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 12px;
  color: white;
  font-family: 'Rajdhani';
  transition: 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #ff7b00;
  outline: none;
  box-shadow: 0 0 15px rgba(255, 123, 0, 0.3);
}

.submit-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #ff7b00, #ff5500);
  border: none;
  border-radius: 40px;
  color: #050505;
  font-weight: bold;
  font-family: 'Orbitron';
  cursor: pointer;
  transition: 0.3s;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(255, 123, 0, 0.5);
}

.contact-info {
  background: #121212;
  padding: 2rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 123, 0, 0.3);
}

.contact-info h3 {
  margin-bottom: 1rem;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
}

.contact-info-item a {
  color: #ff7b00;
  text-decoration: none;
  font-weight: 600;
}

.contact-info-item a:hover {
  color: #ffb347;
  text-decoration: underline;
}

.contact-info-item .contact-accent {
  color: #ff7b00;
  font-weight: 600;
}

.contact-info-item i {
  font-size: 1.5rem;
  color: #ff7b00;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
}

.lightbox.active {
  visibility: visible;
  opacity: 1;
}

.lightbox img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 16px;
  border: 3px solid #ff7b00;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 2.5rem;
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

.lightbox-close:hover {
  color: #ff7b00;
}

/* Legal Pages */
.legal-page {
  padding: 120px 5% 80px;
  max-width: 1000px;
  margin: 0 auto;
}

.legal-page h1 {
  color: #ff7b00;
  margin-bottom: 2rem;
}

.legal-page h2 {
  margin: 2rem 0 1rem;
  color: #ffb347;
}

.legal-page p {
  margin-bottom: 1rem;
  line-height: 1.8;
  opacity: 0.9;
}

.legal-page ul {
  margin-left: 2rem;
  margin-bottom: 1rem;
}

.legal-page li {
  margin-bottom: 0.5rem;
}

/* =========================
   HERO SECTION
========================= */

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;

  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;

  background: #000;
}

/* =========================
   VIDEO BACKGROUND
========================= */

.video-background {
  position: absolute;
  inset: 0;

  z-index: 1;
  overflow: hidden;
}

.video-background iframe {
  position: absolute;

  top: 50%;
  left: 50%;

  width: 100vw;
  height: 56.25vw;

  min-width: 177.77vh;
  min-height: 100vh;

  transform: translate(-50%, -50%);

  pointer-events: none;

  filter:
    brightness(1.2)
    contrast(1.15)
    saturate(1.2);
}

/* =========================
   VIDEO OVERLAY
========================= */

.video-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,0.12),
      rgba(0,0,0,0.45)
    );

  z-index: 2;
}

/* =========================
   ORANGE AMBIENT GLOW
========================= */

.hero::after {
  content: "";

  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      circle at center,
      rgba(255,123,0,0.05),
      transparent 70%
    );

  z-index: 2;
  pointer-events: none;
}

/* =========================
   HERO CONTENT
========================= */

.hero-content {
  position: relative;
  z-index: 3;

  color: #fff;

  padding: 40px 50px;

  border-radius: 22px;

  background: rgba(0,0,0,0.28);

  border: 1px solid rgba(255,255,255,0.06);

  box-shadow:
    0 0 30px rgba(0,0,0,0.35);
}

/* =========================
   LOGO AREA
========================= */

.glowing-logo {
  position: relative;
}

.glowing-logo::before {
  content: "";

  position: absolute;

  width: 280px;
  height: 280px;

  background: rgba(255,123,0,0.12);

  filter: blur(90px);

  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%);

  z-index: -1;
}

/* =========================
   MAIN LOGO TEXT
========================= */

.animated-logo {
  font-size: 7rem;

  font-family: 'Orbitron', sans-serif;
  font-weight: 900;

  color: #ff7b00;

  letter-spacing: 8px;

  text-shadow:
    0 0 5px rgba(255,123,0,0.8),
    0 0 15px rgba(255,123,0,0.5);

  animation: pulseGlow 3s infinite ease-in-out;
}

/* =========================
   LOGO GLOW ANIMATION
========================= */

@keyframes pulseGlow {

  0% {
    text-shadow:
      0 0 5px rgba(255,123,0,0.8),
      0 0 15px rgba(255,123,0,0.5);
  }

  50% {
    text-shadow:
      0 0 10px rgba(255,123,0,1),
      0 0 25px rgba(255,123,0,0.8);
  }

  100% {
    text-shadow:
      0 0 5px rgba(255,123,0,0.8),
      0 0 15px rgba(255,123,0,0.5);
  }

}

/* =========================
   TEXT
========================= */

.tagline {
  margin-top: 12px;

  font-size: 1.2rem;
  letter-spacing: 6px;

  color: #ffffff;

  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
}

.sub-tagline {
  margin-top: 10px;

  font-size: 1rem;

  color: rgba(255,255,255,0.82);

  font-family: 'Rajdhani', sans-serif;
}

/* =========================
   BUTTONS
========================= */

.btn-group {
  margin-top: 35px;

  display: flex;
  justify-content: center;
  gap: 18px;
}

.btn {
  padding: 15px 34px;

  border-radius: 50px;

  text-decoration: none;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;

  transition: all 0.35s ease;
}

/* Primary Button */

.btn-primary {
  background: #ff7b00;
  color: #fff;

  box-shadow:
    0 0 20px rgba(255,123,0,0.35);
}

.btn-primary:hover {
  transform: translateY(-4px);

  box-shadow:
    0 0 35px rgba(255,123,0,0.7);
}

/* Outline Button */

.btn-outline {
  border: 2px solid #ff7b00;

  color: #ff7b00;

  background: rgba(255,255,255,0.03);
}

.btn-outline:hover {
  background: #ff7b00;
  color: #fff;

  transform: translateY(-4px);
}

/* =========================
   SCROLL INDICATOR
========================= */

.hero-scroll-indicator {
  position: absolute;

  bottom: 28px;
  left: 50%;

  transform: translateX(-50%);

  z-index: 3;

  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 8px;

  color: #ff7b00;

  font-size: 0.75rem;
  letter-spacing: 3px;

  animation: bounce 2s infinite;
}

/* =========================
   BOUNCE ANIMATION
========================= */

@keyframes bounce {

  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }

  40% {
    transform: translateX(-50%) translateY(-10px);
  }

  60% {
    transform: translateX(-50%) translateY(-5px);
  }

}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {

  .hero-content {
    width: 90%;

    padding: 28px 20px;
  }

  .animated-logo {
    font-size: 4rem;

    letter-spacing: 4px;
  }

  .tagline {
    font-size: 0.9rem;

    letter-spacing: 3px;
  }

  .sub-tagline {
    font-size: 0.88rem;
  }

  .btn-group {
    flex-direction: column;

    align-items: center;
  }

  .btn {
    width: 100%;

    justify-content: center;
  }

}



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

body {
  background: #050505;
  color: white;

  font-family: 'Rajdhani', sans-serif;
}

/* =========================
   HERO
========================= */

.videos-hero {
  position: relative;

  height: 50vh;

  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;

  background:
    url('../images/banner.jpg')
    center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,0.45),
      rgba(0,0,0,0.85)
    );
}

.videos-hero-content {
  position: relative;
  z-index: 2;
}

.videos-hero-content h1 {
  font-size: 4rem;

  font-family: 'Orbitron', sans-serif;

  color: #ff7b00;

  text-shadow:
    0 0 20px rgba(255,123,0,0.7);
}

.videos-hero-content p {
  margin-top: 15px;

  color: rgba(255,255,255,0.75);

  font-size: 1.1rem;
}

/* Playlists Filter Bar */
.filter-bar {
  padding: 40px 0 10px;
}

.filter-controls {
  display: grid;
  grid-template-columns: minmax(220px, 1.2fr) minmax(160px, 0.6fr) minmax(200px, 0.9fr) auto;
  gap: 16px;
  align-items: end;
  background: linear-gradient(135deg, rgba(18, 18, 18, 0.95), rgba(8, 8, 8, 0.95));
  border: 1px solid rgba(255, 123, 0, 0.35);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 0 20px rgba(255, 123, 0, 0.12), 0 20px 40px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.filter-controls::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 123, 0, 0.08), transparent 45%);
  pointer-events: none;
}

.filter-controls::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    rgba(255, 255, 255, 0.02) 0px,
    rgba(255, 255, 255, 0.02) 1px,
    transparent 1px,
    transparent 6px
  );
  opacity: 0.5;
  pointer-events: none;
}

.filter-group label {
  display: block;
  margin-bottom: 6px;
  color: #ffb347;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.filter-group input,
.filter-group select {
  width: 100%;
  padding: 10px 12px;
  background: #141414;
  border: 1px solid rgba(255, 123, 0, 0.2);
  color: #f0f0f0;
  border-radius: 10px;
  font-family: 'Rajdhani', sans-serif;
  box-shadow: inset 0 0 12px rgba(0, 0, 0, 0.4);
}

.filter-group input:focus,
.filter-group select:focus {
  outline: none;
  border-color: #ff7b00;
  box-shadow: 0 0 14px rgba(255, 123, 0, 0.35), inset 0 0 8px rgba(255, 123, 0, 0.15);
}

.filter-reset {
  padding: 10px 22px;
  height: 44px;
  align-self: end;
  border-radius: 12px;
  border: 1px solid rgba(255, 123, 0, 0.6);
  background: rgba(255, 123, 0, 0.08);
}

.filter-count {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 900px) {
  .filter-controls {
    grid-template-columns: 1fr 1fr;
  }
  .filter-reset {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .filter-controls {
    grid-template-columns: 1fr;
  }
}

/* =========================
   PLAYLIST SECTION
========================= */

.playlist-section {
  padding: 100px 8%;
}

.playlist-grid {
  display: grid;

  grid-template-columns:
    repeat(auto-fit, minmax(320px, 1fr));

  gap: 35px;
}

/* =========================
   CARD
========================= */

.playlist-card {
  border-radius: 22px;

  overflow: hidden;

  background: #101010;

  border: 1px solid rgba(255,255,255,0.05);

  transition: 0.45s ease;
}

.playlist-card:hover {
  transform:
    translateY(-10px)
    scale(1.02);

  box-shadow:
    0 0 40px rgba(255,123,0,0.22);
}

/* =========================
   IMAGE
========================= */

.playlist-image {
  position: relative;

  height: 420px;

  overflow: hidden;
}

.playlist-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: 0.5s ease;
}

.playlist-card:hover img {
  transform: scale(1.08);
}

/* =========================
   IMAGE OVERLAY
========================= */

.playlist-image::after {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to top,
      rgba(0,0,0,0.92),
      rgba(0,0,0,0.12)
    );
}

/* =========================
   PLAY BUTTON
========================= */

.playlist-overlay {
  position: absolute;
  inset: 0;

  display: flex;
  justify-content: center;
  align-items: center;

  z-index: 3;

  opacity: 0;

  transition: 0.4s ease;
}

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

.playlist-play {
  width: 75px;
  height: 75px;

  border-radius: 50%;

  background: rgba(255,123,0,0.18);

  border: 1px solid rgba(255,255,255,0.08);

  backdrop-filter: blur(5px);

  display: flex;
  justify-content: center;
  align-items: center;

  color: #fff;

  font-size: 1.5rem;

  text-decoration: none;

  transition: 0.35s ease;
}

.playlist-play:hover {
  transform: scale(1.1);

  background: #ff7b00;
}

/* Playlists Page Enhancements */
.playlists-page .playlist-card {
  position: relative;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.playlists-page .playlist-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(255, 123, 0, 0.12), transparent 55%);
  opacity: 0.6;
  pointer-events: none;
  z-index: 1;
}

.playlists-page .playlist-image::after {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.1));
}

.playlists-page .playlist-overlay {
  opacity: 1;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.05));
}

.playlists-page .playlist-play {
  opacity: 1;
  background: rgba(255, 123, 0, 0.35);
  border: 1px solid rgba(255, 123, 0, 0.6);
  box-shadow: 0 0 20px rgba(255, 123, 0, 0.55), 0 0 40px rgba(255, 123, 0, 0.2);
}

.playlists-page .playlist-play:hover {
  transform: scale(1.12);
  background: #ff7b00;
  box-shadow: 0 0 30px rgba(255, 123, 0, 0.8), 0 0 60px rgba(255, 123, 0, 0.35);
}

.playlists-page .playlist-info {
  z-index: 2;
}

/* =========================
   INFO
========================= */

.playlist-info {
  position: absolute;

  left: 25px;
  bottom: 25px;

  z-index: 4;
}

.playlist-category {
  display: inline-block;

  padding: 7px 16px;

  border-radius: 30px;

  background: rgba(255,123,0,0.15);

  color: #ff7b00;

  font-size: 0.8rem;

  margin-bottom: 14px;
}

.playlist-info h3 {
  font-size: 1.7rem;

  margin-bottom: 8px;
}

.playlist-info p {
  color: rgba(255,255,255,0.7);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {

  .videos-hero-content h1 {
    font-size: 2.5rem;
  }

  .playlist-image {
    height: 340px;
  }

}


/* =========================
   GLOBAL RESPONSIVE FIXES
========================= */

html {
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
}

/* =========================
   CONTAINER
========================= */

.container {
  width: 100%;
  max-width: 1400px;

  margin: auto;
  padding: 0 20px;
}

/* =========================
   PLAYLIST GRID
========================= */

.playlist-grid {
  display: grid;

  grid-template-columns:
    repeat(auto-fit, minmax(320px, 1fr));

  gap: 30px;

  padding: 80px 5%;
}

/* =========================
   PLAYLIST CARD
========================= */

.playlist-card {
  width: 100%;

  border-radius: 22px;

  overflow: hidden;

  background: #101010;

  border: 1px solid rgba(255,255,255,0.05);

  transition: 0.4s ease;
}

.playlist-card:hover {
  transform:
    translateY(-10px)
    scale(1.02);

  box-shadow:
    0 0 40px rgba(255,123,0,0.22);
}

/* =========================
   IMAGE
========================= */

.playlist-image {
  position: relative;

  width: 100%;
  height: 420px;

  overflow: hidden;
}

.playlist-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: 0.5s ease;
}

.playlist-card:hover img {
  transform: scale(1.08);
}

/* =========================
   OVERLAY
========================= */

.playlist-image::after {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to top,
      rgba(0,0,0,0.95),
      rgba(0,0,0,0.12)
    );
}

/* =========================
   PLAY BUTTON
========================= */

.playlist-overlay {
  position: absolute;
  inset: 0;

  display: flex;
  justify-content: center;
  align-items: center;

  z-index: 3;

  opacity: 0;

  transition: 0.4s ease;
}

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

.playlist-play {
  width: 75px;
  height: 75px;

  border-radius: 50%;

  background: rgba(255,123,0,0.15);

  backdrop-filter: blur(5px);

  border: 1px solid rgba(255,255,255,0.08);

  display: flex;
  justify-content: center;
  align-items: center;

  color: white;

  font-size: 1.4rem;

  text-decoration: none;

  transition: 0.35s ease;
}

.playlist-play:hover {
  background: #ff7b00;

  transform: scale(1.1);
}

/* =========================
   PLAYLIST INFO
========================= */

.playlist-info {
  position: absolute;

  left: 22px;
  bottom: 22px;

  z-index: 4;
}

.playlist-category {
  display: inline-block;

  padding: 7px 16px;

  border-radius: 30px;

  background: rgba(255,123,0,0.15);

  color: #ff7b00;

  font-size: 0.75rem;

  margin-bottom: 12px;

  font-weight: 700;

  letter-spacing: 1px;
}

.playlist-info h3 {
  font-size: 1.5rem;

  margin-bottom: 8px;

  line-height: 1.3;
}

.playlist-info p {
  color: rgba(255,255,255,0.7);

  font-size: 0.95rem;
}

/* =========================
   HERO SECTION
========================= */

.videos-hero {
  position: relative;

  height: 50vh;

  display: flex;
  justify-content: center;
  align-items: center;

  text-align: center;

  padding: 0 20px;
}

.videos-hero-content h1 {
  font-size: 4rem;

  font-family: 'Orbitron', sans-serif;

  color: #ff7b00;

  text-shadow:
    0 0 20px rgba(255,123,0,0.6);
}

.videos-hero-content p {
  margin-top: 15px;

  color: rgba(255,255,255,0.7);

  font-size: 1.05rem;

  max-width: 700px;
}

/* =========================
   NAVBAR
========================= */

.navbar {
  width: 100%;

  padding: 18px 5%;

  display: flex;
  justify-content: space-between;
  align-items: center;

  position: fixed;

  top: 0;
  left: 0;

  z-index: 999;
}

.nav-links {
  display: flex;
  gap: 35px;

  list-style: none;
}

.nav-links a {
  text-decoration: none;

  color: white;

  font-weight: 600;

  transition: 0.3s ease;
}

.nav-links a:hover {
  color: #ff7b00;
}

/* =========================
   MOBILE MENU
========================= */

.hamburger {
  display: none;

  font-size: 1.6rem;

  cursor: pointer;

  color: white;
}

/* =========================
   TABLET RESPONSIVE
========================= */

@media (max-width: 1024px) {

  .playlist-grid {
    grid-template-columns:
      repeat(2, 1fr);
  }

  .playlist-image {
    height: 360px;
  }

}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media (max-width: 768px) {

  /* Hero */

  .videos-hero {
    height: 40vh;
  }

  .videos-hero-content h1 {
    font-size: 2.4rem;
  }

  .videos-hero-content p {
    font-size: 0.95rem;
  }

  /* Navbar */

  .hamburger {
    display: block;
  }

  .nav-links {
    position: fixed;

    top: 80px;
    right: -100%;

    width: 260px;
    height: calc(100vh - 80px);

    background: #0a0a0a;

    flex-direction: column;

    padding: 40px 25px;

    transition: 0.4s ease;
  }

  .nav-links.active {
    right: 0;
  }

  /* Grid */

  .playlist-grid {
    grid-template-columns: 1fr;

    padding: 60px 20px;

    gap: 25px;
  }

  /* Card */

  .playlist-image {
    height: 320px;
  }

  .playlist-info h3 {
    font-size: 1.2rem;
  }

  .playlist-info p {
    font-size: 0.85rem;
  }

  .playlist-category {
    font-size: 0.7rem;
  }

  /* Play Button */

  .playlist-play {
    width: 60px;
    height: 60px;

    font-size: 1.1rem;
  }

}

/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 480px) {

  .videos-hero-content h1 {
    font-size: 2rem;
  }

  .playlist-image {
    height: 280px;
  }

  .playlist-info {
    left: 18px;
    bottom: 18px;
  }

  .playlist-info h3 {
    font-size: 1rem;
  }

}


/* =========================
   FEATURED PLAYLISTS
========================= */

.featured-playlists {
  padding: 100px 5%;

  background: #050505;

  overflow: hidden;
}

/* =========================
   TOP SECTION
========================= */

.section-top {
  display: flex;
  justify-content: space-between;
  align-items: center;

  gap: 20px;

  margin-bottom: 40px;

  flex-wrap: wrap;
}

.section-title {
  font-size: 3rem;

  color: white;

  font-family: 'Orbitron', sans-serif;
}

.section-description {
  margin-top: 10px;

  color: rgba(255,255,255,0.65);

  max-width: 700px;
}

/* =========================
   VIEW ALL LINK
========================= */

.view-all-link {
  color: #ff7b00;

  text-decoration: none;

  font-weight: 700;

  display: flex;
  align-items: center;
  gap: 10px;

  transition: 0.3s ease;
}

.view-all-link:hover {
  transform: translateX(5px);
}

/* =========================
   PLAYLIST WRAPPER
========================= */

.playlist-wrapper {
  position: relative;

  overflow: hidden;

  width: 100%;
}

/* EDGE FADE */

.playlist-wrapper::before,
.playlist-wrapper::after {
  content: "";

  position: absolute;

  top: 0;

  width: 120px;
  height: 100%;

  z-index: 5;

  pointer-events: none;
}

.playlist-wrapper::before {
  left: 0;

  background:
    linear-gradient(
      to right,
      #050505,
      transparent
    );
}

.playlist-wrapper::after {
  right: 0;

  background:
    linear-gradient(
      to left,
      #050505,
      transparent
    );
}

/* =========================
   AUTO SCROLL ROW
========================= */

.playlist-row {
  display: flex;

  gap: 25px;

  width: max-content;

  animation:
    autoScroll 35s linear infinite;
}

.playlist-row:hover {
  animation-play-state: paused;
}

/* =========================
   CARD
========================= */

.playlist-item {
  min-width: 320px;

  text-decoration: none;

  flex-shrink: 0;
}

.playlist-thumb {
  position: relative;

  height: 420px;

  border-radius: 24px;

  overflow: hidden;

  transition: 0.45s ease;
}

.playlist-thumb img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: 0.5s ease;
}

/* =========================
   OVERLAY
========================= */

.playlist-shadow {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to top,
      rgba(0,0,0,0.95),
      rgba(0,0,0,0.15)
    );
}

/* =========================
   PLAY BUTTON
========================= */

.playlist-play {
  position: absolute;

  top: 50%;
  left: 50%;

  transform:
    translate(-50%, -50%)
    scale(0.8);

  width: 70px;
  height: 70px;

  border-radius: 50%;

  background: rgba(255,123,0,0.15);

  backdrop-filter: blur(6px);

  display: flex;
  justify-content: center;
  align-items: center;

  color: white;

  font-size: 1.4rem;

  opacity: 0;

  transition: 0.4s ease;
}

/* =========================
   DETAILS
========================= */

.playlist-details {
  position: absolute;

  left: 22px;
  bottom: 22px;

  z-index: 3;
}

.playlist-tag {
  display: inline-block;

  padding: 7px 16px;

  border-radius: 30px;

  background: rgba(255,123,0,0.15);

  color: #ff7b00;

  font-size: 0.75rem;

  margin-bottom: 12px;
}

.playlist-details h3 {
  color: white;

  font-size: 1.5rem;

  margin-bottom: 6px;
}

.playlist-details p {
  color: rgba(255,255,255,0.7);
}

/* =========================
   HOVER
========================= */

.playlist-thumb:hover {
  transform:
    translateY(-10px)
    scale(1.02);

  box-shadow:
    0 0 40px rgba(255,123,0,0.3);
}

.playlist-thumb:hover img {
  transform: scale(1.08);
}

.playlist-thumb:hover .playlist-play {
  opacity: 1;

  transform:
    translate(-50%, -50%)
    scale(1);
}

/* Playlists Grid Items */
.playlist-grid.playlist-items {
  padding: 80px 5%;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.playlist-grid.playlist-items .playlist-item {
  min-width: 0;
  display: block;
}

.playlists-page .playlist-thumb {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  height: 480px;
}

.playlists-page .playlist-shadow {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.2));
}

.playlists-page .playlist-play {
  opacity: 1;
  background: rgba(255, 123, 0, 0.35);
  border: 1px solid rgba(255, 123, 0, 0.6);
  box-shadow: 0 0 20px rgba(255, 123, 0, 0.55), 0 0 40px rgba(255, 123, 0, 0.2);
}

.playlists-page .playlist-play:hover {
  transform: translate(-50%, -50%) scale(1.12);
  background: #ff7b00;
  box-shadow: 0 0 30px rgba(255, 123, 0, 0.8), 0 0 60px rgba(255, 123, 0, 0.35);
}

/* =========================
   AUTO SCROLL ANIMATION
========================= */

@keyframes autoScroll {

  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }

}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {

  .section-title {
    font-size: 2rem;
  }

  .playlist-item {
    min-width: 260px;
  }

  .playlist-thumb {
    height: 340px;
  }

  .playlist-row {
    animation-duration: 22s;
  }

}

@media (max-width: 1024px) {
  .playlists-page .playlist-thumb {
    height: 420px;
  }
  .playlist-grid.playlist-items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .playlists-page .playlist-thumb {
    height: 360px;
  }
  .playlist-grid.playlist-items {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .preview-gallery-track .preview-gallery-item {
    flex-basis: 180px;
  }
}