.csk-chat-overlay {
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: 50;
    font-family: Arial, sans-serif;
    color: white;
}

@media (max-width: 768px) {
    .csk-chat-overlay {
        bottom: 10%;
    }
}

.csk-chat-container {
    width: 350px;
    max-width: 28rem;
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 0.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    color: white;
}

.csk-chat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid #333;
}

.csk-header-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.csk-avatar {
    width: 2rem;
    height: 2rem;
    background-color: #f0b90b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-weight: bold;
}

.csk-header-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.csk-icon-btn {
    background: none;
    border: none;
    color: #888;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 0.25rem;
    transition: color 0.2s;
}

.csk-icon-btn:hover {
    color: #fff;
}

.csk-chat-content {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
}

.csk-message {
    display: flex;
    margin-bottom: 0.75rem;
}

.csk-message.csk-bot {
    justify-content: flex-start;
}

.csk-message.csk-user {
    justify-content: flex-end;
}

.csk-message-bubble {
    max-width: 80%;
    padding: 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
}

.csk-message-bubble.csk-bot {
    background-color: #2a2a2a;
    color: #fff;
}

.csk-message-bubble.csk-user {
    background-color: #f0b90b;
    color: #000;
}

.csk-section {
    margin-bottom: 1.5rem;
}

.csk-section-title {
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.csk-login-issues {
    margin-bottom: 0.75rem;
}

.csk-issue-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: #888;
}

.csk-issue-number {
    color: #f0b90b;
}

.csk-primary-btn {
    width: 100%;
    background-color: #f0b90b;
    color: #000;
    border: none;
    padding: 0.75rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.csk-primary-btn:hover {
    background-color: #d4a017;
}

.csk-quick-action {
    width: 100%;
    text-align: left;
    padding: 3px;
    border-radius: 0.5rem;
    background-color: #1A1A1A;
    border: none;
    color: #FFFFFF;
    font-size: 0.875rem;
    cursor: pointer;
    margin-bottom: 0.5rem;
    transition: background-color 0.2s;
}

.csk-quick-action:hover {
    background-color: #333;
}

.csk-contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.csk-contact-btn {
    padding: 10px 3px;
    border-radius: 0.5rem;
    background-color: #2a2a2a;
    border: none;
    color: #fff;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.2s;
}

.csk-contact-btn:hover {
    background-color: #333;
}

.csk-contact-icon {
    width: 2rem;
    height: 2rem;
    margin: 0 auto 0.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.875rem;
}

.csk-telegram {
    background-color: #0088cc;
}

.csk-qq {
    background-color: #1e6fff;
}

.csk-wechat {
    background-color: #07c160;
}

.csk-dingtalk {
    background-color: #00a6fb;
}

.csk-contact-name {
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.csk-contact-desc {
    font-size: 0.75rem;
    color: #888;
}

.csk-login-prompt {
    background-color: rgba(42, 42, 42, 0.5);
    border: 1px solid #333;
    border-radius: 0.5rem;
    padding: 1rem;
}

.csk-login-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
}

.csk-indicator-dot {
    width: 0.5rem;
    height: 0.5rem;
    background-color: #f0b90b;
    border-radius: 50%;
}

.csk-login-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.csk-outline-btn {
    width: 100%;
    background: transparent;
    color: #fff;
    border: 1px solid #333;
    padding: 0.75rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: border-color 0.2s;
}

.csk-outline-btn:hover {
    border-color: #555;
}

.csk-chat-input {
    padding: 1rem;
    border-top: 1px solid #333;
}

.csk-input-container {
    display: flex;
    gap: 0.5rem;
}

.csk-message-input {
    flex: 1;
    background-color: #2a2a2a;
    border: 1px solid #333;
    border-radius: 0.5rem;
    padding: 0.75rem;
    color: #fff;
    font-size: 0.875rem;
}

.csk-message-input::placeholder {
    color: #888;
}

.csk-send-btn {
    background-color: #f0b90b;
    color: #000;
    border: none;
    padding: 0.75rem;
    border-radius: 0.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.csk-back-btn {
    background: none;
    border: none;
    color: #888;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 0.25rem;
    margin-right: 0.75rem;
}

.csk-card-fcs {
    background-color: #2a2a2a;
    border: 1px solid #333;
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 0.75rem;
}

.csk-card-title {
    font-weight: 500;
    color: #f0b90b;
    margin-bottom: 0.75rem;
}

.csk-card-list {
    list-style: none;
    margin-bottom: 0.75rem;
}

.csk-card-list li {
    font-size: 0.875rem;
    color: #888;
    margin-bottom: 0.5rem;
}

.csk-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    border: 1px solid #333;
    background-color: transparent;
    color: #888;
}

.csk-status-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.csk-status-verified {
    background-color: #333;
    color: #fff;
}

.csk-hidden {
    display: none;
}

.csk-float-bar {
    position: fixed;
    right: 20px;
    bottom: 20%;
    width: 60px;
    height: 60px;
    border-radius: 20%;
    background-color: #F0B90B;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 10px;
    z-index: 999;
}
.csk-float-bar:hover {
    background-color: #D4A017;
    width: 80px;
}

.csk-floatBar-label {
    color: #1E1F22;
    padding: 6px;
    font-weight: bold;
    font-size: 18px;
}


.csk-float-bar .csk-floatBar-label {
    display: none;
    transition: opacity 0.2s;
}
.csk-float-bar:hover .csk-floatBar-label {
    display: inline;
}

.activity-popup-container {
    width: 100%;
    max-width: 800px;
    background: linear-gradient(135deg, #111827 0%, rgba(34, 197, 94, 0.2) 50%, #111827 100%);
    border: 1px solid rgba(34, 197, 94, 0.6);
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(34, 197, 94, 0.3);
    position: relative;
    overflow: hidden;
    padding: 10px 32px;
    max-height:600px;
}

.activity-close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    background: transparent;
    border: none;
    color: #d1d5db;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.activity-close-btn:hover {
    background: rgba(34, 197, 94, 0.2);
    color: #86efac;
}

.activity-header {
    text-align: center;
    margin-bottom: 10px;
}

.activity-header-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin:3px ;
}

.activity-header-title h1 {
    font-size: 2.25rem;
    font-weight: 900;
    background: linear-gradient(to right, #bbf7d0, #a7f3d0, #86efac);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.activity-gift-icon {
    width: 32px;
    height: 32px;
    color: #4ade80;
}

.activity-date-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #86efac;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 9999px;
    padding: 8px 16px;
    border: 1px solid rgba(34, 197, 94, 0.3);
    font-size: 1rem;
    font-weight: 500;
}

.activity-clock-icon {
    width: 20px;
    height: 20px;
}

.activity-activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 10px;
    margin-bottom: 10px;
}

.activity-activity-card {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.25), rgba(16, 185, 129, 0.25));
    border: 1px solid rgba(34, 197, 94, 0.5);
    border-radius: 12px;
    padding: 10px;
    transition: all 0.3s ease;
}

.activity-activity-card:hover {
    box-shadow: 0 10px 25px -3px rgba(34, 197, 94, 0.2);
}

.activity-anniversary-card {
    background: linear-gradient(135deg, rgba(234, 179, 8, 0.2), rgba(34, 197, 94, 0.25));
    border: 1px solid rgba(234, 179, 8, 0.5);
}

.activity-anniversary-card:hover {
    box-shadow: 0 10px 25px -3px rgba(234, 179, 8, 0.2);
}

.activity-card-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
}

.activity-card-icon {
    width: 20px;
    height: 20px;
    color: #4ade80;
}

.activity-anniversary-icon {
    color: #facc15;
}

.activity-badge {
    background: #22c55e;
    color: #000;
    padding: 4px 12px;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
}

.activity-anniversary-badge {
    background: #eab308;
}

.activity-emerald-badge {
    background: #10b981;
}

.activity-card-title {
    color: #bbf7d0;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 3px;
    margin-top:3px;
}

.activity-anniversary-title {
    color: #fef3c7;
}

.activity-card-description {
    color: #d1d5db;
    font-size: 0.875rem;
    margin-top: 4px;
    margin-bottom: 4px;
}

.activity-cta-section {
    text-align: center;
    background: linear-gradient(to right, rgba(34, 197, 94, 0.1), rgba(16, 185, 129, 0.1));
    border-radius: 16px;
    padding: 10px 32px;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.activity-cta-content {
    margin-bottom: 12px;
}

.activity-cta-title {
    font-size: 1.775rem;
    background: linear-gradient(to right, #bbf7d0, #a7f3d0, #86efac);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 12px;
    margin-top: 12px;
}

.activity-cta-subtitle {
    font-size: 1.15rem;
    color: #86efac;
    font-weight: 700;
    margin-bottom: 8px;
    margin-top: 8px;
}

.activity-cta-description {
    color: #d1d5db;
    font-size: 1.38rem;
}

.activity-contact-btn {
    width: 100%;
    background: linear-gradient(to right, #22c55e, #10b981);
    color: #000;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 16px;
    border: 2px solid rgba(34, 197, 94, 0.5);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-size: 1.3rem;
}

.activity-contact-btn:hover {
    background: linear-gradient(to right, #16a34a, #059669);
    transform: scale(1.02);
}

.activity-message-icon {
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .activity-header-h2 {
        font-size: 1.25rem;
    }
    .activity-cta-title {
        font-size: 1.35rem;
    }
    .activity-popup-container {
        padding: 24px;
    }

    .activity-header-title h1 {
        font-size: 1.875rem;
    }

    .activity-activities-grid {
        grid-template-columns: 1fr;
    }
    .activity-mobile-noon{
        display: none;
    }
    .activity-contact-btn {
        font-size: 1.25rem;
    }
    .activity-cta-subtitle{
        font-size: 0.8rem;
    }
    .activity-cta-description{
        font-size: 1rem;
    }
}

.activity-popup-overlay {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.activity-popup-overlay.hidden {
    display: none;
}
.activity-header-h2{
    margin: 5px;
}

/* 你的原有样式保持不变 */
.adrt-card {
  width: 300px;
  background: #0E0F11;
  border-color:#333333;
  border-width: 1px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgb(0 0 0 / 0.08);
  font-family: "Microsoft YaHei", Arial, sans-serif;
  overflow: hidden;
  margin: 0 auto;
}

.adrt-top {
  display: flex;
  align-items: center;
  padding: 20px 16px 12px 16px;
  gap: 16px;
}

.adrt-imgbox {
  width: 64px;
  height: 64px;
  background: #000;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  overflow: hidden;
}

.adrt-imgbox img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.adrt-text {
  flex: 1;
}

.adrt-text h3 {
  margin: 0 0 6px 0;
  font-size: 19px;
  font-weight: 700;
  color: #fff;
}

.adrt-text p {
  margin: 0;
  font-size: 14px;
  color: #fff;
  line-height: 1.5;
  min-height: 80px;
}

.adrt-bottom {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
}

.btn {
  display: inline-block;
  padding: 10px 0;
  width: 130px;
  font-size: 15px;
  border-radius: 4px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  user-select: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
  font-weight: 500;
}

.btn-download {
  background-color: #4caf50;
}

.btn-download:hover {
  background-color: #37943d;
}

.btn-register {
  background-color: #2196f3;
}

.btn-register:hover {
  background-color: #136bc3;
}

/* 新增父容器样式，控制两个卡片并列 */
.adrt-container {
  display: inline-flex;
  gap: 24px;
  justify-content: center;
  padding: 20px;
  /* 支持换行 */
}

/* 移动端适配 */
@media (max-width: 768px) {
  .adrt-container {
    flex-direction: column;
    gap: 16px;
    padding: 12px;
    align-items: center;
  }

  .adrt-card {
    width: 90%;
    /* 移动端卡片宽度自适应 */
    margin: 0;
  }

  .adrt-bottom {
    flex-direction: column;
    gap: 10px;
    padding: 12px;
  }

  .btn {
    width: 100%;
    font-size: 16px;
  }
}