/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --red-500: #ef4444;
  --red-600: #dc2626;
  --red-700: #b91c1c;
  --red-800: #991b1b;
  --red-900: #7f1d1d;
  --red-950: #450a0a;
  
  --green-500: #22c55e;
  --green-600: #16a34a;
  
  --zinc-700: #3f3f46;
  --zinc-800: #27272a;
  --zinc-900: #18181b;
  
  --gray-300: #d4d4d8;
  --gray-400: #a1a1aa;
  --gray-500: #71717a;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  background-color: var(--zinc-900);
  color: white;
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* Live Viewers Bar */
.live-viewers-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(127, 29, 29, 0.9);
  color: white;
  padding: 0.5rem 1rem;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
}

.live-viewers-content {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.live-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.live-dot {
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--red-500);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

.live-text {
  font-weight: 500;
}

.divider {
  height: 1rem;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.3);
  margin: 0 0.5rem;
}

.viewers-count {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-weight: 500;
}

/* Background Dashboard */
.background-dashboard {
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: 0.3;
  pointer-events: none;
}

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

.dashboard-header {
  width: 100%;
  height: 4rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
}

.logo-placeholder {
  width: 12rem;
  height: 2rem;
  background-color: var(--red-600);
  border-radius: 0.25rem;
}

.user-icons {
  margin-left: auto;
  display: flex;
  gap: 1rem;
}

.user-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: var(--zinc-700);
}

.channel-overview {
  width: 100%;
  margin-bottom: 2rem;
}

.title-placeholder {
  width: 16rem;
  height: 2rem;
  background-color: var(--zinc-700);
  border-radius: 0.25rem;
  margin-bottom: 0.5rem;
}

.subtitle-placeholder {
  width: 24rem;
  height: 1rem;
  background-color: rgba(113, 113, 122, 0.5);
  border-radius: 0.25rem;
}

/* Metrics Grid */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.metric-card {
  background-color: var(--zinc-800);
  border-radius: 0.5rem;
  padding: 1.5rem;
  border: 1px solid var(--zinc-700);
}

.metric-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.metric-header i {
  color: var(--gray-400);
  margin-right: 0.5rem;
  font-size: 1.5rem;
}

.metric-title-placeholder {
  width: 8rem;
  height: 1.25rem;
  background-color: var(--zinc-700);
  border-radius: 0.25rem;
}

.metric-value {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.metric-trend {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
}

.metric-trend.positive {
  color: var(--green-500);
}

.metric-trend i {
  margin-right: 0.25rem;
}

.metric-chart {
  margin-top: 1rem;
  height: 4rem;
  background-image: linear-gradient(to right, transparent, rgba(34, 197, 94, 0.2));
  position: relative;
  overflow: hidden;
}

.metric-chart::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: bottom;
}

.views-chart::before {
  background-image: linear-gradient(to right, var(--green-500), var(--green-500));
  background-size: 100% 2px;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 50'%3E%3Cpath d='M0,50 L10,45 L20,48 L30,40 L40,42 L50,38 L60,35 L70,30 L80,25 L90,28 L100,20 L110,15 L120,18 L130,10 L140,15 L150,8 L160,12 L170,5 L180,8 L190,2 L200,0' fill='none' stroke='%2322c55e' stroke-width='2'/%3E%3C/svg%3E");
}

.subs-chart::before {
  background-image: linear-gradient(to right, #3b82f6, #3b82f6);
  background-size: 100% 2px;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 50'%3E%3Cpath d='M0,50 L10,48 L20,45 L30,46 L40,42 L50,40 L60,38 L70,35 L80,32 L90,30 L100,25 L110,22 L120,20 L130,15 L140,18 L150,12 L160,10 L170,8 L180,5 L190,3 L200,0' fill='none' stroke='%233b82f6' stroke-width='2'/%3E%3C/svg%3E");
}

.realtime-chart::before {
  background-image: linear-gradient(to right, #f97316, #f97316);
  background-size: 100% 2px;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 50'%3E%3Cpath d='M0,30 L10,32 L20,28 L30,35 L40,25 L50,30 L60,20 L70,25 L80,15 L90,20 L100,10 L110,15 L120,5 L130,15 L140,10 L150,20 L160,15 L170,25 L180,20 L190,15 L200,10' fill='none' stroke='%23f97316' stroke-width='2'/%3E%3C/svg%3E");
}

.revenue-chart::before {
  background-image: linear-gradient(to right, var(--green-500), var(--green-500));
  background-size: 100% 2px;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 50'%3E%3Cpath d='M0,45 L10,42 L20,40 L30,38 L40,35 L50,32 L60,30 L70,25 L80,28 L90,22 L100,18 L110,20 L120,15 L130,12 L140,10 L150,8 L160,12 L170,5 L180,8 L190,3 L200,0' fill='none' stroke='%2322c55e' stroke-width='2'/%3E%3C/svg%3E");
}

/* Performance Chart */
.performance-chart {
  background-color: var(--zinc-800);
  border-radius: 0.5rem;
  padding: 1.5rem;
  border: 1px solid var(--zinc-700);
  margin-bottom: 2rem;
}

.chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.chart-title-placeholder {
  width: 12rem;
  height: 1.5rem;
  background-color: var(--zinc-700);
  border-radius: 0.25rem;
}

.chart-controls {
  display: flex;
  gap: 0.5rem;
}

.control-placeholder {
  width: 5rem;
  height: 2rem;
  background-color: var(--zinc-700);
  border-radius: 0.25rem;
}

.chart-container {
  height: 16rem;
  background-color: var(--zinc-800);
  position: relative;
  margin-bottom: 1rem;
}

.chart-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    repeating-linear-gradient(to bottom, transparent, transparent 49px, #444 49px, #444 50px),
    repeating-linear-gradient(to right, transparent, transparent 99px, #444 99px, #444 100px);
}

.chart-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
}

.label-placeholder {
  width: 2.5rem;
  height: 1rem;
  background-color: var(--zinc-700);
  border-radius: 0.25rem;
}

/* Video Performance Table */
.video-performance {
  background-color: var(--zinc-800);
  border-radius: 0.5rem;
  border: 1px solid var(--zinc-700);
}

.table-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--zinc-700);
}

.header-placeholder {
  width: 12rem;
  height: 1.5rem;
  background-color: var(--zinc-700);
  border-radius: 0.25rem;
}

.table-content {
  padding: 1rem;
}

.video-row {
  display: flex;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(113, 113, 122, 0.5);
}

.video-row:last-child {
  border-bottom: none;
}

.video-thumbnail {
  width: 8rem;
  height: 4rem;
  background-color: var(--zinc-700);
  border-radius: 0.25rem;
  margin-right: 1rem;
}

.video-info {
  flex: 1;
}

.video-title-placeholder {
  width: 100%;
  height: 1.25rem;
  background-color: var(--zinc-700);
  border-radius: 0.25rem;
  margin-bottom: 0.5rem;
}

.video-stats-placeholder {
  width: 50%;
  height: 1rem;
  background-color: rgba(113, 113, 122, 0.5);
  border-radius: 0.25rem;
}

.video-metrics {
  margin-left: 1rem;
}

.metric-placeholder {
  width: 5rem;
  height: 1.25rem;
  background-color: var(--zinc-700);
  border-radius: 0.25rem;
  margin-bottom: 0.5rem;
}

.trend-placeholder {
  width: 4rem;
  height: 1rem;
  background-color: rgba(34, 197, 94, 0.5);
  border-radius: 0.25rem;
}

/* Main Content */
.main-content {
  position: relative;
  z-index: 10;
}

/* Hero Section */
.hero-section {
  padding: 5rem 0 3rem;
  margin-top: 2rem;
}

.hero-content {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(127, 29, 29, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
}

.hero-badge i {
  color: var(--red-500);
  font-size: 0.875rem;
}

.hero-badge span {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--red-400);
}

.hero-title {
  font-size: clamp(1.875rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.highlight-red {
  color: var(--red-600);
  background-color: rgba(220, 38, 38, 0.1);
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
}

.highlight-green {
  color: var(--green-500);
  background-color: rgba(34, 197, 94, 0.1);
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--gray-300);
  margin-bottom: 2rem;
}

.video-container {
  margin: 2.5rem 0 3rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.video-placeholder {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 2px solid var(--red-600);
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.5), 0 0 30px rgba(255, 0, 0, 0.3), 0 0 45px rgba(255, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: rgba(39, 39, 42, 0.8);
  backdrop-filter: blur(4px);
}

.video-placeholder i {
  font-size: 4rem;
  color: var(--red-600);
  margin-bottom: 1rem;
}

.video-placeholder p {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--gray-300);
}

.cta-container {
  display: flex;
  justify-content: center;
}

.cta-button {
  position: relative;
  background: linear-gradient(to right, var(--red-600), var(--red-700));
  color: white;
  font-size: 1.25rem;
  font-weight: 900;
  padding: 1.75rem 2.5rem;
  border-radius: 0.75rem;
  border: 2px solid rgba(220, 38, 38, 0.5);
  cursor: pointer;
  transform: translateY(0);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
}

.cta-button::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(220, 38, 38, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cta-button::after {
  content: '';
  position: absolute;
  left: -1px;
  right: -1px;
  bottom: 0;
  height: 0.25rem;
  background: linear-gradient(to right, #f59e0b, var(--red-500));
}

.cta-button:hover {
  background: linear-gradient(to right, var(--red-500), var(--red-600));
  transform: translateY(-0.25rem) scale(1.05);
  box-shadow: 0 0 30px rgba(255, 0, 0, 0.7);
}

.cta-button:hover::before {
  opacity: 1;
}

.promo-container {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.promo-today {
  font-weight: 700;
  font-size: 1.25rem;
}

.promo-price {
  margin-top: 0.25rem;
}

.original-price {
  text-decoration: line-through underline;
  color: var(--gray-300);
}

.discount-price {
  color: var(--green-500);
  margin-left: 0.5rem;
}

.countdown-container {
  margin-top: 1.5rem;
}

.countdown-title {
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--red-400);
}

.countdown-timer {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.countdown-timer::before {
  content: '';
  position: absolute;
  inset: -0.25rem;
  background-color: rgba(220, 38, 38, 0.2);
  border-radius: 0.5rem;
  filter: blur(0.5rem);
  z-index: -1;
}

.countdown-box {
  background: linear-gradient(to bottom, var(--red-700), var(--red-900));
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  border: 2px solid var(--red-500);
}

.countdown-box span {
  font-size: 2.5rem;
  font-weight: 900;
  color: white;
}

.countdown-separator {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--red-500);
  animation: pulse 1s infinite;
}

.countdown-labels {
  display: flex;
  gap: 2rem;
  margin-top: 0.5rem;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--gray-400);
  letter-spacing: 0.05em;
}

.countdown-labels .label {
  width: 4rem;
  text-align: center;
}

/* Stats Section */
.stats-section {
  padding: 4rem 0;
  background: linear-gradient(to bottom, var(--zinc-900), rgba(127, 29, 29, 0.2));
}

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

.stat-card {
  background-color: rgba(39, 39, 42, 0.6);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(127, 29, 29, 0.3);
  border-radius: 0.75rem;
  padding: 2rem;
  text-align: center;
}

.stat-card i {
  font-size: 3rem;
  color: var(--red-500);
  margin-bottom: 1rem;
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat-description {
  color: var(--gray-300);
}

/* Anonymous Content Section */
.anonymous-content-section {
  padding: 5rem 0;
  background: linear-gradient(to bottom, var(--zinc-800), var(--zinc-900));
}

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

.section-title {
  font-size: clamp(1.875rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--gray-300);
  max-width: 48rem;
  margin: 0 auto;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 80rem;
  margin: 0 auto;
}

.content-card {
  background-color: rgba(39, 39, 42, 0.6);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(127, 29, 29, 0.3);
  border-radius: 0.5rem;
  overflow: hidden;
}

.card-image {
  position: relative;
  width: 100%;
  height: 12rem;
}

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

.card-content {
  padding: 1.5rem;
}

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

.card-header i {
  font-size: 2.5rem;
  color: var(--red-500);
}

.card-title {
  font-size: 1.25rem;
  font-weight: 700;
}

.card-description {
  color: var(--gray-300);
  margin-bottom: 1rem;
}

.card-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.card-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.card-features i {
  color: var(--green-500);
}

/* Benefits Section */
.benefits-section {
  padding: 5rem 0;
}

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

.benefit-card {
  background-color: rgba(39, 39, 42, 0.6);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(127, 29, 29, 0.3);
  border-radius: 0.5rem;
  padding: 1.5rem;
}

.benefit-icon {
  margin-bottom: 1rem;
}

.benefit-icon i {
  font-size: 2.5rem;
  color: var(--red-500);
}

.benefit-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.benefit-description {
  color: var(--gray-300);
}

/* Testimonials Section */
.testimonials-section {
  padding: 5rem 0;
  background: linear-gradient(to bottom, rgba(127, 29, 29, 0.2), var(--zinc-900));
}

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

.testimonial-card {
  background-color: rgba(39, 39, 42, 0.6);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(127, 29, 29, 0.3);
  border-radius: 0.5rem;
  padding: 1.5rem;
}

.testimonial-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.testimonial-image {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

.testimonial-quote {
  color: var(--gray-300);
  margin-bottom: 1rem;
  font-style: italic;
}

.testimonial-name {
  font-weight: 700;
}

.testimonial-role {
  color: var(--red-500);
  font-size: 0.875rem;
}

/* Pricing Section */
.pricing-section {
  padding: 5rem 0;
}

.pricing-container {
  max-width: 32rem;
  margin: 0 auto;
}

.pricing-card {
  position: relative;
  background: linear-gradient(to bottom, var(--red-950), var(--zinc-800));
  border: 1px solid var(--red-600);
  border-radius: 0.5rem;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.pricing-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--red-600);
  color: white;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
}

.pricing-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-align: center;
}

.pricing-discount {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.discount-badge {
  background-color: rgba(220, 38, 38, 0.2);
  color: var(--red-400);
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.875rem;
  font-weight: 700;
}

.pricing-value {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
}

.pricing-terms {
  color: var(--gray-300);
  margin-bottom: 1.5rem;
  text-align: center;
}

.pricing-features {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
}

.pricing-features i {
  color: var(--red-500);
  margin-right: 0.5rem;
  flex-shrink: 0;
}

.pricing-button {
  width: 100%;
  background: var(--red-600);
  color: white;
  font-size: 1.125rem;
  font-weight: 700;
  padding: 1.5rem;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.pricing-button:hover {
  background: var(--red-700);
  transform: translateY(-0.25rem);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.pricing-note {
  margin-top: 1rem;
  text-align: center;
  color: var(--gray-400);
  font-size: 0.875rem;
}

/* FAQ Section */
.faq-section {
  padding: 5rem 0;
  background: linear-gradient(to bottom, var(--zinc-900), rgba(127, 29, 29, 0.2));
}

.faq-container {
  max-width: 48rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq-item {
  background-color: rgba(39, 39, 42, 0.6);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(127, 29, 29, 0.3);
  border-radius: 0.75rem;
  padding: 1.5rem;
}

.faq-question {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.faq-answer {
  color: var(--gray-300);
}

/* Final CTA Section */
.final-cta-section {
  padding: 5rem 0;
}

.cta-box {
  max-width: 64rem;
  margin: 0 auto;
  background: linear-gradient(to right, var(--red-950), var(--zinc-800));
  border: 1px solid rgba(127, 29, 29, 0.5);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
}

.cta-title {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-description {
  font-size: 1.25rem;
  color: var(--gray-300);
  max-width: 32rem;
  margin: 0 auto 2rem;
}

.cta-note {
  margin-top: 1.5rem;
  color: var(--gray-300);
}

/* Footer */
.footer {
  position: relative;
  z-index: 10;
  border-top: 1px solid rgba(127, 29, 29, 0.3);
  background-color: var(--zinc-900);
  padding: 3rem 0;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

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

.footer-logo i {
  font-size: 2rem;
  color: var(--red-600);
}

.footer-logo span {
  font-size: 1.25rem;
  font-weight: 700;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.footer-link {
  color: var(--gray-400);
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: white;
}

.footer-copyright {
  text-align: center;
  color: var(--gray-500);
  font-size: 0.875rem;
}

/* Animations */
@keyframes pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

/* Responsive Styles */
@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
  }
  
  .footer-logo {
    margin-bottom: 0;
  }
  
  .footer-links {
    flex-direction: row;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hero-title {
    font-size: 1.75rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .countdown-box span {
    font-size: 2rem;
  }
  
  .countdown-separator {
    font-size: 2rem;
  }
  
  .countdown-labels .label {
    width: 3rem;
  }
}

@media (max-width: 576px) {
  .metrics-grid {
    grid-template-columns: 1fr;
  }
  
  .content-grid,
  .benefits-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-button {
    padding: 1.25rem;
    font-size: 1rem;
  }
  
  .countdown-box {
    padding: 0.75rem 1.25rem;
  }
  
  .countdown-box span {
    font-size: 1.5rem;
  }
  
  .countdown-separator {
    font-size: 1.5rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
}