body {
  font-family: 'Segoe UI', system-ui, sans-serif;
}

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

.event-banner {
  height: 500px;
}

@media (max-width: 768px) {
  .banner-container {
    max-width: 100%;
    padding: 0 1rem;
  }
  .event-banner {
    height: 220px;
  }
}

@media (max-width: 1200px) {
  .banner-container {
    max-width: 100%;
    padding: 0 1rem;
  }
}

.event-loader {
  width: 100%;
  height: 180px;
  display: block;
  margin: auto;
  position: relative;
  background: #FFF;
  box-sizing: border-box;
  border-radius: 8px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.event-loader::after {
  content: '';
  width: calc(100% - 30px);
  height: calc(100% - 15px);
  top: 15px;
  left: 15px;
  position: absolute;
  background-image: 
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5) 50%, transparent 100%),
    linear-gradient(#f3f4f6 70px, transparent 0),
    linear-gradient(#f3f4f6 20px, transparent 0),
    linear-gradient(#f3f4f6 12px, transparent 0),
    linear-gradient(#f3f4f6 12px, transparent 0),
    linear-gradient(#f3f4f6 10px, transparent 0),
    linear-gradient(#f3f4f6 10px, transparent 0),
    linear-gradient(#f3f4f6 10px, transparent 0);
  background-repeat: no-repeat;
  background-size: 
    75px 100%,
    100% 100px,
    90% 20px,
    70% 12px,
    60% 12px,
    50% 10px,
    40% 10px,
    30% 10px;
  background-position: 
    -75px 0,
    center 0,
    center 110px,
    center 140px,
    center 160px,
    center 180px,
    center 195px,
    center 210px;
  box-sizing: border-box;
  animation: animloader 1.5s linear infinite;
}

@keyframes animloader {
  to {
    background-position: 
      125% 0,
      center 0,
      center 110px,
      center 140px,
      center 160px,
      center 180px,
      center 195px,
      center 210px;
  }
}

.banner-loader {
  width: 100%;
  height: 500px;
  display: block;
  margin: auto;
  position: relative;
  background: #f3f4f6;
  box-sizing: border-box;
}

.banner-loader::after {
  content: '';
  width: calc(100% - 30px);
  height: calc(100% - 15px);
  top: 15px;
  left: 15px;
  position: absolute;
  background-image: 
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5) 50%, transparent 100%);
  background-repeat: no-repeat;
  background-size: 75px 100%;
  background-position: -75px 0;
  box-sizing: border-box;
  animation: animloader 1.5s linear infinite;
}

@media (max-width: 768px) {
  .banner-loader {
    height: 220px;
  }
}

.ql-editor {
  font-family: 'Segoe UI', system-ui, sans-serif;
  line-height: 1.5;
  color: #374151;
  font-size: 13px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (min-width: 769px) {
  .ql-editor {
    font-size: 14px;
  }
}

.ql-editor h1, .ql-editor h2, .ql-editor h3, .ql-editor h4, .ql-editor h5, .ql-editor h6 {
  font-weight: 600;
  margin-top: 1.2em;
  margin-bottom: 0.5em;
  word-wrap: break-word;
}

.ql-editor h1 {
  font-size: 1.2rem;
}

.ql-editor h2 {
  font-size: 1.1rem;
}

.ql-editor h3 {
  font-size: 1rem;
}

@media (min-width: 769px) {
  .ql-editor h1 {
    font-size: 1.4rem;
  }
  .ql-editor h2 {
    font-size: 1.3rem;
  }
  .ql-editor h3 {
    font-size: 1.2rem;
  }
}

.ql-editor p {
  margin-bottom: 0.8em;
  font-size: 13px;
  word-wrap: break-word;
}

@media (min-width: 769px) {
  .ql-editor p {
    font-size: 14px;
  }
}

.ql-editor ul, .ql-editor ol {
  padding-left: 1.2em;
  margin-bottom: 0.8em;
}

.ql-editor li {
  margin-bottom: 0.3em;
  font-size: 13px;
}

@media (min-width: 769px) {
  .ql-editor li {
    font-size: 14px;
  }
}

.ql-editor strong {
  font-weight: 600;
}

.ql-editor em {
  font-style: italic;
}

.ql-editor a {
  color: #4f46e5;
  text-decoration: underline;
}

.ql-editor blockquote {
  border-left: 3px solid #e5e7eb;
  padding-left: 0.8em;
  margin: 0.8em 0;
  font-style: italic;
  font-size: 13px;
}

@media (min-width: 769px) {
  .ql-editor blockquote {
    font-size: 14px;
  }
}

.ql-editor ul li {
  list-style-type: disc;
}

.ql-editor ol li {
  list-style-type: decimal;
}

.small-text {
  font-size: 13px;
}

@media (min-width: 769px) {
  .small-text {
    font-size: 14px;
  }
}

.meta-item {
  font-size: 12px;
}

@media (min-width: 769px) {
  .meta-item {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .register-btn-mobile {
    width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.btn-disabled {
  background-color: #9ca3af;
  cursor: not-allowed;
}

.btn-disabled:hover {
  background-color: #9ca3af;
}

.share-btn {
  cursor: pointer;
}

.small-text {
  font-size: 13px;
}

@media (min-width: 769px) {
  .small-text {
    font-size: 14px;
  }
}

.smaller-text {
  font-size: 12px;
}

@media (min-width: 769px) {
  .smaller-text {
    font-size: 13px;
  }
}

.blue-theme-card {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border: 1px solid #bae6fd;
}

.blue-icon-bg {
  background-color: #dbeafe;
}

.blue-icon {
  color: #1d4ed8;
}

.blue-text {
  color: #1e40af;
}