/*
Theme Name: Bounce OTT Corporate
Theme URI: https://bouncemultimedia.com
Author: Bounce Multimedia LLC
Author URI: https://bouncemultimedia.com
Description: Corporate OTT streaming theme matching the Bounce Multimedia brand with blue accents and signature textured background.
Version: 2.0
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: bounceott-corporate
Tags: video, ott, corporate, streaming, production
*/

/* ============================================
   CSS VARIABLES - BOUNCE MULTIMEDIA THEME
   ============================================ */
:root {
  /* Brand Colors - Bounce Multimedia Blue Palette */
  --brand-blue: #1E90DC;
  --brand-blue-light: #4AA8E8;
  --brand-blue-dark: #1570B0;
  --brand-blue-glow: rgba(30, 144, 220, 0.4);
  
  /* Secondary Colors */
  --accent-cyan: #00BCD4;
  --accent-teal: #26A69A;
  --accent-orange: #FF6B35;
  
  /* Background Colors */
  --bg-primary: #0a1628;
  --bg-card: rgba(15, 30, 50, 0.85);
  --bg-card-solid: #0f1e32;
  --bg-card-hover: rgba(20, 40, 65, 0.9);
  --bg-overlay: rgba(10, 22, 40, 0.75);
  
  /* Text Colors */
  --text-white: #FFFFFF;
  --text-light: #E0E8F0;
  --text-muted: #8BA3BC;
  --text-subtle: #5A7A9A;
  
  /* Gradients */
  --gradient-blue: linear-gradient(135deg, #1E90DC 0%, #1570B0 100%);
  --gradient-blue-glow: linear-gradient(135deg, rgba(30, 144, 220, 0.3) 0%, rgba(21, 112, 176, 0.1) 100%);
  --gradient-header: linear-gradient(180deg, rgba(10, 22, 40, 0.98) 0%, rgba(10, 22, 40, 0.9) 100%);
  --gradient-card: linear-gradient(145deg, rgba(20, 40, 65, 0.9) 0%, rgba(15, 30, 50, 0.95) 100%);
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.6);
  --shadow-blue: 0 4px 25px rgba(30, 144, 220, 0.3);
  --shadow-blue-glow: 0 0 30px rgba(30, 144, 220, 0.2);
  
  /* Typography */
  --font-display: 'Montserrat', 'Segoe UI', sans-serif;
  --font-body: 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 50%;
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body, html {
  overflow-x: hidden;
  height: auto;
}

body {
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
  
  /* Bounce Multimedia Background Image */
  background-color: #0a1628;
  background-image: url('https://www.bouncemultimedia.com/sites/default/files/background.jpg');
  background-attachment: fixed;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

/* Dark overlay for readability */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(10, 22, 40, 0.85) 0%,
    rgba(10, 22, 40, 0.75) 30%,
    rgba(10, 22, 40, 0.8) 70%,
    rgba(10, 22, 40, 0.9) 100%
  );
  pointer-events: none;
  z-index: 0;
}

/* Subtle blue ambient glow at top */
body::after {
  content: '';
  position: fixed;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 150%;
  height: 100%;
  background: radial-gradient(
    ellipse at center top,
    rgba(30, 144, 220, 0.08) 0%,
    transparent 50%
  );
  pointer-events: none;
  z-index: 0;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.site-header {
  background: var(--gradient-header);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(30, 144, 220, 0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.site-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gradient-blue);
}

.site-header .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: var(--space-lg) var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.site-logo img {
  height: 50px;
  width: auto;
}

.main-nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: var(--space-sm);
  margin: 0;
  padding: 0;
}

.nav-menu > li {
  position: relative;
}

.nav-menu > li > a {
  color: var(--text-light);
  text-decoration: none;
  padding: var(--space-sm) var(--space-lg);
  display: block;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  position: relative;
}

.nav-menu > li > a:hover {
  color: var(--brand-blue-light);
  background: rgba(30, 144, 220, 0.1);
}

.nav-menu > li.current-menu-item > a,
.nav-menu > li.current_page_item > a {
  background: var(--gradient-blue);
  color: var(--text-white);
  font-weight: 600;
  box-shadow: var(--shadow-blue);
}

/* Dropdown Menus */
.nav-menu li .sub-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--bg-card-solid);
  border: 1px solid rgba(30, 144, 220, 0.2);
  border-radius: var(--radius-md);
  padding: var(--space-sm) 0;
  min-width: 240px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translateY(-8px);
  animation: dropdownSlide 200ms ease forwards;
}

@keyframes dropdownSlide {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-menu li:hover > .sub-menu {
  display: block;
}

.nav-menu .sub-menu li a {
  padding: var(--space-sm) var(--space-lg);
  color: var(--text-muted);
  text-decoration: none;
  display: block;
  font-size: 0.875rem;
  transition: all var(--transition-fast);
  border-left: 3px solid transparent;
}

.nav-menu .sub-menu li a:hover {
  color: var(--brand-blue-light);
  background: rgba(30, 144, 220, 0.1);
  border-left-color: var(--brand-blue);
}

/* ============================================
   MAIN CONTENT AREA
   ============================================ */
.site-main {
  max-width: 1400px;
  margin: 0 auto;
  padding: var(--space-xl);
  position: relative;
  z-index: 1;
}

/* ============================================
   SECTION HEADERS - Blue Accent Style
   ============================================ */
.section-header {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--text-white);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin: var(--space-2xl) 0 var(--space-xl);
  padding: var(--space-lg) var(--space-xl);
  position: relative;
  display: flex;
  align-items: center;
  
  /* Glassmorphism card effect */
  background: var(--gradient-card);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(30, 144, 220, 0.2);
  border-left: 4px solid var(--brand-blue);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.section-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(30, 144, 220, 0.1) 0%, transparent 50%);
  border-radius: var(--radius-md);
  pointer-events: none;
}

/* ============================================
   VIDEO GRIDS
   ============================================ */
.video-grid,
.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-lg);
}

/* ============================================
   CARDS - Glassmorphism Design
   ============================================ */
.video-card,
.featured-card {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(30, 144, 220, 0.15);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  transition: all var(--transition-base);
  opacity: 0;
  transform: translateY(20px);
  animation: cardReveal 0.5s ease forwards;
}

@keyframes cardReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Staggered animation delays */
.video-card:nth-child(1), .featured-card:nth-child(1) { animation-delay: 0.05s; }
.video-card:nth-child(2), .featured-card:nth-child(2) { animation-delay: 0.1s; }
.video-card:nth-child(3), .featured-card:nth-child(3) { animation-delay: 0.15s; }
.video-card:nth-child(4), .featured-card:nth-child(4) { animation-delay: 0.2s; }
.video-card:nth-child(5), .featured-card:nth-child(5) { animation-delay: 0.25s; }
.video-card:nth-child(6), .featured-card:nth-child(6) { animation-delay: 0.3s; }

/* Blue glow border on hover */
.video-card::before,
.featured-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 2px;
  background: linear-gradient(135deg, var(--brand-blue) 0%, var(--accent-cyan) 50%, var(--brand-blue-dark) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity var(--transition-base);
  z-index: 1;
  pointer-events: none;
}

.video-card:hover::before,
.featured-card:hover::before {
  opacity: 1;
}

.video-card:hover,
.featured-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-blue), var(--shadow-blue-glow);
}

/* Card Image Container */
.video-card .thumbnail-wrapper,
.featured-card .thumbnail-wrapper,
.video-card > a > img,
.featured-card > a > img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.video-card img,
.featured-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.video-card:hover img,
.featured-card:hover img {
  transform: scale(1.08);
}

/* Play icon overlay */
.featured-video-link {
  display: block;
  color: var(--text-white);
  text-decoration: none;
  position: relative;
}

.featured-video-link::after {
  content: '▶';
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: 64px;
  height: 64px;
  background: var(--gradient-blue);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: white;
  opacity: 0;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-blue);
  z-index: 5;
}

.video-card:hover .featured-video-link::after,
.featured-card:hover .featured-video-link::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.featured-video-link h2 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin: var(--space-lg) 0 var(--space-sm);
  padding: 0 var(--space-lg);
  line-height: 1.4;
  color: var(--text-white);
  transition: color var(--transition-fast);
}

.video-card:hover .featured-video-link h2,
.featured-card:hover .featured-video-link h2 {
  color: var(--brand-blue-light);
}

.featured-video-link p {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0 var(--space-lg) var(--space-lg);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ============================================
   BADGES - Blue Style
   ============================================ */
.badge-container {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  display: flex;
  gap: var(--space-sm);
  z-index: 10;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: var(--shadow-sm);
}

.badge.live {
  background: linear-gradient(135deg, #E53935 0%, #C62828 100%);
  color: white;
  animation: livePulse 2s ease-in-out infinite;
}

@keyframes livePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(229, 57, 53, 0.6); }
  50% { box-shadow: 0 0 0 8px rgba(229, 57, 53, 0); }
}

.badge.live .dot {
  width: 6px;
  height: 6px;
  background: white;
  border-radius: var(--radius-full);
  animation: liveBlink 1s ease-in-out infinite;
}

@keyframes liveBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.badge.ppv {
  background: var(--gradient-blue);
  color: white;
}

.badge.featured {
  background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-teal) 100%);
  color: white;
}

/* ============================================
   NEWS SECTION
   ============================================ */
.news-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-grid.visible {
  opacity: 1;
  transform: translateX(0);
}

.news-card {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(30, 144, 220, 0.15);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
}

.news-card:hover {
  border-color: var(--brand-blue);
  box-shadow: var(--shadow-blue);
  transform: translateX(8px);
}

.news-link {
  display: flex;
  text-decoration: none;
  color: var(--text-white);
}

.news-thumbnail {
  flex-shrink: 0;
  width: 220px;
  overflow: hidden;
  position: relative;
}

.news-thumbnail::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 3px;
  height: 100%;
  background: var(--gradient-blue);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.news-card:hover .news-thumbnail::after {
  opacity: 1;
}

.news-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.news-content {
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.news-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 var(--space-sm);
  line-height: 1.4;
  transition: color var(--transition-fast);
}

.news-card:hover .news-title {
  color: var(--brand-blue-light);
}

.news-excerpt {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* ============================================
   SINGLE VIDEO PAGE
   ============================================ */
.single-video-page {
  max-width: 1000px;
  margin: 0 auto;
}

.video-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 600;
  margin-bottom: var(--space-lg);
  line-height: 1.3;
  color: var(--text-white);
}

.video-player-wrapper {
  margin-bottom: var(--space-xl);
}

.video-overlay-container {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(30, 144, 220, 0.2);
}

.video-overlay-container video {
  width: 100%;
  display: block;
  background: #000;
}

#video-start-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 40, 0.8);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
}

#start-button {
  background: var(--gradient-blue);
  color: white;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  padding: var(--space-lg) var(--space-2xl);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-blue);
}

#start-button:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-blue), var(--shadow-blue-glow);
}

#mute-button {
  position: absolute;
  bottom: var(--space-lg);
  left: var(--space-lg);
  background: rgba(10, 22, 40, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(30, 144, 220, 0.3);
  color: white;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
}

#mute-button:hover {
  background: var(--brand-blue);
  border-color: var(--brand-blue);
}

/* Video Meta */
.video-meta {
  margin: var(--space-xl) 0;
}

.category-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.tag {
  background: var(--bg-card);
  border: 1px solid rgba(30, 144, 220, 0.2);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.tag:hover {
  background: rgba(30, 144, 220, 0.15);
  border-color: var(--brand-blue);
  color: var(--brand-blue-light);
}

.price {
  display: inline-block;
  background: var(--gradient-blue);
  color: white;
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  box-shadow: var(--shadow-blue);
}

.video-description {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(30, 144, 220, 0.15);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  line-height: 1.8;
  color: var(--text-light);
}

/* ============================================
   TEASER/LOCKED CONTENT
   ============================================ */
.teaser-preview-container {
  position: relative;
  margin: var(--space-xl) 0;
}

.teaser-thumbnail-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(30, 144, 220, 0.2);
}

.teaser-poster {
  width: 100%;
  display: block;
  filter: grayscale(40%) brightness(0.6);
  transition: filter var(--transition-slow);
}

.teaser-thumbnail-wrapper:hover .teaser-poster {
  filter: grayscale(20%) brightness(0.7);
}

.teaser-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, 
    transparent 0%, 
    rgba(10, 22, 40, 0.8) 60%,
    rgba(10, 22, 40, 0.95) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

.teaser-message {
  text-align: center;
  padding: var(--space-xl);
}

.teaser-message p {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: var(--space-lg);
  color: var(--text-light);
}

.watch-trailer-button,
.unlock-button {
  padding: var(--space-md) var(--space-xl);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  margin: var(--space-sm);
  transition: all var(--transition-base);
}

.watch-trailer-button {
  background: rgba(30, 144, 220, 0.2);
  color: var(--text-light);
  border: 1px solid rgba(30, 144, 220, 0.4);
}

.watch-trailer-button:hover {
  background: rgba(30, 144, 220, 0.3);
  border-color: var(--brand-blue);
}

.unlock-button {
  background: var(--gradient-blue);
  color: white;
  box-shadow: var(--shadow-blue);
}

.unlock-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue), var(--shadow-blue-glow);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: linear-gradient(180deg, rgba(15, 30, 50, 0.9) 0%, rgba(10, 22, 40, 0.98) 100%);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(30, 144, 220, 0.2);
  padding: var(--space-2xl) var(--space-xl);
  margin-top: var(--space-3xl);
  position: relative;
  z-index: 1;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gradient-blue);
}

.site-footer .container {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.site-footer p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: var(--space-sm) 0;
}

.site-footer a {
  color: var(--brand-blue-light);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.site-footer a:hover {
  color: var(--brand-blue);
  text-shadow: 0 0 10px var(--brand-blue-glow);
}

.site-credit {
  opacity: 0.7;
  font-size: 0.85rem;
}

/* ============================================
   WOOCOMMERCE STYLING
   ============================================ */
.woocommerce-account {
  background: transparent;
  color: var(--text-light);
  font-family: var(--font-body);
  padding: var(--space-xl);
}

.woocommerce-MyAccount-navigation {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(30, 144, 220, 0.15);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  width: 280px;
}

.woocommerce-MyAccount-navigation ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.woocommerce-MyAccount-navigation li {
  margin-bottom: var(--space-xs);
}

.woocommerce-MyAccount-navigation a {
  display: block;
  padding: var(--space-md) var(--space-lg);
  color: var(--text-muted);
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  font-weight: 500;
  border-left: 3px solid transparent;
}

.woocommerce-MyAccount-navigation li.is-active a,
.woocommerce-MyAccount-navigation a:hover {
  background: rgba(30, 144, 220, 0.15);
  color: var(--brand-blue-light);
  border-left-color: var(--brand-blue);
}

.woocommerce-MyAccount-content {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(30, 144, 220, 0.15);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
}

.woocommerce-orders-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(10, 22, 40, 0.5);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.woocommerce-orders-table th,
.woocommerce-orders-table td {
  padding: var(--space-md) var(--space-lg);
  border-bottom: 1px solid rgba(30, 144, 220, 0.1);
  text-align: left;
}

.woocommerce-orders-table thead {
  background: rgba(30, 144, 220, 0.1);
}

.woocommerce-orders-table th {
  color: var(--brand-blue-light);
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
}

.woocommerce-orders-table a {
  color: var(--brand-blue-light);
  text-decoration: none;
}

.woocommerce-orders-table a:hover {
  color: var(--brand-blue);
}

.woocommerce-button.button {
  background: var(--gradient-blue);
  color: white;
  border: none;
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.woocommerce-button.button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media screen and (max-width: 1024px) {
  .site-main {
    padding: var(--space-lg);
  }
  
  .video-grid,
  .featured-grid {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: var(--space-lg);
  }
}

@media screen and (max-width: 768px) {
  .site-header .container {
    flex-direction: column;
    gap: var(--space-md);
    padding: var(--space-md);
  }
  
  .nav-menu {
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-xs);
  }
  
  .nav-menu > li > a {
    padding: var(--space-sm) var(--space-md);
    font-size: 0.85rem;
  }
  
  .section-header {
    font-size: 1.25rem;
    letter-spacing: 2px;
    padding: var(--space-md) var(--space-lg);
  }
  
  .news-link {
    flex-direction: column;
  }
  
  .news-thumbnail {
    width: 100%;
    height: 180px;
  }
  
  .video-grid,
  .featured-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  }
  
  .woocommerce-MyAccount-navigation {
    width: 100%;
    margin-bottom: var(--space-lg);
  }
}

@media screen and (max-width: 480px) {
  .site-main {
    padding: var(--space-md);
  }
  
  .video-grid,
  .featured-grid {
    grid-template-columns: 1fr;
  }
  
  .featured-video-link h2 {
    font-size: 1rem;
  }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.full-width {
  width: 100%;
}

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

.hidden {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Blue text utility */
.text-blue {
  color: var(--brand-blue-light);
}

/* Glow effect utility */
.glow-on-hover:hover {
  box-shadow: var(--shadow-blue-glow);
}
