/* Welcome Message CSS for Layout 1 */
.welcome-container {
  padding: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.welcome-header {
  margin-bottom: 32px;
}
.welcome-header h2 {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 8px 0;
}
.welcome-header p {
  font-size: 13px;
  color: #374151;
  margin: 0;
}

.welcome-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
@media (max-width: 1024px) {
  .welcome-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .welcome-grid { grid-template-columns: 1fr; }
}

.welcome-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px;
  position: relative;
  transition: all 0.2s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.welcome-card:hover {
  border-color: #3b82f6;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.05);
}

.welcome-card-icon {
  color: #3b82f6;
  font-size: 20px;
  margin-bottom: 16px;
}

.welcome-card h3 {
  font-size: 14px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 8px 0;
}

.welcome-card p {
  font-size: 12px;
  color: #6b7280;
  line-height: 1.5;
  margin: 0;
}

.welcome-more {
  position: absolute;
  top: 24px;
  right: 24px;
  color: #9ca3af;
  cursor: pointer;
}
.welcome-more:hover { color: #374151; }

.welcome-bottom-action {
  text-align: center;
}
.welcome-bottom-action a {
  font-size: 11px;
  font-weight: 600;
  color: #3b82f6;
  text-decoration: none;
  text-transform: uppercase;
}
.welcome-bottom-action a:hover {
  text-decoration: underline;
}

/* Welcome Modal Styles */
.welcome-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.welcome-modal-overlay.show {
  opacity: 1;
  visibility: visible;
}
.welcome-modal {
  background: #fff;
  border-radius: 12px;
  width: 90%;
  max-width: 500px;
  padding: 32px;
  position: relative;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transform: translateY(-20px);
  transition: transform 0.3s ease;
}
.welcome-modal-overlay.show .welcome-modal {
  transform: translateY(0);
}
.welcome-modal-close {
  position: absolute;
  top: 16px; right: 16px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  width: 32px; height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  cursor: pointer;
  transition: all 0.2s;
}
.welcome-modal-close:hover {
  background: #f9fafb;
  color: #111827;
}
.welcome-modal-img {
  width: 200px;
  margin: 0 auto 24px;
  display: block;
}
.welcome-modal h3 {
  font-size: 24px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 16px;
}
.welcome-modal p {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.6;
  margin: 0 0 32px;
  padding: 0 16px;
}
.welcome-modal-btn-primary {
  display: inline-block;
  background: #3b82f6;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  margin-bottom: 16px;
  width: auto;
  min-width: 200px;
}
.welcome-modal-btn-primary:hover {
  background: #2563eb;
}
.welcome-modal-btn-secondary {
  display: block;
  color: #111827;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  margin: 0 auto;
}
.welcome-modal-btn-secondary:hover {
  text-decoration: underline;
}

/* Additional styles for Welcome Message 2 Modal */
.welcome-modal-btn-outline {
  display: block;
  background: #fff;
  color: #111827;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  border: 1px solid #e5e7eb;
  cursor: pointer;
  margin: 0 auto 16px;
  width: auto;
  min-width: 200px;
}
.welcome-modal-btn-outline:hover {
  background: #f9fafb;
}
.confetti-canvas {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: -1;
  border-radius: 12px;
}
