[v-cloak] {
  display: none;
}
.user-info {
  align-items: center;
  display: flex;
  gap: 8px;
  height: auto;
}
.user-name {
  color: #fff;
  font-weight: 500;
}
.dropdown-arrow {
  align-items: center;
  color: #ccc;
  display: inline-flex;
  flex-shrink: 0;
  font-size: 12px;
  height: 16px;
  justify-content: center;
  position: relative;
  transform-origin: center center;
  transition: transform 0.3s ease;
  vertical-align: middle;
  width: 16px;
}
.dropdown-arrow.rotated {
  transform: rotate(180deg) translateY(-0.5px);
}
@keyframes floatBackground {
  0%,
  to {
    transform: translate(0) rotate(0deg);
  }
  33% {
    transform: translate(-20px, -20px) rotate(1deg);
  }
  66% {
    transform: translate(20px, -10px) rotate(-1deg);
  }
}
.guests-section.guests-section,
body .guests-section {
  border: none;
  min-height: 600px;
  overflow: hidden;
  padding: 80px 0 100px;
  position: relative;
}
.guests-section.guests-section:before,
body .guests-section:before {
  animation: floatBackground 20s ease-in-out infinite;
  content: "";
  height: 200%;
  left: -50%;
  position: absolute;
  top: -50%;
  width: 200%;
  z-index: 0;
}
.guests-section.guests-section:after,
body .guests-section:after {
  background-size: 60px 60px;
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0.5;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}
.guests-section .container {
  position: relative;
  z-index: 2;
}
.contact-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}
.contact-link:hover {
  color: #3b82f6;
  text-decoration: none;
}
.storage-warning-section {
  background-color: #f8f9fa;
  padding: 20px 0;
}
.alert {
  align-items: center;
  border: 1px solid;
  border-radius: 8px;
  display: flex;
  gap: 10px;
  padding: 15px 20px;
}
.alert-warning {
  background-color: #fff3cd;
  border-color: #ffeaa7;
  color: #856404;
}
.alert i {
  flex-shrink: 0;
  font-size: 18px;
}
.guests-header {
  margin-bottom: 60px;
  position: relative;
  z-index: 3;
}
.guests-title {
  color: #1e293b;
  display: inline-block;
  font-size: 2.5rem;
  font-weight: 700;
  position: relative;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.guests-subtitle p {
  color: #64748b;
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  margin-top: 20px;
  position: relative;
  z-index: 3;
}
.guests-section .guests-showcase,
body .guests-showcase {
  backdrop-filter: blur(15px);
  /* background: hsla(0, 0%, 100%, 0.6); */
  border: 1px solid hsla(0, 0%, 100%, 0.3);
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08), 0 0 0 1px hsla(0, 0%, 100%, 0.2);
  padding: 20px;
  position: relative;
  z-index: 3;
}
.guest-modal-overlay {
  backdrop-filter: blur(8px);
  background: rgba(15, 23, 42, 0.7);
}
.guest-modal {
  background: linear-gradient(145deg, #fff, #f8fafc);
  border: 1px solid hsla(0, 0%, 100%, 0.2);
  border-radius: 24px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  max-height: 90vh;
  max-width: 800px;
  overflow-x: hidden;
  overflow-y: auto;
  width: 95%;
}
.guest-modal::-webkit-scrollbar {
  width: 8px;
}
.guest-modal::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 4px;
}
.guest-modal::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  border-radius: 4px;
}
.guest-modal::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #2563eb, #4f46e5);
}
.guest-modal-header {
  background: linear-gradient(145deg, #fff, #f8fafc);
  display: flex;
  justify-content: flex-end;
  padding: 15px 20px 0;
  position: sticky;
  right: 0;
  top: 0;
  z-index: 10;
}
.modal-close-btn {
  align-items: center;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 50%;
  color: #ef4444;
  display: flex;
  font-size: 16px;
  height: 40px;
  justify-content: center;
  transition: all 0.3s ease;
  width: 40px;
}
.modal-close-btn:hover {
  background: #ef4444;
  color: #fff;
  transform: scale(1.1);
}
.guest-modal-avatar {
  background: linear-gradient(135deg, #667eea, #764ba2);
  padding: 40px;
  position: relative;
  text-align: center;
}
.modal-avatar {
  border: 4px solid hsla(0, 0%, 100%, 0.3);
  border-radius: 50%;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  height: 120px;
  width: 120px;
}
.modal-badge {
  align-items: center;
  background: linear-gradient(45deg, #f59e0b, #f97316);
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
  color: #fff;
  display: flex;
  font-size: 14px;
  height: 32px;
  justify-content: center;
  position: absolute;
  right: calc(50% - 80px);
  top: 50px;
  width: 32px;
}
.modal-guest-name {
  background: linear-gradient(135deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  color: #1e293b;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 24px;
  text-align: center;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.guest-modal-info {
  padding: 32px 40px 40px;
}
.detail-section {
  background: linear-gradient(145deg, #fff, #f1f5f9);
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  margin-bottom: 16px;
  overflow: hidden;
  padding: 20px 24px;
  position: relative;
  transition: all 0.3s ease;
}
.detail-section:before {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 4px;
}
.detail-section:hover {
  border-color: #cbd5e1;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}
.detail-title {
  color: #1e293b;
  font-size: 1.1rem;
  font-weight: 600;
  gap: 12px;
  margin: 0 0 12px;
}
.detail-title,
.detail-title i {
  align-items: center;
  display: flex;
}
.detail-title i {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
  color: #fff;
  font-size: 12px;
  height: 24px;
  justify-content: center;
  width: 24px;
}
.detail-content {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  text-align: left;
  text-indent: 2em;
}
.work-units {
  display: grid;
  gap: 12px;
  margin-top: 4px;
}
.work-unit-item {
  background: linear-gradient(145deg, #f8fafc, #e2e8f0);
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  color: #374151;
  font-size: 0.9rem;
  margin: 0;
  overflow: hidden;
  padding: 14px 18px;
  position: relative;
  transition: all 0.3s ease;
}
.work-unit-item:before {
  background: linear-gradient(135deg, #10b981, #059669);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 3px;
}
.work-unit-item:hover {
  background: linear-gradient(145deg, #ecfdf5, #d1fae5);
  border-color: #10b981;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.15);
  transform: translateX(4px);
}
.detail-section:nth-child(2) .detail-title i {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}
.detail-section:nth-child(3) .detail-title i {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}
.detail-section:nth-child(4) .detail-title i {
  background: linear-gradient(135deg, #06b6d4, #0891b2);
}
.detail-section:nth-child(5) .detail-title i {
  background: linear-gradient(135deg, #ec4899, #db2777);
}
.detail-section:nth-child(6) .detail-title i {
  background: linear-gradient(135deg, #f97316, #ea580c);
}
.detail-section:nth-child(7) .detail-title i {
  background: linear-gradient(135deg, #10b981, #059669);
}
.detail-section:nth-child(8) .detail-title i {
  background: linear-gradient(135deg, #6366f1, #4f46e5);
}
@media (max-width: 768px) {
  .guests-section {
    padding: 60px 0 80px;
  }
  .guests-showcase {
    border-radius: 16px;
    padding: 30px 15px;
  }
  .guests-section:after {
    background-size: 40px 40px;
  }
  .guest-modal {
    border-radius: 16px;
    width: 98%;
  }
  .guest-modal-avatar {
    padding: 30px 20px;
  }
  .modal-avatar {
    height: 100px;
    width: 100px;
  }
  .guest-modal-info {
    padding: 24px 20px 30px;
  }
  .modal-guest-name {
    font-size: 1.6rem;
  }
  .detail-section {
    margin-bottom: 12px;
    padding: 16px 20px;
  }
  .modern-header {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 0;
  }
  .header-top {
    background: linear-gradient(135deg, #dc2626, #b91c1c 50%, #991b1b);
    border-bottom: 3px solid #f59e0b;
    padding: 15px 0;
  }
  .header-brand {
    align-items: center;
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  .logo-wrapper {
    flex-shrink: 0;
  }
  .brand-logo {
    border: 3px solid hsla(0, 0%, 100%, 0.3);
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    height: 80px;
    transition: all 0.3s ease;
    width: 80px;
  }
  .brand-logo:hover {
    border-color: #f59e0b;
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.3);
    transform: scale(1.05);
  }
  .brand-info {
    color: #fff;
    max-width: 100%;
  }
  .brand-title {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 8px;
    padding: 0 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  }
  .brand-subtitle {
    color: hsla(0, 0%, 100%, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 12px;
    padding: 0 15px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  }
  .brand-meta {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .conference-date,
  .conference-location {
    align-items: center;
    backdrop-filter: blur(10px);
    background: hsla(0, 0%, 100%, 0.1);
    border: 1px solid hsla(0, 0%, 100%, 0.2);
    border-radius: 15px;
    color: hsla(0, 0%, 100%, 0.95);
    display: flex;
    font-size: 0.85rem;
    font-weight: 500;
    gap: 6px;
    padding: 4px 12px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  }
  .conference-date i,
  .conference-location i {
    color: #f59e0b;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
    font-size: 0.8rem;
  }
  .header-nav {
    backdrop-filter: blur(10px);
    background: rgba(220, 38, 38, 0.95);
    border-bottom: 2px solid rgba(245, 158, 11, 0.3);
  }
  .nav-container {
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding: 8px 15px;
  }
  .nav-actions {
    align-items: center;
    display: flex;
    gap: 8px;
  }
  .auth-buttons {
    display: flex;
    gap: 6px;
  }
  .auth-btn {
    align-items: center;
    border-radius: 20px;
    display: flex;
    font-size: 0.8rem;
    font-weight: 500;
    gap: 4px;
    padding: 6px 12px;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  .login-btn {
    background: hsla(0, 0%, 100%, 0.1);
    border: 1px solid hsla(0, 0%, 100%, 0.3);
    color: #fff;
  }
  .login-btn:hover {
    background: hsla(0, 0%, 100%, 0.2);
    color: #fff;
    transform: translateY(-1px);
  }
  .register-btn {
    background: #f59e0b;
    border: 1px solid #f59e0b;
    color: #fff;
  }
  .register-btn:hover {
    background: #d97706;
    border-color: #d97706;
    transform: translateY(-1px);
  }
  .mobile-menu-btn {
    background: hsla(0, 0%, 100%, 0.1);
    border: 2px solid hsla(0, 0%, 100%, 0.2);
    border-radius: 8px;
    display: flex;
    padding: 8px;
    transition: all 0.3s ease;
  }
  .mobile-menu-btn:hover {
    background: hsla(0, 0%, 100%, 0.2);
    border-color: #f59e0b;
    transform: scale(1.05);
  }
  .mobile-menu-btn span {
    background: hsla(0, 0%, 100%, 0.9);
    border-radius: 2px;
    transition: all 0.3s ease;
  }
  .mobile-menu-btn:hover span {
    background: #f59e0b;
  }
  .notice-card {
    flex-direction: column;
    gap: 15px;
    padding: 20px 15px;
    text-align: center;
  }
  .notice-icon {
    display: none;
  }
  .notice-content {
    flex: 1;
  }
  .notice-title {
    color: #1f2937;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
  }
  .notice-text {
    color: #4b5563;
    display: -webkit-box;
    font-size: 0.95rem;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: left;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .notice-link {
    align-items: center;
    background: #3b82f6;
    border-radius: 20px;
    color: #fff;
    display: inline-flex;
    font-size: 0.85rem;
    font-weight: 500;
    gap: 6px;
    padding: 8px 16px;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  .notice-link:hover {
    background: #2563eb;
    color: #fff;
    transform: translateY(-1px);
  }
}
@media (max-width: 480px) {
  .header-top {
    padding: 12px 0;
  }
  .brand-logo {
    height: 70px;
    width: 70px;
  }
  .brand-title {
    font-size: 1.1rem;
    padding: 0 8px;
  }
  .brand-subtitle {
    font-size: 0.8rem;
    padding: 0 12px;
  }
  .conference-date,
  .conference-location {
    font-size: 0.75rem;
    padding: 3px 10px;
  }
  .auth-btn {
    font-size: 0.75rem;
    padding: 5px 8px;
  }
  .auth-btn span {
    display: none;
  }
  .auth-btn i {
    font-size: 0.9rem;
  }
  .notice-title {
    font-size: 1.1rem;
  }
  .notice-text {
    font-size: 0.9rem;
    -webkit-line-clamp: 3;
    line-clamp: 3;
  }
  .notice-link {
    font-size: 0.8rem;
    padding: 6px 12px;
  }
}
@media (max-width: 768px) and (orientation: landscape) {
  .header-top {
    padding: 10px 0;
  }
  .header-brand {
    align-items: center;
    flex-direction: row;
    gap: 15px;
  }
  .brand-logo {
    height: 60px;
    width: 60px;
  }
  .brand-info {
    flex: 1;
    text-align: left;
  }
  .brand-title {
    font-size: 1.1rem;
    margin-bottom: 4px;
  }
  .brand-subtitle {
    font-size: 0.8rem;
    margin-bottom: 6px;
  }
  .brand-meta {
    flex-direction: row;
    gap: 10px;
    justify-content: flex-start;
  }
  .conference-date,
  .conference-location {
    font-size: 0.7rem;
    padding: 2px 8px;
  }
}
.countdown-conference {
  background: linear-gradient(135deg, #dc2626, #ef4444);
  border: 2px solid #dc2626;
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
}
.countdown-conference .countdown-number {
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.countdown-conference .countdown-desc {
  color: #fef2f2;
  font-weight: 600;
}
.countdown-paper {
  background: linear-gradient(135deg, #ea580c, #f97316);
  border: 2px solid #ea580c;
  box-shadow: 0 8px 25px rgba(234, 88, 12, 0.3);
}
.countdown-paper .countdown-number {
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.countdown-paper .countdown-desc {
  color: #fff7ed;
  font-weight: 600;
}
.countdown-oral {
  background: linear-gradient(135deg, #059669, #10b981);
  border: 2px solid #059669;
  box-shadow: 0 8px 25px rgba(5, 150, 105, 0.3);
}
.countdown-oral .countdown-number {
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.countdown-oral .countdown-desc {
  color: #ecfdf5;
  font-weight: 600;
}
.countdown-poster {
  background: linear-gradient(135deg, #7c3aed, #8b5cf6);
  border: 2px solid #7c3aed;
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.3);
}
.countdown-poster .countdown-number {
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.countdown-poster .countdown-desc {
  color: #faf5ff;
  font-weight: 600;
}
.countdown-registration {
  background: linear-gradient(135deg, #0891b2, #06b6d4);
  border: 2px solid #0891b2;
  box-shadow: 0 8px 25px rgba(8, 145, 178, 0.3);
}
.countdown-registration .countdown-number {
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.countdown-registration .countdown-desc {
  color: #ecfeff;
  font-weight: 600;
}
.section-title-link {
  color: #2c3e50;
  text-decoration: none;
  transition: all 0.3s ease;
}
.section-title-link:hover {
  color: #3498db;
  text-decoration: none;
}
.section-title-link i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}
.section-title-link:hover i {
  transform: translateX(4px);
}
.registration-more {
  margin: 20px;
  text-align: center;
}
.registration-more .btn {
  align-items: center;
  border-radius: 25px;
  display: inline-flex;
  font-weight: 600;
  gap: 8px;
  padding: 12px 24px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.registration-more .btn:hover {
  box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
  transform: translateY(-2px);
}
.notice-title {
  backdrop-filter: blur(10px);
  background: linear-gradient(
    135deg,
    #dc2626,
    #ef4444 25%,
    #f97316 50%,
    #ea580c 75%,
    #dc2626
  );
  border: 2px solid hsla(0, 0%, 100%, 0.1);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(220, 38, 38, 0.4),
    0 4px 16px rgba(239, 68, 68, 0.3), inset 0 1px 0 hsla(0, 0%, 100%, 0.2);
  color: #fff;
  display: inline-block;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  padding: 1rem 2rem;
  position: relative;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  transform: perspective(1000px) rotateX(5deg);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.notice-title:before {
  background: linear-gradient(135deg, #fbbf24, #f59e0b, #d97706, #92400e);
  border-radius: 14px;
  bottom: -2px;
  content: "";
  filter: blur(8px);
  left: -2px;
  opacity: 0.8;
  position: absolute;
  right: -2px;
  top: -2px;
  z-index: -1;
}
.notice-title:after {
  animation: pulse 2s infinite;
  content: "🚨";
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  font-size: 1.5rem;
  position: absolute;
  right: -8px;
  top: -8px;
}
.notice-title:hover {
  box-shadow: 0 12px 40px rgba(220, 38, 38, 0.5),
    0 6px 20px rgba(239, 68, 68, 0.4), inset 0 1px 0 hsla(0, 0%, 100%, 0.3);
  transform: perspective(1000px) rotateX(0deg) translateY(-3px);
}
@keyframes pulse {
  0%,
  to {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.2) rotate(10deg);
  }
}
@media (max-width: 768px) {
  .notice-title {
    font-size: 1.5rem;
    padding: 0.8rem 1.5rem;
  }
  .notice-title:after {
    font-size: 1.2rem;
    right: -6px;
    top: -6px;
  }
}
@media (max-width: 480px) {
  .notice-title {
    font-size: 1.3rem;
    padding: 0.6rem 1.2rem;
  }
}
@media (max-width: 768px) {
  .guests-section {
    min-height: auto;
    padding: 60px 0 80px;
  }
  .guests-title {
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
  }
  .guests-subtitle {
    margin-bottom: 30px;
    text-align: center;
  }
  .guests-showcase {
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    margin: 20px 10px;
    padding: 35px 25px;
  }
  .guests-carousel-modern {
    margin-bottom: 20px;
    padding: 20px 0;
  }
  .guests-slide {
    gap: 25px;
    min-width: 100%;
  }
  .guest-row,
  .guests-slide {
    display: flex;
    flex-direction: column;
  }
  .guest-row {
    align-items: center;
    gap: 20px;
    margin-bottom: 0;
    padding: 0 20px;
  }
  .guest-card {
    max-width: 200px;
    min-width: 180px;
    width: 100%;
  }
  .guest-card-inner {
    align-items: center;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 300px;
    justify-content: center;
    padding: 30px 25px;
    transition: all 0.3s ease;
  }
  .guest-card:hover .guest-card-inner {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
    transform: translateY(-3px);
  }
  .guest-avatar-container {
    flex-shrink: 0;
  }
  .guest-avatar {
    border-width: 4px;
    height: 120px;
    width: 120px;
  }
  .guest-info {
    align-items: center;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 8px;
    justify-content: center;
    text-align: center;
  }
  .guest-name {
    font-size: 1.1rem;
    font-weight: 700;
  }
  .guest-name,
  .guest-title {
    line-height: 1.4;
    max-width: 160px;
  }
  .guest-title {
    font-size: 0.9rem;
    font-weight: 500;
  }
  .guest-org {
    font-size: 0.8rem;
    line-height: 1.4;
    max-width: 160px;
  }
  .guests-controls-modern {
    align-items: center;
    flex-direction: row;
    gap: 15px;
    justify-content: space-between;
    padding: 20px 0;
  }
  .control-btn {
    font-size: 0.8rem;
    min-width: 80px;
    padding: 10px 15px;
  }
  .control-btn span {
    display: none;
  }
  .pagination-modern {
    display: flex;
    flex: 1;
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .guests-section {
    padding: 40px 0 60px;
  }
  .guests-title {
    font-size: 1.6rem;
    margin-bottom: 15px;
  }
  .guests-showcase {
    margin: 10px 0;
    padding: 20px 15px;
  }
  .guest-row {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 0;
    padding: 0 15px;
  }
  .guest-card {
    max-width: 180px;
    min-width: 160px;
    width: 100%;
  }
  .guest-card-inner {
    gap: 16px;
    height: 280px;
    padding: 25px 20px;
  }
  .guest-avatar {
    border-width: 3px;
    height: 110px;
    width: 110px;
  }
  .guest-info {
    gap: 6px;
  }
  .guest-name {
    font-size: 1rem;
    font-weight: 700;
    max-width: 140px;
  }
  .guest-card:hover .guest-info .guest-name {
    color: #3498db;
  }
  .guest-title {
    font-size: 0.85rem;
    font-weight: 500;
    max-width: 140px;
  }
  .guest-org {
    font-size: 0.75rem;
    max-width: 140px;
  }
  .control-btn {
    font-size: 0.75rem;
    min-width: 70px;
    padding: 8px 12px;
  }
}
