/* Base Styles */
:root {
  --primary-color: #FF5C00;
  --secondary-color: #FF8A3D;
  --accent-color: #FFA86C;
  --dark-bg: #121212;
  --darker-bg: #0A0A0A;
  --card-bg: #1D1D1D;
  --text-color: #FFFFFF;
  --text-secondary: #CCCCCC;
  --text-muted: #999999;
  --border-radius: 8px;
  --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

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

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--dark-bg);
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: var(--text-color);
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary-color);
}

ul {
  list-style: none;
}

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 4.2rem;
}

h2 {
  font-size: 3.6rem;
}

h3 {
  font-size: 2.4rem;
}

img {
  max-width: 100%;
  height: auto;
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: 1.2rem 3rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.6rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  outline: none;
}

.btn-primary {
  background: var(--primary-color);
  color: white;
  box-shadow: 0 4px 15px rgba(255, 92, 0, 0.3);
}

.btn-primary:hover {
  background: #FF7B33;
  transform: translateY(-3px);
  color: white;
}

.btn-secondary {
  background: rgba(255, 92, 0, 0.1);
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

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

.btn-large {
  padding: 1.5rem 4rem;
  font-size: 1.8rem;
}

.btn-container {
  margin-top: 4rem;
  text-align: center;
}

/* Header Styles */
header {
  background-color: var(--darker-bg);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 1.5rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 2.2rem;
  font-weight: 700;
}

.logo-svg {
  width: 40px;
  height: 40px;
}

.logo span {
  background: linear-gradient(90deg, #FFFFFF 0%, #FF5C00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo strong {
  color: var(--primary-color);
}

.main-nav ul {
  display: flex;
  gap: 3rem;
}

.main-nav a {
  font-weight: 500;
  font-size: 1.6rem;
  position: relative;
}

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

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

/* Hero Section */
.hero {
  position: relative;
  height: 80vh;
  background-color: var(--darker-bg);
  background-image: linear-gradient(135deg, #121212 0%, #1a1a1a 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 92, 0, 0.3) 0%, transparent 70%);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero h1 {
  margin-bottom: 2rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease;
}

.hero h1 span {
  color: var(--primary-color);
  position: relative;
}

.hero h1 span::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--primary-color);
  animation: growWidth 1.5s ease;
}

.hero p {
  font-size: 2rem;
  margin-bottom: 3rem;
  max-width: 600px;
  animation: fadeInUp 1.3s ease;
}

.hero .btn {
  animation: fadeInUp 1.6s ease;
}

/* Trending Section */
.trending {
  padding: 8rem 0;
  background-color: var(--dark-bg);
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-header h2 {
  color: var(--text-color);
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.8rem;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 2.5rem;
}

.video-card {
  background-color: var(--card-bg);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.video-info {
  padding: 1.5rem;
}

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

.video-meta {
  display: flex;
  justify-content: space-between;
  font-size: 1.4rem;
  color: var(--text-muted);
}

/* Categories Section */
.categories {
  padding: 8rem 0;
  background-color: var(--darker-bg);
  position: relative;
}

.categories::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 92, 0, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
  background-color: rgba(29, 29, 29, 0.5);
  border-radius: var(--border-radius);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.category-card:hover {
  transform: translateY(-5px);
  background-color: rgba(29, 29, 29, 0.8);
}

.category-card svg {
  margin-bottom: 1.5rem;
}

.category-card h3 {
  font-size: 1.8rem;
  text-align: center;
}

/* Premium Section */
.premium {
  padding: 8rem 0;
  background-color: var(--dark-bg);
  position: relative;
  overflow: hidden;
}

.premium::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.3), transparent);
}

.premium-content {
  display: flex;
  align-items: center;
  gap: 4rem;
  position: relative;
  z-index: 2;
}

.premium-text {
  flex: 1;
}

.premium-text h2 {
  margin-bottom: 2rem;
  color: var(--primary-color);
}

.premium-text p {
  margin-bottom: 3rem;
  font-size: 1.8rem;
  color: var(--text-secondary);
}

.feature-list {
  margin-bottom: 4rem;
}

.feature-list li {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
}

.feature-list li svg {
  margin-right: 1.5rem;
}

.premium-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* CTA Section */
.cta {
  padding: 10rem 0;
  background: linear-gradient(135deg, rgba(18, 18, 18, 0.95) 0%, rgba(10, 10, 10, 0.95) 100%), 
              radial-gradient(circle at center, rgba(255, 92, 0, 0.2) 0%, transparent 70%);
  text-align: center;
}

.cta h2 {
  font-size: 4rem;
  margin-bottom: 2rem;
}

.cta p {
  font-size: 2rem;
  color: var(--text-secondary);
  margin-bottom: 4rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
footer {
  background-color: var(--darker-bg);
  padding: 6rem 0 2rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.footer-logo span {
  font-size: 1.8rem;
  font-weight: 600;
}

.footer-links {
  display: flex;
  gap: 6rem;
}

.footer-column h3 {
  color: var(--text-secondary);
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

.footer-column ul li {
  margin-bottom: 1rem;
}

.footer-column a {
  color: var(--text-muted);
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: var(--primary-color);
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.copyright p {
  color: var(--text-muted);
  font-size: 1.4rem;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes growWidth {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

/* Media Queries */
@media (max-width: 992px) {
  html {
    font-size: 60%;
  }
  
  .premium-content {
    flex-direction: column;
  }
  
  .premium-image {
    order: -1;
    margin-bottom: 3rem;
  }
  
  .premium-image svg {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 57.5%;
  }
  
  header {
    padding: 1rem 0;
  }
  
  .header-wrap {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .main-nav ul {
    gap: 2rem;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 3rem;
  }
  
  .footer-links {
    gap: 3rem;
    flex-direction: column;
  }
  
  .video-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
  
  .hero {
    height: 70vh;
  }
  
  .hero h1 {
    font-size: 3.6rem;
  }
}

@media (max-width: 576px) {
  html {
    font-size: 55%;
  }
  
  .container {
    padding: 0 1.5rem;
  }
  
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hero h1 {
    font-size: 3.2rem;
  }
  
  .hero p {
    font-size: 1.8rem;
  }
  
  .section-header h2 {
    font-size: 3rem;
  }
  
  .video-grid {
    grid-template-columns: 1fr;
  }
  
  .cta h2 {
    font-size: 3.2rem;
  }
}
