:root {
  /* Color palette */
  --primary-red: #e63946;
  --primary-red-light: #ff7c89;
  --primary-red-dark: #c32232;
  --soft-pink: #ffb6c1;
  --light-pink: #ffd1dc;
  --dark-pink: #ff69b4;
  --white: #ffffff;
  --light-bg: #fff5f7;
  --text-dark: #333333;
  --text-light: #ffffff;
  --gray-light: #f8f9fa;
  --gray: #e9ecef;
  --gray-dark: #6c757d;
  
  /* Spacing system */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 32px;
  --space-xl: 48px;
  --space-xxl: 64px;
  
  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Montserrat', sans-serif;
  
  /* Shadows and effects */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);
  
  /* Border radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-round: 50%;
}

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

html, body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-dark);
  background: linear-gradient(135deg, var(--light-bg) 0%, var(--soft-pink) 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-md);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

header {
  text-align: center;
  margin-bottom: var(--space-xl);
  padding-top: var(--space-xl);
}

h1 {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-red);
  margin-bottom: var(--space-sm);
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.subtitle {
  font-size: 1.25rem;
  color: var(--gray-dark);
  font-weight: 300;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--space-xxl);
}

.main-countdown {
  text-align: center;
  width: 100%;
}

.countdown-title {
  margin-bottom: var(--space-lg);
}

.countdown-title h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-red-dark);
}

.countdown-timer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-sm);
  background-color: var(--white);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.time-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 100px;
}

.time {
  font-size: 4rem;
  font-weight: 600;
  color: var(--primary-red);
  font-family: var(--font-heading);
  line-height: 1.1;
}

.label {
  font-size: 1rem;
  color: var(--gray-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: var(--space-xs);
  font-weight: 400;
}

.time-separator {
  font-size: 3rem;
  font-weight: 400;
  color: var(--primary-red-light);
  margin: 0 var(--space-xs);
  padding-bottom: var(--space-lg);
}

.future-countdowns {
  width: 100%;
  text-align: center;
}

.future-countdowns h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--primary-red-dark);
  margin-bottom: var(--space-md);
}

.future-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.future-countdown-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-md);
  min-width: 200px;
  flex: 1;
  transition: transform 0.3s, box-shadow 0.3s;
}

.future-countdown-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.future-countdown-card h3 {
  font-family: var(--font-heading);
  color: var(--primary-red);
  margin-bottom: var(--space-sm);
  font-size: 1.25rem;
}

.future-time {
  display: flex;
  justify-content: center;
  gap: var(--space-xs);
}

.future-time-block {
  text-align: center;
}

.future-time-value {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-red-dark);
}

.future-time-label {
  font-size: 0.75rem;
  color: var(--gray-dark);
  text-transform: uppercase;
}

footer {
  margin-top: var(--space-xxl);
  text-align: center;
  padding: var(--space-lg) 0;
}

.social-share {
  margin-bottom: var(--space-lg);
}

.social-share p {
  margin-bottom: var(--space-sm);
  color: var(--gray-dark);
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
}

.social-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: var(--white);
  color: var(--primary-red);
  border-radius: var(--radius-round);
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: var(--shadow-sm);
}

.social-icon:hover {
  background-color: var(--primary-red);
  color: var(--white);
  transform: translateY(-3px);
}

.copyright {
  color: var(--gray-dark);
  font-size: 0.875rem;
}

.copyright .fa-heart {
  color: var(--primary-red);
  animation: heartbeat 1.5s ease infinite;
}

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

.heart {
  position: absolute;
  background-color: var(--primary-red-light);
  opacity: 0.1;
  border-radius: 0 var(--radius-round) var(--radius-round) var(--radius-round);
  transform: rotate(45deg);
}

.heart::before,
.heart::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background-color: inherit;
}

.heart::before {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translateX(-50%);
}

.heart::after {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translateY(-50%);
}

.heart1 {
  width: 100px;
  height: 100px;
  top: 10%;
  left: 5%;
}

.heart2 {
  width: 150px;
  height: 150px;
  top: 20%;
  right: 10%;
}

.heart3 {
  width: 120px;
  height: 120px;
  bottom: 15%;
  left: 20%;
}

.heart4 {
  width: 80px;
  height: 80px;
  bottom: 25%;
  right: 15%;
}

.heart5 {
  width: 60px;
  height: 60px;
  top: 50%;
  left: 50%;
}