/* Reset and Base Styles */
.time-converter-container * {
  margin: 0 !important;
  padding: 0 !important;
  box-sizing: border-box !important;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif !important;
}

.time-converter-container {
  max-width: 1000px !important;
  margin: 2rem auto !important;
  --primary-color: #06b6d4 !important; /* Teal */
  --primary-light: #22d3ee !important;
  --primary-dark: #0891b2 !important;
  --secondary-color: #8b5cf6 !important; /* Purple */
  --secondary-light: #a78bfa !important;
  --secondary-dark: #7c3aed !important;
  --accent-color: #f97316 !important; /* Orange */
  --accent-light: #fb923c !important;
  --accent-dark: #ea580c !important;
  --text-color: #f8fafc !important; /* Light text for dark mode */
  --text-light: #cbd5e1 !important;
  --text-dark: #1e293b !important; /* Dark text for light mode */
  --bg-color: #0f172a !important; /* Dark blue background */
  --bg-light: #1e293b !important;
  --bg-lighter: #334155 !important;
  --card-bg: #1e293b !important;
  --card-bg-light: #334155 !important;
  --border-color: #475569 !important;
  --shadow-color: rgba(0, 0, 0, 0.5) !important;
  --success-color: #10b981 !important;
  --warning-color: #f59e0b !important;
  --error-color: #ef4444 !important;
  --radius: 16px !important;
  --radius-sm: 8px !important;
  --transition: all 0.3s ease !important;
  color: var(--text-color) !important;
}

/* Light Theme */
.time-converter-container.light-theme {
  --primary-color: #06b6d4 !important;
  --primary-light: #22d3ee !important;
  --primary-dark: #0891b2 !important;
  --secondary-color: #8b5cf6 !important;
  --secondary-light: #a78bfa !important;
  --secondary-dark: #7c3aed !important;
  --accent-color: #f97316 !important;
  --accent-light: #fb923c !important;
  --accent-dark: #ea580c !important;
  --text-color: #1e293b !important;
  --text-light: #475569 !important;
  --text-dark: #0f172a !important;
  --bg-color: #f1f5f9 !important;
  --bg-light: #e2e8f0 !important;
  --bg-lighter: #cbd5e1 !important;
  --card-bg: #ffffff !important;
  --card-bg-light: #f8fafc !important;
  --border-color: #cbd5e1 !important;
  --shadow-color: rgba(0, 0, 0, 0.1) !important;
  color: var(--text-color) !important;
}

/* Converter Card */
.converter-card {
  background: linear-gradient(135deg, var(--bg-color), var(--bg-light)) !important;
  border-radius: var(--radius) !important;
  box-shadow: 0 10px 25px var(--shadow-color) !important;
  padding: 2rem !important;
  margin-bottom: 2rem !important;
  transition: var(--transition) !important;
  border: 1px solid var(--border-color) !important;
  overflow: hidden !important;
}

/* Header */
.converter-header {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  margin-bottom: 1.5rem !important;
  padding-bottom: 1rem !important;
  border-bottom: 1px solid var(--border-color) !important;
}

.converter-header h2 {
  font-size: 1.5rem !important;
  font-weight: 700 !important;
  color: var(--text-color) !important;
  margin: 0 !important;
  background: linear-gradient(90deg, var(--primary-light), var(--secondary-light)) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

.theme-toggle {
  display: flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
}

.theme-label {
  font-size: 0.875rem !important;
  color: var(--text-light) !important;
}

#themeToggle {
  background: none !important;
  border: none !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: var(--text-color) !important;
  width: 36px !important;
  height: 36px !important;
  border-radius: 50% !important;
  background-color: var(--bg-lighter) !important;
  transition: var(--transition) !important;
}

#themeToggle:hover {
  background-color: var(--primary-dark) !important;
}

.sun-icon, .moon-icon {
  transition: var(--transition) !important;
}

.time-converter-container:not(.light-theme) .sun-icon {
  display: none !important;
}

.time-converter-container.light-theme .moon-icon {
  display: none !important;
}

/* Time Banner */
.time-banner {
  background: linear-gradient(135deg, var(--primary-dark), var(--secondary-dark)) !important;
  margin: -2rem -2rem 2rem -2rem !important;
  padding: 2rem !important;
  position: relative !important;
  overflow: hidden !important;
}

.time-banner:before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  background: radial-gradient(circle at top right, rgba(255,255,255,0.1), transparent 70%) !important;
  z-index: 1 !important;
}

.time-banner-content {
  position: relative !important;
  z-index: 2 !important;
}

.banner-time-display {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 1.5rem !important;
  margin-bottom: 0.5rem !important;
}

.banner-time {
  font-size: 2.5rem !important;
  font-weight: 800 !important;
  color: white !important;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3) !important;
}

.banner-arrow {
  color: rgba(255,255,255,0.8) !important;
  animation: pulse 2s infinite !important;
}

.banner-timezone-labels {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

.banner-timezone {
  font-size: 0.875rem !important;
  color: rgba(255,255,255,0.8) !important;
  text-align: center !important;
  flex: 1 !important;
}

.banner-timezone-spacer {
  width: 24px !important;
}

/* Clock Visualization */
.time-visualization {
  margin-bottom: 2rem !important;
}

.clock-container {
  display: flex !important;
  justify-content: space-around !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 1rem !important;
}

.clock {
  position: relative !important;
  width: 150px !important;
  height: 150px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  margin: 0 auto !important;
}

.clock-face {
  position: relative !important;
  width: 120px !important;
  height: 120px !important;
  background: linear-gradient(135deg, var(--card-bg), var(--card-bg-light)) !important;
  border-radius: 50% !important;
  border: 2px solid var(--border-color) !important;
  box-shadow: 0 4px 10px var(--shadow-color) !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

.utc-clock .clock-face {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-light)) !important;
}

.est-clock .clock-face {
  background: linear-gradient(135deg, var(--secondary-dark), var(--secondary-light)) !important;
}

.clock-center {
  position: absolute !important;
  width: 10px !important;
  height: 10px !important;
  background-color: var(--text-color) !important;
  border-radius: 50% !important;
  z-index: 10 !important;
}

.hour-hand, .minute-hand, .second-hand {
  position: absolute !important;
  bottom: 50% !important;
  left: 50% !important;
  transform-origin: bottom center !important;
  z-index: 5 !important;
}

.hour-hand {
  width: 4px !important;
  height: 30px !important;
  background-color: var(--text-color) !important;
  border-radius: 4px !important;
  transform: translateX(-50%) rotate(150deg) !important; /* 5pm = 150 degrees */
}

.est-clock .hour-hand {
  transform: translateX(-50%) rotate(0deg) !important; /* 12pm = 0 degrees */
}

.minute-hand {
  width: 2px !important;
  height: 40px !important;
  background-color: var(--text-color) !important;
  border-radius: 2px !important;
  transform: translateX(-50%) rotate(0deg) !important; /* 0 minutes = 0 degrees */
}

.second-hand {
  width: 1px !important;
  height: 45px !important;
  background-color: var(--accent-color) !important;
  border-radius: 1px !important;
  transform: translateX(-50%) rotate(0deg) !important;
}

.clock-marking {
  position: absolute !important;
  font-size: 12px !important;
  color: var(--text-color) !important;
  font-weight: 500 !important;
}

.marking-12 {
  top: 10px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
}

.marking-3 {
  right: 10px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
}

.marking-6 {
  bottom: 10px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
}

.marking-9 {
  left: 10px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
}

.clock-info {
  margin-top: 10px !important;
  text-align: center !important;
}

.clock-info .time-zone {
  font-weight: 700 !important;
  font-size: 1rem !important;
  color: var(--text-color) !important;
}

.clock-info .time {
  font-size: 0.875rem !important;
  color: var(--text-light) !important;
}

.conversion-arrow {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: var(--text-light) !important;
}

/* Time Display */
.time-display {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  margin-bottom: 2rem !important;
}

.time-card {
  flex: 1 !important;
  padding: 1.5rem !important;
  border-radius: var(--radius) !important;
  text-align: center !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
  transition: var(--transition) !important;
}

.time-card:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2) !important;
}

.time-card.utc {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-light)) !important;
}

.time-card.est {
  background: linear-gradient(135deg, var(--secondary-dark), var(--secondary-light)) !important;
}

.time-zone {
  font-size: 1.25rem !important;
  font-weight: 700 !important;
  margin-bottom: 0.5rem !important;
}

.time {
  font-size: 2rem !important;
  font-weight: 800 !important;
  margin-bottom: 0.5rem !important;
}

.date {
  font-size: 0.875rem !important;
  margin-bottom: 0.5rem !important;
  opacity: 0.9 !important;
}

.location {
  font-size: 0.875rem !important;
  opacity: 0.8 !important;
}

.conversion-arrow-card {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 1rem !important;
  color: var(--text-light) !important;
}

/* Controls */
.converter-controls {
  display: flex !important;
  gap: 1rem !important;
  margin-bottom: 1.5rem !important;
  flex-wrap: wrap !important;
}

.time-input-container, .date-input-container {
  flex: 1 !important;
  min-width: 200px !important;
}

label {
  display: block !important;
  margin-bottom: 0.5rem !important;
  font-size: 0.875rem !important;
  font-weight: 500 !important;
  color: var(--text-light) !important;
}

input[type="time"], input[type="date"], input[type="text"] {
  width: 100% !important;
  padding: 0.75rem 1rem !important;
  border: 1px solid var(--border-color) !important;
  border-radius: var(--radius-sm) !important;
  background-color: var(--bg-lighter) !important;
  color: var(--text-color) !important;
  font-size: 1rem !important;
  transition: var(--transition) !important;
}

input[type="time"]:focus, input[type="date"]:focus, input[type="text"]:focus {
  outline: none !important;
  border-color: var(--primary-color) !important;
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.2) !important;
}

/* Time Slider */
.time-slider-container {
  margin-bottom: 2rem !important;
}

.time-slider {
  width: 100% !important;
  height: 8px !important;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color)) !important;
  border-radius: 4px !important;
  outline: none !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  margin: 1rem 0 !important;
  cursor: pointer !important;
}

.time-slider::-webkit-slider-thumb {
  -webkit-appearance: none !important;
  appearance: none !important;
  width: 20px !important;
  height: 20px !important;
  border-radius: 50% !important;
  background: var(--accent-color) !important;
  cursor: pointer !important;
  border: 2px solid var(--text-color) !important;
  box-shadow: 0 2px 5px var(--shadow-color) !important;
  transition: var(--transition) !important;
}

.time-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2) !important;
}

.slider-time-display {
  text-align: center !important;
  font-size: 1.25rem !important;
  font-weight: 700 !important;
  color: var(--text-color) !important;
  margin-top: 0.5rem !important;
}

/* Additional Features */
.additional-features {
  background: linear-gradient(135deg, var(--bg-lighter), var(--bg-light)) !important;
  border-radius: var(--radius) !important;
  overflow: hidden !important;
  border: 1px solid var(--border-color) !important;
}

.feature-tabs {
  display: flex !important;
  border-bottom: 1px solid var(--border-color) !important;
  background-color: var(--bg-color) !important;
  flex-wrap: wrap !important;
}

.tab-btn {
  padding: 0rem 1.5rem !important;
  background: none !important;
  border: none !important;
  cursor: pointer !important;
  font-size: 0.875rem !important;
  font-weight: 500 !important;
  color: var(--text-light) !important;
  transition: var(--transition) !important;
  flex: 1 !important;
  text-align: center !important;
}

.tab-btn:hover {
  color: var(--primary-light) !important;
  background-color: var(--bg-lighter) !important;
}

.tab-btn.active {
  color: var(--text-color) !important;
  border-bottom: 2px solid var(--primary-color) !important;
  background-color: var(--bg-lighter) !important;
}

.tab-content {
  padding: 1.5rem !important;
}

.tab-pane {
  display: none !important;
}

.tab-pane.active {
  display: block !important;
  animation: fadeIn 0.3s ease !important;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Details Tab */
.detail-item {
  display: flex !important;
  justify-content: space-between !important;
  padding: 0.75rem 0 !important;
  border-bottom: 1px solid var(--border-color) !important;
}

.detail-item:last-child {
  border-bottom: none !important;
}

.detail-label {
  font-weight: 500 !important;
  color: var(--text-light) !important;
}

.detail-value {
  font-weight: 500 !important;
  color: var(--text-color) !important;
}

/* World Clock Tab */
.world-clock-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)) !important;
  gap: 1rem !important;
}

.world-time {
  background: linear-gradient(135deg, var(--bg-color), var(--bg-light)) !important;
  padding: 1rem !important;
  border-radius: var(--radius-sm) !important;
  border: 1px solid var(--border-color) !important;
  transition: var(--transition) !important;
}

.world-time:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 12px var(--shadow-color) !important;
}

.world-city {
  font-weight: 500 !important;
  margin-bottom: 0.5rem !important;
  color: var(--text-color) !important;
}

.world-time-value {
  font-size: 1.25rem !important;
  font-weight: 700 !important;
  background: linear-gradient(90deg, var(--primary-light), var(--secondary-light)) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

/* Calculator Tab */
.calculator-form {
  display: flex !important;
  flex-direction: column !important;
  gap: 1rem !important;
}

.calc-row {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.5rem !important;
}

select {
  width: 100% !important;
  padding: 0.75rem 1rem !important;
  border: 1px solid var(--border-color) !important;
  border-radius: var(--radius-sm) !important;
  background-color: var(--bg-lighter) !important;
  color: var(--text-color) !important;
  font-size: 1rem !important;
  transition: var(--transition) !important;
  appearance: none !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 1rem center !important;
  background-size: 1rem !important;
}

select:focus {
  outline: none !important;
  border-color: var(--primary-color) !important;
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.2) !important;
}

.calculate-btn {
  padding: 0.75rem 1.5rem !important;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color)) !important;
  color: white !important;
  border: none !important;
  border-radius: var(--radius-sm) !important;
  font-weight: 500 !important;
  cursor: pointer !important;
  transition: var(--transition) !important;
  margin-top: 0.5rem !important;
}

.calculate-btn:hover {
  background: linear-gradient(90deg, var(--primary-dark), var(--secondary-dark)) !important;
  transform: translateY(-2px) !important;
}

.calc-result {
  margin-top: 1rem !important;
  padding: 1rem !important;
  background: linear-gradient(135deg, var(--bg-color), var(--bg-light)) !important;
  border: 1px solid var(--border-color) !important;
  border-radius: var(--radius-sm) !important;
}

.result-label {
  font-weight: 500 !important;
  color: var(--text-light) !important;
  margin-bottom: 0.5rem !important;
}

.result-value {
  font-size: 1.25rem !important;
  font-weight: 700 !important;
  background: linear-gradient(90deg, var(--primary-light), var(--secondary-light)) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

/* Meeting Planner Tab */
.meeting-planner {
  display: flex !important;
  flex-direction: column !important;
  gap: 1.5rem !important;
}

.meeting-header {
  text-align: center !important;
  margin-bottom: 1rem !important;
}

.meeting-header h4 {
  font-size: 1.25rem !important;
  font-weight: 700 !important;
  color: var(--text-color) !important;
  margin-bottom: 0.5rem !important;
}

.meeting-header p {
  color: var(--text-light) !important;
  font-size: 0.875rem !important;
}

.meeting-form {
  display: flex !important;
  flex-direction: column !important;
  gap: 1rem !important;
}

.meeting-row {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.5rem !important;
}

.participant-checkboxes {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)) !important;
  gap: 0.5rem !important;
  margin-top: 0.5rem !important;
}

.checkbox-label {
  display: flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  cursor: pointer !important;
  font-size: 0.875rem !important;
  color: var(--text-color) !important;
}

.checkbox-label input[type="checkbox"] {
  width: 16px !important;
  height: 16px !important;
  accent-color: var(--primary-color) !important;
}

.meeting-results {
  margin-top: 1.5rem !important;
  padding-top: 1.5rem !important;
  border-top: 1px solid var(--border-color) !important;
}

.meeting-results h4 {
  font-size: 1rem !important;
  font-weight: 600 !important;
  color: var(--text-color) !important;
  margin-bottom: 1rem !important;
}

.meeting-times-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)) !important;
  gap: 1rem !important;
  margin-bottom: 1.5rem !important;
}

.meeting-time-card {
  background: linear-gradient(135deg, var(--bg-color), var(--bg-light)) !important;
  padding: 1rem !important;
  border-radius: var(--radius-sm) !important;
  border: 1px solid var(--border-color) !important;
}

.meeting-time-card.good-time {
  border-left: 4px solid var(--success-color) !important;
}

.meeting-time-card.warning-time {
  border-left: 4px solid var(--warning-color) !important;
}

.meeting-time-card.bad-time {
  border-left: 4px solid var(--error-color) !important;
}

.meeting-location {
  font-weight: 600 !important;
  margin-bottom: 0.5rem !important;
  color: var(--text-color) !important;
}

.meeting-local-time {
  font-size: 1.125rem !important;
  font-weight: 700 !important;
  margin-bottom: 0.25rem !important;
  color: var(--text-color) !important;
}

.meeting-time-status {
  font-size: 0.75rem !important;
  padding: 0.25rem 0.5rem !important;
  border-radius: 4px !important;
  display: inline-block !important;
}

.status-good {
  background-color: var(--success-color) !important;
  color: white !important;
}

.status-warning {
  background-color: var(--warning-color) !important;
  color: white !important;
}

.status-bad {
  background-color: var(--error-color) !important;
  color: white !important;
}

.meeting-recommendation {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color)) !important;
  padding: 1rem !important;
  border-radius: var(--radius-sm) !important;
  color: white !important;
  font-weight: 500 !important;
}

/* Countdown Tab */
.countdown-container {
  display: flex !important;
  flex-direction: column !important;
  gap: 1.5rem !important;
}

.countdown-header {
  text-align: center !important;
  margin-bottom: 1rem !important;
}

.countdown-header h4 {
  font-size: 1.25rem !important;
  font-weight: 700 !important;
  color: var(--text-color) !important;
  margin-bottom: 0.5rem !important;
}

.countdown-header p {
  color: var(--text-light) !important;
  font-size: 0.875rem !important;
}

.countdown-form {
  display: flex !important;
  flex-direction: column !important;
  gap: 1rem !important;
}

.countdown-row {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.5rem !important;
}

.countdown-display {
  margin-top: 1.5rem !important;
  padding: 1.5rem !important;
  background: linear-gradient(135deg, var(--bg-color), var(--bg-light)) !important;
  border-radius: var(--radius-sm) !important;
  border: 1px solid var(--border-color) !important;
  text-align: center !important;
}

.countdown-event-name {
  font-size: 1.25rem !important;
  font-weight: 700 !important;
  color: var(--text-color) !important;
  margin-bottom: 1rem !important;
}

.countdown-timers {
  display: flex !important;
  justify-content: space-around !important;
  flex-wrap: wrap !important;
  gap: 1.5rem !important;
}

.countdown-timer {
  flex: 1 !important;
  min-width: 200px !important;
  padding: 1rem !important;
  border-radius: var(--radius-sm) !important;
}

.countdown-timer.utc {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-light)) !important;
}

.countdown-timer.est {
  background: linear-gradient(135deg, var(--secondary-dark), var(--secondary-light)) !important;
}

.countdown-timezone {
  font-size: 1rem !important;
  font-weight: 700 !important;
  margin-bottom: 0.5rem !important;
  color: white !important;
}

.countdown-time {
  font-size: 2rem !important;
  font-weight: 800 !important;
  margin-bottom: 0.5rem !important;
  color: white !important;
}

.countdown-target {
  font-size: 0.875rem !important;
  color: rgba(255, 255, 255, 0.8) !important;
}

/* Supportive Content Section */
.supportive-content {
  background: linear-gradient(135deg, var(--bg-color), var(--bg-light)) !important;
  border-radius: var(--radius) !important;
  padding: 2rem !important;
  box-shadow: 0 10px 25px var(--shadow-color) !important;
  border: 1px solid var(--border-color) !important;
}

.supportive-content h3 {
  font-size: 1.5rem !important;
  font-weight: 700 !important;
  margin-bottom: 1.5rem !important;
  color: var(--text-color) !important;
  text-align: center !important;
  position: relative !important;
  padding-bottom: 1rem !important;
  background: linear-gradient(90deg, var(--primary-light), var(--secondary-light)) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

.supportive-content h3:after {
  content: "" !important;
  position: absolute !important;
  bottom: 0 !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 100px !important;
  height: 3px !important;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color)) !important;
  border-radius: 3px !important;
}

.info-card {
  display: flex !important;
  gap: 1rem !important;
  padding: 1.25rem !important;
  margin-bottom: 1rem !important;
  background: linear-gradient(135deg, var(--bg-lighter), var(--bg-light)) !important;
  border-radius: var(--radius-sm) !important;
  transition: var(--transition) !important;
  border: 1px solid var(--border-color) !important;
}

.info-card:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 16px var(--shadow-color) !important;
}

.info-icon {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 40px !important;
  height: 40px !important;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) !important;
  color: white !important;
  border-radius: 50% !important;
  flex-shrink: 0 !important;
}

.info-content {
  flex: 1 !important;
}

.info-content h4 {
  font-size: 1.125rem !important;
  font-weight: 600 !important;
  margin-bottom: 0.5rem !important;
  color: var(--text-color) !important;
}

.info-content p {
  font-size: 0.9375rem !important;
  line-height: 1.6 !important;
  color: var(--text-light) !important;
  margin: 0 !important;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .time-converter-container {
    margin: 1rem !important;
  }
  
  .converter-card {
    padding: 1.5rem !important;
  }
  
  .time-banner {
    margin: -1.5rem -1.5rem 1.5rem -1.5rem !important;
    padding: 1.5rem !important;
  }
  
  .banner-time {
    font-size: 1.75rem !important;
  }
  
  .time-display {
    flex-direction: column !important;
    gap: 1rem !important;
  }
  
  .conversion-arrow-card {
    transform: rotate(90deg) !important;
    margin: 0.5rem 0 !important;
  }
  
  .feature-tabs {
    flex-wrap: wrap !important;
  }
  
  .tab-btn {
    padding: 0.75rem 1rem !important;
    flex-basis: 50% !important;
  }
  
  .world-clock-grid {
    grid-template-columns: 1fr !important;
  }

  .clock-container {
    flex-direction: column !important;
  }

  .conversion-arrow {
    transform: rotate(90deg) !important;
    margin: 1rem 0 !important;
  }
  
  .countdown-timers {
    flex-direction: column !important;
  }
}

/* Animations */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.time-card:hover .time {
  animation: pulse 1s infinite !important;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.second-hand {
  animation: rotate 60s linear infinite !important;
}
