<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url("traditional-calendar.css");

/* Calendar Plugin Styles */
:root {
  --primary-color: #2fc781;
  --secondary-color: #1a9d5f;
  --text-dark: #333;
  --text-light: #666;
  --bg-light: #f8f9fa;
  --border-color: #e0e0e0;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --gradient-primary: linear-gradient(135deg, #2fc781, #1a9d5f);
  --gradient-secondary: linear-gradient(135deg, #667eea, #764ba2);
}

* {
  box-sizing: border-box;
}

.calendar-main-page,
.calendar-bangla-page,
.calendar-english-page,
.calendar-arbi-page {
  line-height: 1.6;
  color: var(--text-dark);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Enhanced Today's Date Showcase */
.today-date-showcase {
  background: var(--gradient-primary);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 0 10px 30px rgba(47, 199, 129, 0.3);
  position: relative;
  overflow: hidden;
}

.today-date-showcase::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.showcase-content {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 30px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.date-icon {
  color: white;
  opacity: 0.9;
  animation: pulse 2s infinite;
}

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

.date-info {
  color: white;
}

.date-info h2 {
  margin: 0 0 15px 0;
  font-size: 1.8rem;
  font-weight: 600;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.main-date {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 15px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
  letter-spacing: 2px;
}

.arabic-date-display {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 15px;
  font-family: "Arial Unicode MS", sans-serif;
  direction: rtl;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.other-dates-info {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  opacity: 0.9;
}

.other-dates-info span {
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  backdrop-filter: blur(10px);
}

.copy-actions {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.copy-btn,
.share-btn {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 12px 20px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  font-size: 0.9rem;
  min-width: 140px;
  justify-content: center;
}

.copy-btn:hover,
.share-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.copy-btn:active,
.share-btn:active {
  transform: translateY(0);
}

/* Success notification */
.copy-success {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #28a745;
  color: white;
  padding: 15px 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
  z-index: 1000;
  animation: slideInRight 0.3s ease-out;
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Hero Section */
.hero-section {
  text-align: center;
  padding: 60px 0;
  background: var(--gradient-primary);
  color: white;
  margin-bottom: 40px;
  border-radius: 10px;
}

.hero-section h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.hero-section p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Date Highlight Boxes */
.date-highlight-boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.date-box {
  background: white;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: var(--shadow);
  border-top: 5px solid var(--primary-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.date-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.date-box h2 {
  color: var(--primary-color);
  margin-bottom: 20px;
  font-size: 1.4rem;
  font-weight: 600;
}

.date-display {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 15px;
  padding: 15px;
  background: var(--bg-light);
  border-radius: 10px;
}

.season,
.day-name,
.arabic-date {
  font-size: 1.1rem;
  color: var(--text-light);
  font-style: italic;
}

.arabic-date {
  font-family: "Arial Unicode MS", sans-serif;
  direction: rtl;
  text-align: center;
}

/* Main Page Calendar Sections */
.main-page-calendars {
  display: grid;
  gap: 50px;
}

.calendar-section {
  background: white;
  border-radius: 15px;
  padding: 40px;
  box-shadow: var(--shadow);
}

.calendar-section h2 {
  color: var(--primary-color);
  font-size: 1.8rem;
  margin-bottom: 25px;
  border-bottom: 3px solid var(--primary-color);
  padding-bottom: 10px;
}

.section-content {
  margin-bottom: 25px;
}

.section-content p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.read-more {
  display: inline-block;
  background: var(--primary-color);
  color: white;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.read-more:hover {
  background: var(--secondary-color);
  text-decoration: none;
  color: white;
}

/* Main Calendar Styling */
.main-calendar {
  max-width: 500px;
  margin: 20px auto;
}

/* Simplified Calendar Cell */
.calendar-cell {
  aspect-ratio: 1;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background: white;
  transition: all 0.3s ease;
  cursor: pointer;
}

.calendar-cell:last-child {
  border-right: none;
}

.calendar-cell:hover {
  background: #f0f8ff;
  transform: scale(1.05);
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.calendar-cell.empty {
  background: #f8f9fa;
  cursor: default;
}

.calendar-cell.empty:hover {
  background: #f8f9fa;
  transform: none;
  box-shadow: none;
}

.calendar-cell.friday {
  background: #ffebee;
}

.calendar-cell.friday:hover {
  background: #ffcdd2;
}

.calendar-cell.saturday {
  background: #fff3e0;
}

.calendar-cell.saturday:hover {
  background: #ffe0b2;
}

.calendar-cell.today {
  background: #d32f2f !important;
  color: white;
  font-weight: 700;
  box-shadow: 0 0 15px rgba(211, 47, 47, 0.5);
}

.calendar-cell.today:hover {
  background: #b71c1c !important;
  transform: scale(1.1);
}

/* Main date styling - only show the primary date */
.calendar-cell .main-date {
  font-size: 1.2rem;
  font-weight: 700;
  color: #333;
}

.calendar-cell.today .main-date {
  color: white;
}

/* Legacy support for simple displays */
.simple-calendar-display {
  background: var(--bg-light);
  border-radius: 10px;
  padding: 20px;
  margin-top: 20px;
  text-align: center;
}

/* Internal Navigation Styles */
.internal-navigation {
  background: white;
  border-radius: 15px;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: var(--shadow);
}

.internal-navigation h2 {
  color: var(--primary-color);
  font-size: 1.8rem;
  margin-bottom: 25px;
  border-bottom: 3px solid var(--primary-color);
  padding-bottom: 10px;
  text-align: center;
}

.nav-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.nav-link {
  background: var(--bg-light);
  border-radius: 10px;
  padding: 25px;
  text-decoration: none;
  color: var(--text-dark);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.nav-link:hover {
  background: white;
  border-color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: var(--text-dark);
}

.nav-link h3 {
  color: var(--primary-color);
  margin: 0 0 10px 0;
  font-size: 1.2rem;
}

.nav-link p {
  margin: 0;
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Page Navigation */
.page-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding: 15px 0;
  border-bottom: 1px solid var(--border-color);
}

.back-link {
  background: var(--primary-color);
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.back-link:hover {
  background: var(--secondary-color);
  text-decoration: none;
  color: white;
}

.other-calendars {
  display: flex;
  gap: 15px;
}

.other-calendars a {
  background: var(--bg-light);
  color: var(--text-dark);
  padding: 8px 16px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.other-calendars a:hover {
  background: var(--primary-color);
  color: white;
  text-decoration: none;
}

/* SEO-optimized content structure */
.calendar-main-page h1,
.calendar-bangla-page h1,
.calendar-english-page h1,
.calendar-arbi-page h1 {
  font-size: 2.2rem;
  color: white;
  text-align: center;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .showcase-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
  }

  .copy-actions {
    flex-direction: row;
    justify-content: center;
  }

  .other-dates-info {
    justify-content: center;
  }

  .main-date {
    font-size: 2.5rem;
  }

  .hero-section h1 {
    font-size: 2rem;
  }

  .hero-section p {
    font-size: 1rem;
  }

  .date-highlight-boxes {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .date-display {
    font-size: 1.5rem;
  }

  .calendar-section {
    padding: 25px;
  }

  .container {
    padding: 0 15px;
  }

  .main-calendar {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .today-date-showcase {
    padding: 25px;
  }

  .copy-actions {
    flex-direction: column;
    align-items: center;
  }

  .copy-btn,
  .share-btn {
    min-width: 120px;
    padding: 10px 16px;
    font-size: 0.8rem;
  }

  .main-date {
    font-size: 2rem;
  }

  .calendar-cell {
    font-size: 0.9rem;
  }

  .calendar-cell .main-date {
    font-size: 1rem;
  }

  .date-box {
    padding: 20px;
  }

  .hero-section {
    padding: 40px 0;
  }
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.date-box,
.calendar-section {
  animation: fadeInUp 0.6s ease-out;
}

.date-box:nth-child(2) {
  animation-delay: 0.1s;
}

.date-box:nth-child(3) {
  animation-delay: 0.2s;
}

/* Print Styles */
@media print {
  .hero-section {
    background: white !important;
    color: black !important;
  }

  .date-box,
  .calendar-section {
    box-shadow: none !important;
    border: 1px solid #ccc;
  }

  .read-more {
    display: none;
  }

  .copy-actions {
    display: none;
  }

  .today-date-showcase {
    background: white !important;
    color: black !important;
  }
}

/* Responsive navigation */
@media (max-width: 768px) {
  .page-navigation {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .other-calendars {
    justify-content: center;
    flex-wrap: wrap;
  }

  .nav-links {
    grid-template-columns: 1fr;
  }

  .internal-navigation {
    padding: 25px;
  }
}

@media (max-width: 480px) {
  .other-calendars {
    flex-direction: column;
    gap: 10px;
  }

  .other-calendars a {
    text-align: center;
  }
}
</pre></body></html>