﻿/* ============================================
   CSS VARIABLES - PREMIUM DESIGN SYSTEM
   ============================================ */
:root {
  /* Dark Theme Color Palette */
  --bg-primary: #0a0e27;
  --bg-secondary: #0f172a;
  --bg-tertiary: #1e293b;
  
  /* Accent Colors - Glowing Orbs */
  --orb-blue: #3b82f6;
  --orb-cyan: #06b6d4;
  --orb-purple: #8b5cf6;
  --orb-pink: #ec4899;
  --orb-indigo: #6366f1;
  
  /* UI Colors */
  --primary: #6366f1;
  --primary-dark: #4f46e5;
  --primary-light: #818cf8;
  --secondary: #8b5cf6;
  --secondary-dark: #7c3aed;
  --accent: #ec4899;
  --accent-dark: #db2777;
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  --info: #06b6d4;
  
  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  
  /* Shadows & Effects */
  --card-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
  --card-shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.4), 0 10px 10px -5px rgba(0, 0, 0, 0.2);
  --glow-blue: 0 0 20px rgba(59, 130, 246, 0.5), 0 0 40px rgba(59, 130, 246, 0.3);
  --glow-cyan: 0 0 20px rgba(6, 182, 212, 0.5), 0 0 40px rgba(6, 182, 212, 0.3);
  --glow-purple: 0 0 20px rgba(139, 92, 246, 0.5), 0 0 40px rgba(139, 92, 246, 0.3);
  
  /* Text Colors - Optimized for Dark Background */
  --text-primary: #ffffff;
  --text-secondary: #f1f5f9;
  --text-tertiary: #e2e8f0;
  --text-muted: #cbd5e1;
  --text-accent: #c7d2fe;
  --text-glow: rgba(255, 255, 255, 0.95);
  
  /* Text Shadows for Better Readability */
  --text-shadow-soft: 0 2px 8px rgba(0, 0, 0, 0.5), 0 1px 3px rgba(0, 0, 0, 0.3);
  --text-shadow-glow: 0 0 10px rgba(165, 180, 252, 0.3), 0 2px 8px rgba(0, 0, 0, 0.5);
  --text-shadow-strong: 0 2px 12px rgba(0, 0, 0, 0.7), 0 1px 4px rgba(0, 0, 0, 0.5);
  
  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s ease-out;
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  scroll-behavior: smooth;
}

/* Skip to main content link (hidden by default, visible on focus) */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--primary);
  color: white;
  padding: 12px 20px;
  text-decoration: none;
  z-index: 10000;
  font-weight: 600;
  border-radius: 0 0 8px 0;
  transition: top 0.3s ease;
}

.skip-link:focus {
  top: 0;
  outline: 3px solid var(--primary-light);
  outline-offset: 2px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: var(--bg-primary);
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
  min-height: 100vh;
  padding: 20px;
  line-height: 1.6;
  color: var(--text-primary);
  text-shadow: var(--text-shadow-soft);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow-x: hidden;
  word-wrap: break-word;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

/* Animated Background Orbs */
.animated-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.6;
  animation: float 20s infinite ease-in-out;
}

.orb-1 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--orb-blue), transparent);
  top: 10%;
  left: 10%;
  animation-delay: 0s;
  animation-duration: 25s;
}

.orb-2 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, var(--orb-cyan), transparent);
  top: 60%;
  left: 80%;
  animation-delay: -5s;
  animation-duration: 30s;
}

.orb-3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, var(--orb-purple), transparent);
  top: 30%;
  right: 15%;
  animation-delay: -10s;
  animation-duration: 35s;
}

.orb-4 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--orb-pink), transparent);
  bottom: 20%;
  left: 20%;
  animation-delay: -15s;
  animation-duration: 28s;
}

.orb-5 {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, var(--orb-indigo), transparent);
  top: 70%;
  left: 50%;
  animation-delay: -8s;
  animation-duration: 32s;
}

.orb-6 {
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, var(--orb-cyan), transparent);
  top: 15%;
  right: 30%;
  animation-delay: -12s;
  animation-duration: 27s;
}

.orb-7 {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, var(--orb-blue), transparent);
  bottom: 10%;
  right: 10%;
  animation-delay: -18s;
  animation-duration: 40s;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(50px, -50px) scale(1.1);
  }
  50% {
    transform: translate(-30px, 30px) scale(0.9);
  }
  75% {
    transform: translate(30px, 50px) scale(1.05);
  }
}

.main-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  width: 100%;
  box-sizing: border-box;
}

/* ============================================
   HEADER SECTION
   ============================================ */
.header {
  text-align: center;
  margin-bottom: 40px;
  animation: fadeInDown 0.8s ease-out;
  position: relative;
}

.header h1 {
  color: var(--text-glow);
  font-size: clamp(2em, 5vw, 3em);
  margin-bottom: 12px;
  text-shadow: 
    0 0 15px rgba(165, 180, 252, 0.6),
    0 0 30px rgba(139, 92, 246, 0.4),
    0 0 45px rgba(99, 102, 241, 0.3),
    0 4px 12px rgba(0, 0, 0, 0.6);
  font-weight: 700;
  background: linear-gradient(135deg, #ffffff 0%, #c7d2fe 50%, #a5b4fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: glow 3s ease-in-out infinite alternate;
  filter: brightness(1.1);
}

.header .subtitle {
  color: var(--text-secondary);
  font-size: clamp(1em, 2.5vw, 1.3em);
  margin-bottom: 24px;
  font-weight: 400;
  text-shadow: var(--text-shadow-soft);
  letter-spacing: 0.3px;
}

@keyframes glow {
  from {
    filter: brightness(1);
  }
  to {
    filter: brightness(1.2);
  }
}


/* ============================================
   STATUS BANNER - GLASSMORPHISM
   ============================================ */
.status-banner {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 24px;
  margin-bottom: 30px;
  box-shadow: var(--glass-shadow);
  display: flex;
  align-items: center;
  gap: 20px;
  animation: fadeInUp 0.8s ease-out;
  border-left: 4px solid var(--primary);
  position: relative;
  overflow: visible;
  min-height: 80px;
}

.status-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.status-icon {
  font-size: 2.5em;
  flex-shrink: 0;
  animation: pulse 2s infinite;
}

.status-content {
  flex: 1;
  min-width: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.status-content h3 {
  margin-bottom: 6px;
  color: var(--text-primary);
  font-size: 1.2em;
  font-weight: 600;
  text-shadow: var(--text-shadow-soft);
  word-wrap: break-word;
  overflow-wrap: break-word;
  line-height: 1.4;
}

.status-content p {
  color: var(--text-secondary);
  font-size: 0.95em;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  word-wrap: break-word;
  overflow-wrap: break-word;
  line-height: 1.5;
  margin: 0;
}

/* ============================================
   DASHBOARD LINKS SECTION - GLASSMORPHISM
   ============================================ */
.dashboard-section {
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: var(--glass-shadow);
  animation: fadeInUp 1s ease-out;
  position: relative;
  overflow: hidden;
}

.dashboard-section::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
  pointer-events: none;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.dashboard-section h2 {
  color: var(--text-primary);
  font-size: 1.8em;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-shadow: var(--text-shadow-glow);
  position: relative;
  z-index: 1;
  font-weight: 700;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 20px;
  width: 100%;
  box-sizing: border-box;
}

.dashboard-card {
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 24px;
  transition: var(--transition-slow);
  position: relative;
  overflow: hidden;
  box-shadow: var(--glass-shadow);
  display: flex;
  flex-direction: column;
  min-height: 400px;
}

.dashboard-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.dashboard-card:hover {
  border-color: var(--primary);
  transform: translateY(-6px) scale(1.02);
  box-shadow: 
    0 8px 16px rgba(0, 0, 0, 0.3),
    var(--glow-blue);
}

.dashboard-card:hover::before {
  opacity: 1;
}

.dashboard-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dashboard-card-icon {
  font-size: 2em;
}

.dashboard-card-title {
  font-size: 1.2em;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
  position: relative;
  z-index: 1;
  text-shadow: var(--text-shadow-soft);
}

.dashboard-card-description {
  color: var(--text-secondary);
  font-size: 0.95em;
  margin-bottom: 18px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
  flex-grow: 0;
}

.dashboard-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  padding: 12px 20px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95em;
  transition: var(--transition);
  margin-top: 10px;
  box-shadow: 
    0 4px 6px rgba(99, 102, 241, 0.3),
    var(--glow-purple);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.dashboard-link::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.dashboard-link:hover::before {
  width: 300px;
  height: 300px;
}

.dashboard-link:hover {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary) 100%);
  transform: translateX(4px) translateY(-2px) scale(1.05);
  box-shadow: 
    0 8px 16px rgba(99, 102, 241, 0.4),
    var(--glow-purple);
}

.dashboard-link:visited {
  color: white;
}

.dashboard-steps {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
  flex-grow: 1;
}

.dashboard-steps ol {
  margin-left: 20px;
  margin-top: 10px;
  color: var(--text-secondary);
  font-size: 0.9em;
  position: relative;
  z-index: 1;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

.dashboard-steps li {
  margin-bottom: 10px;
  line-height: 1.7;
  color: var(--text-secondary);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

.dashboard-steps strong {
  display: block;
  margin-bottom: 12px;
  color: var(--text-primary);
  text-shadow: var(--text-shadow-soft);
  font-weight: 600;
  font-size: 1em;
}

.dashboard-steps code {
  background: rgba(99, 102, 241, 0.25);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  font-size: 0.85em;
  color: var(--text-accent);
  border: 1px solid rgba(99, 102, 241, 0.4);
  text-shadow: 0 0 8px rgba(165, 180, 252, 0.3);
  font-weight: 500;
}

/* ============================================
   QUICK START GUIDE - GLASSMORPHISM
   ============================================ */
.quick-start {
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid var(--glass-border);
  border-left: 4px solid var(--primary);
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 30px;
  animation: fadeInUp 0.9s ease-out;
  box-shadow: var(--glass-shadow);
  position: relative;
  overflow: hidden;
}

.quick-start::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
  animation: rotate 25s linear infinite;
  pointer-events: none;
}

.quick-start h3 {
  color: var(--text-primary);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5em;
  font-weight: 700;
  text-shadow: var(--text-shadow-glow);
  position: relative;
  z-index: 1;
}

.step {
  display: flex;
  gap: 18px;
  margin-bottom: 18px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  border-left: 4px solid var(--primary);
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.step:hover {
  box-shadow: 
    0 8px 16px rgba(0, 0, 0, 0.3),
    var(--glow-blue);
  transform: translateX(4px);
  border-left-color: var(--primary-light);
}

.step-number {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
  font-size: 1.2em;
  box-shadow: 0 4px 6px rgba(99, 102, 241, 0.3);
}

.step-content h4 {
  margin-bottom: 6px;
  color: var(--text-primary);
  font-size: 1.1em;
  text-shadow: var(--text-shadow-soft);
  font-weight: 600;
}

.step-content p {
  color: var(--text-secondary);
  font-size: 0.95em;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  line-height: 1.6;
}

/* General link styles for all content areas */
.card a,
.dashboard-card a,
.quick-start a,
.step-content a,
.dashboard-steps a,
.main-container a:not(.btn):not(.dashboard-link):not(.back-button):not(.copy-btn) {
  color: #60a5fa;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
}

.card a:hover,
.dashboard-card a:hover,
.quick-start a:hover,
.step-content a:hover,
.dashboard-steps a:hover,
.main-container a:not(.btn):not(.dashboard-link):not(.back-button):not(.copy-btn):hover {
  color: #93c5fd;
  text-decoration: underline;
}

/* ============================================
   MAIN CONTENT GRID
   ============================================ */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 24px;
  margin-bottom: 30px;
  width: 100%;
  box-sizing: border-box;
}

.card {
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--glass-shadow);
  transition: var(--transition-slow);
  animation: fadeInUp 1s ease-out;
  position: relative;
  overflow: hidden;
}

.card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
  animation: rotate 30s linear infinite;
  pointer-events: none;
}

.card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 
    var(--card-shadow-hover),
    var(--glow-purple);
  border-color: rgba(139, 92, 246, 0.3);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 2px solid #f0f0f0;
}

.card-header h2 {
  color: var(--text-primary);
  font-size: 1.5em;
  margin: 0;
  font-weight: 600;
  text-shadow: var(--text-shadow-soft);
  position: relative;
  z-index: 1;
}

.card-header .icon {
  font-size: 1.8em;
}

/* ============================================
   BUTTONS
   ============================================ */
.button-group {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.btn {
  padding: 16px 24px;
  border: none;
  border-radius: 10px;
  font-size: 1em;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:active::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, #ec4899 0%, #f472b6 100%);
  color: white;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(236, 72, 153, 0.4);
}

.btn-secondary {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  color: white;
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(99, 102, 241, 0.4);
}

.btn-info {
  background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
  color: white;
}

.btn-info:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(6, 182, 212, 0.4);
}

.btn-description {
  font-size: 0.85em;
  opacity: 0.95;
  font-weight: 400;
}

/* ============================================
   INFO SECTIONS
   ============================================ */
.info-section {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 4px solid var(--primary);
  padding: 20px;
  border-radius: 16px;
  margin-top: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
}

.info-section h3 {
  color: var(--text-primary);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1em;
  text-shadow: var(--text-shadow-soft);
  font-weight: 600;
}

.info-section p {
  color: var(--text-secondary);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
  margin-bottom: 12px;
}

.info-section ul, .info-section ol {
  margin-left: 20px;
  color: var(--text-secondary);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

.info-section li {
  margin-bottom: 8px;
  line-height: 1.7;
}

.info-section code {
  background: rgba(99, 102, 241, 0.25);
  padding: 3px 7px;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  font-size: 0.9em;
  color: var(--text-accent);
  border: 1px solid rgba(99, 102, 241, 0.4);
  text-shadow: 0 0 8px rgba(165, 180, 252, 0.3);
  font-weight: 500;
}

.info-section a {
  color: #60a5fa;
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.info-section a:hover {
  color: #93c5fd;
  text-decoration: underline;
}

/* ============================================
   EVENT DETAILS
   ============================================ */
.event-details {
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(99, 102, 241, 0.3);
  padding: 18px;
  border-radius: 10px;
  margin-top: 18px;
  font-family: 'Courier New', monospace;
  font-size: 0.85em;
  overflow-x: auto;
  overflow-y: hidden;
  color: var(--text-tertiary);
  animation: slideDown 0.3s ease-out;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.7);
  -webkit-overflow-scrolling: touch;
  word-break: break-word;
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
}

.event-details pre {
  max-width: 100%;
  overflow-x: auto;
  word-wrap: break-word;
  word-break: break-all;
  white-space: pre-wrap;
}

.event-details strong {
  color: var(--text-primary);
  display: block;
  margin-bottom: 10px;
  text-shadow: var(--text-shadow-soft);
  font-weight: 600;
}

.event-details pre {
  margin: 0;
  color: var(--text-tertiary);
  white-space: pre-wrap;
  word-wrap: break-word;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.7);
  line-height: 1.6;
}

/* ============================================
   COLLAPSIBLE SECTIONS
   ============================================ */
.collapsible {
  margin-top: 20px;
}

.collapsible-header {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
  user-select: none;
}

.collapsible-header:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary);
  box-shadow: var(--glow-blue);
}

.collapsible-header h3 {
  margin: 0;
  font-size: 1.2em;
  color: var(--text-primary);
  text-shadow: var(--text-shadow-soft);
  font-weight: 600;
}

.collapsible-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.collapsible-content.active {
  max-height: 2000px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: none;
  border-radius: 0 0 12px 12px;
}

.collapsible-content a {
  color: #60a5fa;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
}

.collapsible-content a:hover {
  color: #93c5fd;
  text-decoration: underline;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes slideDown {
  from {
    opacity: 0;
    max-height: 0;
  }
  to {
    opacity: 1;
    max-height: 500px;
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

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

/* Large Screens (1920px and above) */
@media (min-width: 1920px) {
  body {
    padding: 40px;
    font-size: 18px;
  }

  .main-container {
    max-width: 1800px;
    padding: 30px;
  }

  .header {
    margin-bottom: 50px;
  }

  .header h1 {
    font-size: 3.5em;
    margin-bottom: 16px;
  }

  .header .subtitle {
    font-size: 1.5em;
    margin-bottom: 30px;
  }

  .status-banner {
    padding: 32px;
    border-radius: 24px;
    margin-bottom: 40px;
  }

  .status-icon {
    font-size: 3em;
  }

  .status-content h3 {
    font-size: 1.4em;
    margin-bottom: 8px;
  }

  .status-content p {
    font-size: 1.1em;
  }

  .dashboard-section {
    padding: 40px;
    border-radius: 28px;
    margin-bottom: 40px;
  }

  .dashboard-section h2 {
    font-size: 2.2em;
    margin-bottom: 30px;
  }

  .dashboard-grid {
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 30px;
    margin-top: 30px;
  }

  .dashboard-card {
    padding: 32px;
    border-radius: 24px;
    min-height: 450px;
  }

  .dashboard-card-header {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .dashboard-card-icon {
    font-size: 2.4em;
  }

  .dashboard-card-title {
    font-size: 1.4em;
  }

  .dashboard-card-description {
    font-size: 1.1em;
    margin-bottom: 24px;
    line-height: 1.8;
  }

  .dashboard-link {
    padding: 16px 28px;
    font-size: 1.1em;
    border-radius: 14px;
    margin-top: 16px;
  }

  .dashboard-steps {
    margin-top: 24px;
    padding-top: 24px;
  }

  .dashboard-steps strong {
    font-size: 1.2em;
    margin-bottom: 16px;
  }

  .dashboard-steps ol {
    font-size: 1.05em;
    line-height: 1.8;
  }

  .dashboard-steps li {
    margin-bottom: 14px;
  }

  .dashboard-steps code {
    font-size: 0.95em;
    padding: 3px 8px;
  }

  .quick-start {
    padding: 40px;
    border-radius: 24px;
    margin-bottom: 40px;
  }

  .quick-start h3 {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .step {
    padding: 28px;
    border-radius: 20px;
    margin-bottom: 20px;
    gap: 20px;
  }

  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.4em;
  }

  .step-content h4 {
    font-size: 1.3em;
    margin-bottom: 10px;
  }

  .step-content p {
    font-size: 1.1em;
    line-height: 1.7;
  }

  .grid {
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 32px;
    margin-bottom: 40px;
  }

  .card {
    padding: 36px;
    border-radius: 24px;
  }

  .card-header {
    margin-bottom: 24px;
    padding-bottom: 24px;
  }

  .card-header h2 {
    font-size: 1.8em;
  }

  .card-header .icon {
    font-size: 2.2em;
  }

  .button-group {
    gap: 18px;
  }

  .btn {
    padding: 20px 32px;
    font-size: 1.1em;
    border-radius: 12px;
  }

  .btn-description {
    font-size: 0.95em;
  }

  .info-section {
    padding: 28px;
    border-radius: 20px;
    margin-top: 24px;
  }

  .info-section h3 {
    font-size: 1.3em;
    margin-bottom: 16px;
  }

  .info-section p {
    font-size: 1.1em;
    margin-bottom: 16px;
  }

  .info-section ul, .info-section ol {
    font-size: 1.05em;
    margin-left: 28px;
  }

  .info-section li {
    margin-bottom: 12px;
    line-height: 1.8;
  }

  .info-section code {
    font-size: 0.95em;
    padding: 4px 9px;
  }

  .event-details {
    padding: 24px;
    border-radius: 14px;
    margin-top: 24px;
    font-size: 0.95em;
  }

  .event-details strong {
    font-size: 1.1em;
    margin-bottom: 14px;
  }

  .event-details pre {
    font-size: 0.9em;
    line-height: 1.7;
  }

  .click-id-item {
    padding: 20px;
    border-radius: 16px;
    gap: 16px;
  }

  .click-id-badge {
    padding: 8px 16px;
    font-size: 0.95em;
    min-width: 80px;
  }

  .click-id-value {
    font-size: 1em;
    padding: 0 14px;
  }

  .copy-btn {
    padding: 10px 20px;
    font-size: 0.95em;
  }
}

/* Extra Large Screens (2560px and above - 4K, Ultra-wide) */
@media (min-width: 2560px) {
  body {
    padding: 60px;
    font-size: 20px;
  }

  .main-container {
    max-width: 2400px;
    padding: 50px;
  }

  .header {
    margin-bottom: 60px;
  }

  .header h1 {
    font-size: 4em;
    margin-bottom: 20px;
  }

  .header .subtitle {
    font-size: 1.7em;
    margin-bottom: 40px;
  }

  .status-banner {
    padding: 40px;
    border-radius: 28px;
    margin-bottom: 50px;
  }

  .status-icon {
    font-size: 3.5em;
  }

  .status-content h3 {
    font-size: 1.6em;
  }

  .status-content p {
    font-size: 1.2em;
  }

  .dashboard-section {
    padding: 50px;
    border-radius: 32px;
    margin-bottom: 50px;
  }

  .dashboard-section h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
  }

  .dashboard-grid {
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    gap: 40px;
    margin-top: 40px;
  }

  .dashboard-card {
    padding: 40px;
    border-radius: 28px;
    min-height: 500px;
  }

  .dashboard-card-icon {
    font-size: 2.8em;
  }

  .dashboard-card-title {
    font-size: 1.6em;
  }

  .dashboard-card-description {
    font-size: 1.2em;
    margin-bottom: 28px;
  }

  .dashboard-link {
    padding: 18px 32px;
    font-size: 1.2em;
  }

  .dashboard-steps strong {
    font-size: 1.3em;
  }

  .dashboard-steps ol {
    font-size: 1.1em;
  }

  .quick-start {
    padding: 50px;
    border-radius: 28px;
    margin-bottom: 50px;
  }

  .quick-start h3 {
    font-size: 2em;
    margin-bottom: 40px;
  }

  .step {
    padding: 36px;
    border-radius: 24px;
    margin-bottom: 24px;
  }

  .step-number {
    width: 60px;
    height: 60px;
    font-size: 1.6em;
  }

  .step-content h4 {
    font-size: 1.5em;
  }

  .step-content p {
    font-size: 1.2em;
  }

  .grid {
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
  }

  .card {
    padding: 44px;
    border-radius: 28px;
  }

  .card-header h2 {
    font-size: 2em;
  }

  .card-header .icon {
    font-size: 2.5em;
  }

  .btn {
    padding: 24px 40px;
    font-size: 1.2em;
    border-radius: 14px;
  }

  .info-section {
    padding: 36px;
    border-radius: 24px;
  }

  .info-section h3 {
    font-size: 1.5em;
  }

  .info-section p {
    font-size: 1.2em;
  }

  .info-section ul, .info-section ol {
    font-size: 1.1em;
  }
}

/* Large Laptops and Desktops (1440px - 1919px) */
@media (min-width: 1440px) and (max-width: 1919px) {
  body {
    padding: 30px;
    font-size: 17px;
  }

  .main-container {
    max-width: 1600px;
    padding: 25px;
  }

  .header h1 {
    font-size: 3.2em;
  }

  .header .subtitle {
    font-size: 1.4em;
  }

  .dashboard-grid {
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 28px;
  }

  .dashboard-card {
    padding: 28px;
    min-height: 420px;
  }

  .grid {
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    gap: 28px;
  }

  .card {
    padding: 32px;
  }

  .quick-start {
    padding: 35px;
  }

  .step {
    padding: 24px;
  }
}

@media (max-width: 768px) {
  html {
    overflow-x: hidden;
    width: 100%;
  }

  body {
    padding: 10px;
    font-size: 15px;
    overflow-x: hidden;
    width: 100%;
    position: relative;
  }

  .main-container {
    padding: 10px;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }

  * {
    max-width: 100%;
    box-sizing: border-box;
  }

  img, video, iframe, embed, object {
    max-width: 100%;
    height: auto;
    display: block;
  }

  table {
    width: 100%;
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  pre, code {
    max-width: 100%;
    overflow-x: auto;
    word-wrap: break-word;
    white-space: pre-wrap;
    word-break: break-all;
  }

  .dashboard-grid,
  .grid {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
  }

  .dashboard-section,
  .card,
  .quick-start,
  .status-banner,
  .info-section,
  .collapsible {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
  }

  .button-group {
    width: 100%;
    max-width: 100%;
  }

  .btn {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .dashboard-link {
    max-width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
  }

  .click-id-item {
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .click-id-value {
    max-width: 100%;
    word-break: break-all;
    overflow-wrap: break-word;
  }

  .grid, .dashboard-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .header h1 {
    font-size: 1.8em;
  }

  .header .subtitle {
    font-size: 1em;
  }

  .status-banner {
    flex-direction: column;
    text-align: center;
    padding: 16px;
    min-height: auto;
    gap: 12px;
  }

  .status-icon {
    font-size: 2em;
  }
  
  .status-content {
    width: 100%;
  }
  
  .status-content h3 {
    font-size: 1.1em;
  }

  .status-content p {
    font-size: 0.9em;
  }

  .dashboard-section {
    padding: 20px;
  }

  .dashboard-section h2 {
    font-size: 1.5em;
  }

  .dashboard-card {
    padding: 16px;
    min-height: auto;
  }

  .dashboard-card-title {
    font-size: 1.1em;
  }

  .dashboard-card-description {
    font-size: 0.9em;
  }

  .quick-start {
    padding: 20px;
  }

  .quick-start h3 {
    font-size: 1.3em;
  }

  .step {
    flex-direction: column;
    gap: 12px;
    padding: 16px;
  }

  .step-number {
    width: 36px;
    height: 36px;
    font-size: 1.1em;
  }

  .card {
    padding: 20px;
  }

  .card-header h2 {
    font-size: 1.3em;
  }

  .button-group {
    gap: 12px;
  }

  .btn {
    padding: 14px 20px;
    font-size: 0.95em;
  }

  .info-section {
    padding: 16px;
  }
}

@media (max-width: 480px) {
  html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
  }

  body {
    padding: 8px;
    font-size: 14px;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
  }

  .main-container {
    padding: 8px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  * {
    max-width: 100%;
    box-sizing: border-box;
  }

  .header {
    margin-bottom: 24px;
  }

  .header h1 {
    font-size: 1.4em;
    margin-bottom: 8px;
  }

  .header .subtitle {
    font-size: 0.9em;
    margin-bottom: 16px;
  }

  .status-banner {
    padding: 12px;
    gap: 10px;
    border-radius: 16px;
  }

  .status-icon {
    font-size: 1.8em;
  }

  .status-content h3 {
    font-size: 1em;
    margin-bottom: 4px;
  }

  .status-content p {
    font-size: 0.85em;
  }

  .dashboard-section {
    padding: 12px;
    border-radius: 16px;
  }

  .dashboard-section h2 {
    font-size: 1.3em;
    margin-bottom: 16px;
  }

  .dashboard-card {
    padding: 12px;
    border-radius: 16px;
    min-height: auto;
  }

  .dashboard-card-header {
    margin-bottom: 12px;
    padding-bottom: 12px;
    gap: 8px;
  }

  .dashboard-card-icon {
    font-size: 1.6em;
  }

  .dashboard-card-title {
    font-size: 1em;
  }

  .dashboard-card-description {
    font-size: 0.85em;
    margin-bottom: 12px;
    line-height: 1.6;
  }

  .dashboard-link {
    padding: 10px 16px;
    font-size: 0.9em;
    border-radius: 10px;
    margin-top: 8px;
  }

  .dashboard-steps {
    margin-top: 12px;
    padding-top: 12px;
  }

  .dashboard-steps strong {
    font-size: 0.9em;
    margin-bottom: 8px;
  }

  .dashboard-steps ol {
    margin-left: 16px;
    font-size: 0.85em;
  }

  .dashboard-steps li {
    margin-bottom: 8px;
    line-height: 1.6;
  }

  .dashboard-steps code {
    font-size: 0.8em;
    padding: 2px 4px;
  }

  .quick-start {
    padding: 12px;
    border-radius: 16px;
  }

  .quick-start h3 {
    font-size: 1.2em;
    margin-bottom: 16px;
  }

  .step {
    padding: 12px;
    border-radius: 12px;
    gap: 10px;
    margin-bottom: 12px;
  }

  .step-number {
    width: 32px;
    height: 32px;
    font-size: 1em;
  }

  .step-content h4 {
    font-size: 1em;
    margin-bottom: 4px;
  }

  .step-content p {
    font-size: 0.9em;
    line-height: 1.5;
  }

  .card {
    padding: 16px;
    border-radius: 16px;
  }

  .card-header {
    margin-bottom: 12px;
    padding-bottom: 12px;
    gap: 10px;
  }

  .card-header h2 {
    font-size: 1.2em;
  }

  .card-header .icon {
    font-size: 1.5em;
  }

  .button-group {
    gap: 10px;
  }

  .btn {
    padding: 12px 16px;
    font-size: 0.9em;
    border-radius: 8px;
  }

  .btn-description {
    font-size: 0.8em;
  }

  .info-section {
    padding: 12px;
    border-radius: 12px;
    margin-top: 16px;
  }

  .info-section h3 {
    font-size: 1em;
    margin-bottom: 8px;
  }

  .info-section p {
    font-size: 0.9em;
    margin-bottom: 8px;
  }

  .info-section ul, .info-section ol {
    margin-left: 16px;
    font-size: 0.9em;
  }

  .info-section li {
    margin-bottom: 6px;
    line-height: 1.6;
  }

  .info-section code {
    font-size: 0.85em;
    padding: 2px 6px;
  }

  .event-details {
    padding: 12px;
    border-radius: 8px;
    margin-top: 12px;
    font-size: 0.8em;
  }

  .event-details strong {
    font-size: 0.9em;
    margin-bottom: 8px;
  }

  .event-details pre {
    font-size: 0.75em;
    line-height: 1.5;
  }

  .click-id-item {
    padding: 12px;
    border-radius: 12px;
    gap: 10px;
    flex-wrap: wrap;
  }

  .click-id-label {
    flex: 1 1 100%;
    margin-bottom: 8px;
  }

  .click-id-badge {
    padding: 4px 10px;
    font-size: 0.8em;
    min-width: 60px;
  }

  .click-id-value {
    font-size: 0.85em;
    padding: 0 8px;
    word-break: break-all;
    flex: 1 1 100%;
    margin-top: 8px;
  }

  .copy-btn {
    padding: 6px 12px;
    font-size: 0.8em;
    flex: 1 1 auto;
  }

  .collapsible-header {
    padding: 12px;
    border-radius: 10px;
  }

  .collapsible-header h3 {
    font-size: 1.1em;
  }

  .collapsible-content.active {
    padding: 12px;
  }
}

@media (max-width: 375px) {
  html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
  }

  body {
    padding: 6px;
    font-size: 13px;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
  }

  .main-container {
    padding: 6px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .header h1 {
    font-size: 1.3em;
  }

  .header .subtitle {
    font-size: 0.85em;
  }

  .status-banner {
    padding: 10px;
  }

  .status-icon {
    font-size: 1.6em;
  }

  .status-content h3 {
    font-size: 0.95em;
  }

  .status-content p {
    font-size: 0.8em;
  }

  .dashboard-section {
    padding: 10px;
  }

  .dashboard-section h2 {
    font-size: 1.2em;
  }

  .dashboard-card {
    padding: 10px;
  }

  .dashboard-card-title {
    font-size: 0.95em;
  }

  .dashboard-card-description {
    font-size: 0.8em;
  }

  .dashboard-link {
    padding: 8px 14px;
    font-size: 0.85em;
  }

  .dashboard-steps ol {
    font-size: 0.8em;
  }

  .quick-start {
    padding: 10px;
  }

  .quick-start h3 {
    font-size: 1.1em;
  }

  .step {
    padding: 10px;
  }

  .step-number {
    width: 30px;
    height: 30px;
    font-size: 0.95em;
  }

  .card {
    padding: 12px;
  }

  .card-header h2 {
    font-size: 1.1em;
  }

  .btn {
    padding: 10px 14px;
    font-size: 0.85em;
  }

  .info-section {
    padding: 10px;
  }
}

@media (max-width: 320px) {
  html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
  }

  body {
    padding: 4px;
    font-size: 12px;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
  }

  .main-container {
    padding: 4px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .header h1 {
    font-size: 1.2em;
  }

  .header .subtitle {
    font-size: 0.8em;
  }

  .dashboard-section {
    padding: 8px;
  }

  .dashboard-card {
    padding: 8px;
  }

  .card {
    padding: 10px;
  }

  .btn {
    padding: 10px 12px;
    font-size: 0.8em;
  }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
.btn:focus,
.dashboard-link:focus,
.collapsible-header:focus {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

/* ============================================
   CLICK IDS STYLING
   ============================================ */
.click-id-item {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  transition: var(--transition);
}

.click-id-item:hover {
  border-color: var(--primary);
  box-shadow: 
    0 8px 16px rgba(0, 0, 0, 0.3),
    var(--glow-blue);
  transform: translateY(-4px) scale(1.02);
}

.click-id-label {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}

.click-id-badge {
  background: var(--primary);
  color: white;
  padding: 6px 12px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.85em;
  min-width: 70px;
  text-align: center;
}

.click-id-badge.gclid {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
}

.click-id-badge.wbraid {
  background: linear-gradient(135deg, #ec4899 0%, #f472b6 100%);
}

.click-id-badge.gbraid {
  background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
}

.click-id-value {
  font-family: 'Courier New', monospace;
  font-size: 0.9em;
  color: var(--text-secondary);
  word-break: break-all;
  flex: 1;
  padding: 0 10px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  font-weight: 500;
}

.copy-btn {
  background: var(--primary);
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.85em;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

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

.copy-btn:active {
  transform: scale(0.95);
}

.copy-btn.copied {
  background: var(--success);
}

.click-id-empty {
  text-align: center;
  padding: 30px;
  color: var(--text-muted);
  font-style: italic;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
} 