/* DeliciousFM Branding Stylesheet */

/* Font Faces */
@font-face {
  font-family: 'VTFRedzone';
  src: url('/fonts/VTFRedzone-ClassicOblique.ttf') format('truetype');
  font-weight: normal;
  font-style: oblique;
}

@font-face {
  font-family: 'VTFRedzoneRegular';
  src: url('/fonts/VTFRedzone-Classic.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Oswald';
  src: url('/fonts/Oswald-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'PodiumSharp';
  src: url('/fonts/Fontspring-DEMO-podiumsharp-3.8.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

/* CSS Variables */
:root {
  --color-primary: #28ff7b;
  --color-accent: #e8d692;
  --color-footer: #232323;
  --color-dark: #0a0a0a;
  --color-text: #fafafa;
  --color-muted: #a1a1aa;
}

/* Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Oswald', system-ui, sans-serif;
  background-color: var(--color-dark);
  background-image: url('/img/background.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--color-text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Top Bar */
.topbar {
  background-color: var(--color-primary);
  padding: 0.5rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.topbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

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

.topbar-title {
  font-family: 'VTFRedzone', sans-serif;
  color: var(--color-dark);
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 1px;
}

.topbar-tagline {
  font-family: 'Oswald', sans-serif;
  color: var(--color-dark);
  font-size: 0.85rem;
  opacity: 0.8;
  flex: 1;
}

.header-login {
  font-family: 'Oswald', sans-serif;
  color: var(--color-dark);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  background: rgba(0,0,0,0.15);
  border-radius: 4px;
  transition: background 0.2s;
}

.header-login:hover {
  background: rgba(0,0,0,0.25);
}

.user-logout {
  font-family: 'Oswald', sans-serif;
  color: var(--color-dark);
  text-decoration: none;
  font-size: 0.8rem;
  opacity: 0.8;
}

.user-logout:hover {
  opacity: 1;
}

/* Navigation */
.navbar {
  background: rgba(10, 10, 10, 0.95);
  padding: 0.75rem 2rem;
  border-bottom: 2px solid var(--color-primary);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  font-family: 'VTFRedzone', sans-serif;
  color: var(--color-accent);
  text-decoration: none;
  font-size: 1.1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.2s, text-shadow 0.2s;
  padding: 0.5rem 0;
}

.nav-link:hover {
  color: var(--color-primary);
  text-shadow: 0 0 10px var(--color-primary);
}

.nav-link.active {
  color: var(--color-primary);
  border-bottom: 2px solid var(--color-primary);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--color-accent);
  margin: 5px 0;
  transition: 0.3s;
}

/* Header Section */
.header-section {
  position: relative;
  width: 100%;
  max-height: 400px;
  overflow: hidden;
}

.header-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.header-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(transparent, rgba(10, 10, 10, 0.9));
}

.header-title {
  font-family: 'PodiumSharp', sans-serif;
  color: var(--color-accent);
  font-size: 1.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* Main Content */
.main-content {
  flex: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
  width: 100%;
}

/* Section Headers */
.section-header {
  font-family: 'PodiumSharp', sans-serif;
  color: var(--color-accent);
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--color-primary);
}

/* Intro Section */
.intro-section {
  text-align: center;
  padding: 2rem;
  background: rgba(10, 10, 10, 0.8);
  border-radius: 8px;
  margin-bottom: 2rem;
}

.intro-text {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--color-text);
  max-width: 800px;
  margin: 0 auto 1.5rem;
}

/* CTA Buttons */
.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn {
  display: inline-block;
  padding: 1rem 2rem;
  font-family: 'VTFRedzone', sans-serif;
  font-size: 1.1rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 4px;
  transition: all 0.3s;
}

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

.cta-btn.primary:hover {
  background: #1de06a;
  box-shadow: 0 0 20px var(--color-primary);
}

.cta-btn.secondary {
  background: transparent;
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
}

.cta-btn.secondary:hover {
  background: var(--color-accent);
  color: var(--color-dark);
}

/* Tactic Cards Grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.tactic-card {
  background: rgba(35, 35, 35, 0.9);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(40, 255, 123, 0.2);
}

.tactic-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(40, 255, 123, 0.2);
}

.card-image {
  width: 100%;
  height: 150px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-muted);
  font-size: 3rem;
}

.card-content {
  padding: 1rem;
}

.card-title {
  font-family: 'PodiumSharp', sans-serif;
  color: var(--color-accent);
  font-size: 1rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.card-meta {
  display: flex;
  gap: 1rem;
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  color: var(--color-muted);
}

.card-rating {
  color: var(--color-primary);
}

/* Footer */
.footer {
  background-color: var(--color-footer);
  padding: 2rem 1rem;
  margin-top: auto;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer-link {
  font-family: 'Oswald', sans-serif;
  color: var(--color-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

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

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

.social-icon {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-muted);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.social-icon:hover {
  background: var(--color-primary);
  color: var(--color-dark);
}

.footer-copyright {
  width: 100%;
  text-align: center;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  color: var(--color-muted);
}

/* Page-specific styles */
.page-content {
  background: rgba(10, 10, 10, 0.8);
  border-radius: 8px;
  padding: 2rem;
}

.tactics-list {
  list-style: none;
}

.tactics-list li {
  padding: 1rem;
  margin-bottom: 0.5rem;
  background: rgba(35, 35, 35, 0.9);
  border-radius: 4px;
  border-left: 4px solid var(--color-primary);
  font-family: 'Oswald', sans-serif;
}

/* Responsive Design */
@media (max-width: 992px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    z-index: 1001;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #0a0a0a;
    flex-direction: column;
    padding: 0;
    gap: 0;
    text-align: center;
    z-index: 1000;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    border-bottom: 2px solid var(--color-primary);
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu li {
    width: 100%;
  }

  .nav-link {
    display: block;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-accent);
    font-size: 1rem;
  }

  .nav-link:hover,
  .nav-link.active {
    background: rgba(40, 255, 123, 0.1);
    color: var(--color-primary);
  }

  .navbar {
    position: relative;
    z-index: 999;
  }

  .nav-container {
    justify-content: flex-end;
  }

  .header-title {
    font-size: 1.4rem;
  }

  .section-header {
    font-size: 1.2rem;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .topbar {
    padding: 0.5rem;
  }

  .topbar-logo {
    height: 24px;
  }

  .cta-btn {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }

  .intro-text {
    font-size: 1rem;
  }
}

/* Filter Section */
.filter-section {
  margin-bottom: 2rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
}

.filter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.filter-form select {
  padding: 0.5rem 1rem;
  background: var(--color-dark);
  border: 1px solid #333;
  color: #fff;
  border-radius: 4px;
  font-family: 'Oswald', sans-serif;
}

/* Tactic Card Enhancements */
.tactic-card {
  text-decoration: none;
  color: inherit;
  display: block;
}

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

.card-badge {
  background: var(--color-primary);
  color: var(--color-dark);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: bold;
}

.card-category {
  font-size: 0.8rem;
  color: var(--color-muted);
  margin-top: 0.5rem;
}

.card-creator {
  font-size: 0.85rem;
  color: var(--color-primary);
  margin-top: 0.25rem;
  font-weight: 500;
}

/* Tactic Detail Page */
.tactic-detail {
  max-width: 900px;
  margin: 0 auto;
}

.tactic-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
}

.tactic-meta span {
  font-family: 'Oswald', sans-serif;
}

.tactic-author {
  color: var(--color-muted);
  margin-bottom: 1.5rem;
}

.tactic-desc {
  line-height: 1.7;
  margin-bottom: 2rem;
}

.tactic-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.gallery-img {
  width: 100%;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s;
}

.gallery-img:hover {
  transform: scale(1.02);
}

.gallery-img.expanded {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 90vw;
  max-height: 90vh;
  z-index: 1000;
  box-shadow: 0 0 50px rgba(0,0,0,0.8);
}

/* Footer Partner */
.footer-partner {
  width: 100%;
  text-align: center;
  margin-top: 1rem;
}

/* Featured Category Block */
.featured-category {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.05) 100%);
  border: 1px solid var(--color-gold);
  border-radius: 8px;
}

.featured-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.featured-link {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}

.featured-link:hover {
  color: var(--color-gold);
}

/* Admin Helper Box */
.admin-helper-box {
  margin-top: 1.5rem;
  padding: 1rem;
  background: rgba(212, 175, 55, 0.1);
  border: 1px dashed var(--color-gold);
  border-radius: 8px;
}

.admin-helper-box h4 {
  color: var(--color-gold);
  margin: 0 0 0.5rem 0;
  font-family: 'Oswald', sans-serif;
}

.admin-helper-box p {
  margin: 0.5rem 0;
  font-size: 0.9rem;
}

.admin-helper-box .cta-btn {
  margin-right: 0.5rem;
  margin-top: 0.5rem;
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10, 10, 10, 0.98);
  border-top: 1px solid var(--color-gold);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  z-index: 9999;
  flex-wrap: wrap;
}

.cookie-banner p {
  margin: 0;
  font-size: 0.9rem;
  color: #ccc;
}

.cookie-banner a {
  color: var(--color-gold);
}

.cookie-buttons {
  display: flex;
  gap: 0.5rem;
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    text-align: center;
  }
}

/* Additional responsive polish */
@media (max-width: 768px) {
  .cards-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .filter-form {
    flex-direction: column;
  }
  
  .filter-form select,
  .filter-form .cta-btn {
    width: 100%;
  }
  
  .tactic-actions {
    flex-direction: column;
  }
  
  .tactic-actions .cta-btn {
    width: 100%;
    text-align: center;
  }
  
  .featured-category {
    flex-direction: column;
    text-align: center;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .cta-buttons .cta-btn {
    width: 100%;
  }
}

/* Card hover improvements */
.tactic-card {
  transition: transform 0.2s, box-shadow 0.2s;
}

.tactic-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

/* Better card image placeholder */
.card-image {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

/* User Menu in Topbar */
.user-menu {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
}

.user-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--color-gold);
}

.user-name {
  color: var(--color-gold);
  font-size: 0.85rem;
  font-family: 'Oswald', sans-serif;
}

.user-menu .nav-link {
  font-size: 0.8rem;
  padding: 0.25rem 0.5rem;
  margin-left: 0.5rem;
}

/* Ad Slots */
.ad-slot {
  background: rgba(30, 30, 30, 0.8);
  border: 1px dashed rgba(255,255,255,0.2);
  text-align: center;
  padding: 0.5rem;
  margin: 0 auto;
}

.ad-leaderboard {
  max-width: 728px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.ad-placeholder {
  color: var(--color-muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ad-infeed {
  max-width: 336px;
  height: 280px;
  margin: 1rem auto;
}

@media (max-width: 768px) {
  .ad-leaderboard {
    max-width: 320px;
    height: 50px;
  }
}

/* Footer Branding */
.footer-branding {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--color-muted);
  flex-wrap: wrap;
}

.footer-db-logo {
  height: 24px;
  opacity: 0.9;
  vertical-align: middle;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--color-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}

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

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 1rem;
}

.cookie-modal {
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 12px;
  max-width: 480px;
  width: 100%;
  padding: 2rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.cookie-modal-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.cookie-modal-logo {
  width: 32px;
  height: 32px;
}

.cookie-modal-header h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  color: var(--color-accent);
  margin: 0;
}

.cookie-modal-text {
  color: var(--color-muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.cookie-toggles {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  cursor: pointer;
}

.toggle-label {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.toggle-label strong {
  color: var(--color-text);
  font-size: 0.95rem;
}

.toggle-label small {
  color: var(--color-muted);
  font-size: 0.75rem;
}

.cookie-toggle input {
  display: none;
}

.toggle-slider {
  width: 44px;
  height: 24px;
  background: #444;
  border-radius: 12px;
  position: relative;
  transition: background 0.2s;
  flex-shrink: 0;
}

.toggle-slider::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: transform 0.2s;
}

.cookie-toggle input:checked + .toggle-slider {
  background: var(--color-primary);
}

.cookie-toggle input:checked + .toggle-slider::after {
  transform: translateX(20px);
}

.toggle-slider.disabled {
  background: var(--color-primary);
  opacity: 0.6;
}

.cookie-modal-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.cookie-modal-actions .cta-btn {
  flex: 1;
  min-width: 120px;
  text-align: center;
  font-size: 0.85rem;
  padding: 0.6rem 1rem;
}

.cookie-modal-link {
  text-align: center;
  margin-top: 1rem;
}

.cookie-modal-link a {
  color: var(--color-muted);
  font-size: 0.8rem;
}

.cookie-modal-link a:hover {
  color: var(--color-accent);
}

@media (max-width: 480px) {
  .cookie-modal {
    padding: 1.5rem;
  }
  
  .cookie-modal-actions {
    flex-direction: column;
  }
  
  .cookie-modal-actions .cta-btn {
    width: 100%;
  }
}

/* Mobile topbar adjustments */
@media (max-width: 768px) {
  .topbar {
    flex-wrap: wrap;
    padding: 0.5rem 1rem;
  }
  
  .topbar-tagline {
    display: none;
  }
  
  .topbar-title {
    font-size: 1.1rem;
  }
  
  .topbar-logo {
    height: 32px;
  }
}

/* Filter row with submit button */
.filter-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.submit-tactic-btn {
  background: linear-gradient(135deg, var(--color-primary) 0%, #1ecc63 100%) !important;
  color: var(--color-dark) !important;
  font-weight: bold;
  padding: 0.75rem 1.5rem !important;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(40, 255, 123, 0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}

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

.submit-icon {
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .filter-row {
    flex-direction: column;
  }
  
  .submit-tactic-btn {
    width: 100%;
    justify-content: center;
  }
}

/* YouTube Section */
.youtube-section {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.yt-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.yt-card {
  display: block;
  text-decoration: none;
  background: rgba(35, 35, 35, 0.9);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid rgba(255, 0, 0, 0.2);
}

.yt-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(255, 0, 0, 0.2);
}

.yt-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}

.yt-title {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  color: var(--color-text);
  padding: 0.75rem;
  margin: 0;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.yt-more {
  text-align: center;
  margin-top: 1.5rem;
}

.yt-more a {
  color: var(--color-primary);
  text-decoration: none;
  font-family: 'Oswald', sans-serif;
  transition: color 0.2s;
}

.yt-more a:hover {
  color: var(--color-accent);
}

@media (max-width: 1200px) {
  .yt-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 992px) {
  .yt-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .yt-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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