/* Preserved dashboard widget/messaging/achievement styles */

    /* CSS kill-switch: Hide any zombie legacy composers not inside the shared panel or dashboard */
    textarea#messageInput:not(#messageSystem textarea#messageInput):not(#dashboardMessaging textarea#dbMessageInput),
    #messagesContainer:not(#messageSystem #messagesContainer):not(#dashboardMessaging #dbMessagesContainer),
    #sendMessageBtn:not(#messageSystem #sendMessageBtn):not(#dashboardMessaging #dbSendMessageBtn) {
      display: none !important;
    }

    /* Explicitly show the shared panel and dashboard messaging */
    #messageSystem #messageArea,
    #dashboardMessaging #dbMessageArea {
      display: flex;
      flex-direction: column;
      min-height: 0;
    }

    #messageSystem #messagesContainer,
    #dashboardMessaging #dbMessagesContainer {
      display: flex;
      flex-direction: column;
    }

    #messageSystem #messageInput,
    #dashboardMessaging #dbMessageInput {
      display: block;
    }

    #messageSystem #sendMessageBtn,
    #dashboardMessaging #dbSendMessageBtn {
      display: inline-flex !important;
    }
  
.camp-access-link-section {
      margin-top: 1.75rem;
      padding-top: 1.5rem;
      border-top: 1px solid var(--border-light);
      text-align: left;
      max-width: 28rem;
      margin-left: auto;
      margin-right: auto;
    }

    .camp-access-link-section {
      text-align: left;
    }

    .camp-access-link-summary {
      cursor: pointer;
      font-weight: 600;
      color: #112250;
      font-size: 0.95rem;
      list-style: none;
    }

    .camp-access-link-summary::-webkit-details-marker {
      display: none;
    }

    .camp-access-link-inner {
      margin-top: 0.85rem;
    }

    .camp-access-link-section p {
      margin: 0 0 0.85rem;
      color: var(--text-light);
      font-size: 0.9rem;
      line-height: 1.45;
    }

    .camp-access-link-row {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      justify-content: center;
      margin-bottom: 0.5rem;
    }

    .camp-access-code-input {
      flex: 1 1 12rem;
      min-width: 0;
      padding: 0.65rem 0.85rem;
      border: 1px solid #cbd5e1;
      border-radius: 8px;
      font-size: 0.95rem;
    }

    .camp-access-code-input:focus {
      outline: 2px solid rgba(17, 34, 80, 0.25);
      border-color: #112250;
    }

    .camp-access-link-status {
      min-height: 1.25rem;
      font-size: 0.88rem;
      margin-top: 0.35rem;
    }

    .camp-access-link-status.is-success {
      color: #047857;
    }

    .camp-access-link-status.is-error {
      color: #b91c1c;
    }

    .camp-access-link-helper {
      font-size: 0.82rem;
      color: #64748b;
      margin: 0.5rem 0 0;
      line-height: 1.4;
    }

    .camp-card--linked {
      border-left: 3px solid var(--olympic-blue);
    }

    .camp-card--pending {
      border-left: 3px solid #f59e0b;
    }

    .camp-card-status {
      margin: 0.35rem 0 0;
      font-size: 0.8rem;
      line-height: 1.35;
    }

    .camp-card-status--pending {
      color: #b45309;
    }

    .camp-card-status--linked {
      color: #0081C8;
    }

    .camp-card-status--paid {
      color: #047857;
    }

    .card-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 1.5rem;
    }

    .card-title {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--text-dark);
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .card-icon {
      width: 40px;
      height: 40px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 1.2rem;
    }

    .icon-calendar { background: var(--olympic-blue); }
    .icon-mentor { background: var(--olympic-red); }
    .icon-community { background: var(--olympic-green); }
    .icon-resources { background: var(--olympic-yellow); color: var(--text-dark); }
    .icon-achievements { background: var(--primary-gold); color: var(--text-dark); }
    .icon-messages { background: #6c5ce7; }

    /* Camp Sessions */
    .camp-session {
      background: #f8f9fa;
      border-radius: 12px;
      padding: 1.5rem;
      margin-bottom: 1rem;
      border-left: 4px solid var(--olympic-blue);
    }

    .session-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      margin-bottom: 1rem;
    }

    .session-title {
      font-weight: 600;
      color: var(--text-dark);
    }

    .session-date {
      color: var(--text-light);
      font-size: 0.9rem;
    }

    .session-details {
      display: flex;
      gap: 1rem;
      margin-bottom: 1rem;
    }

    .session-detail {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      color: var(--text-light);
      font-size: 0.9rem;
    }

    .join-btn {
      background: var(--olympic-blue);
      color: white;
      padding: 0.5rem 1rem;
      border: none;
      border-radius: 20px;
      cursor: pointer;
      font-weight: 500;
      transition: all 0.3s ease;
    }

    .join-btn:hover {
      background: #006bb3;
      transform: translateY(-2px);
    }

    /* Featured Olympians */
    .olympian-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1rem;
    }

    .olympian-card {
      background: #f8f9fa;
      border-radius: 12px;
      padding: 1.5rem;
      text-align: center;
      transition: transform 0.3s ease;
      cursor: pointer;
    }

    .olympian-card:hover {
      transform: translateY(-3px);
    }

    .olympian-avatar {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: var(--primary-gold);
      margin: 0 auto 1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-dark);
      font-weight: bold;
      font-size: 1.2rem;
    }

    .featured-olympian-avatar-skeleton {
      position: absolute;
      inset: 0;
      border-radius: 50%;
      background: linear-gradient(90deg, #e2e8f0 25%, #f1f5f9 37%, #e2e8f0 63%);
      background-size: 400% 100%;
      animation: featured-olympian-shimmer 1.1s ease-in-out infinite;
    }

    .featured-olympian-skeleton-list {
      display: grid;
      gap: 1rem;
    }

    .featured-olympian-skeleton-item {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 1rem;
      border-bottom: 1px solid #e2e8f0;
    }

    .featured-olympian-skeleton-avatar {
      width: 60px;
      height: 60px;
      flex-shrink: 0;
      position: relative;
      border-radius: 50%;
      overflow: hidden;
      background: #e2e8f0;
    }

    .featured-olympian-skeleton-copy {
      flex: 1;
      min-width: 0;
    }

    .featured-olympian-skeleton-line {
      height: 12px;
      border-radius: 999px;
      background: linear-gradient(90deg, #e2e8f0 25%, #f1f5f9 37%, #e2e8f0 63%);
      background-size: 400% 100%;
      animation: featured-olympian-shimmer 1.1s ease-in-out infinite;
      margin-bottom: 0.5rem;
    }

    .featured-olympian-skeleton-line:last-child {
      margin-bottom: 0;
    }

    .featured-olympian-skeleton-line.name {
      width: 45%;
      height: 14px;
    }

    .featured-olympian-skeleton-line.sport {
      width: 30%;
    }

    .featured-olympian-skeleton-line.bio {
      width: 80%;
    }

    .featured-olympian-skeleton-line.bio-short {
      width: 65%;
    }

    @keyframes featured-olympian-shimmer {
      0% { background-position: 100% 50%; }
      100% { background-position: 0 50%; }
    }

    .olympian-name {
      font-weight: 600;
      margin-bottom: 0.5rem;
    }

    .olympian-sport {
      color: var(--text-light);
      font-size: 0.9rem;
      margin-bottom: 1rem;
    }

    .book-session-btn {
      background: var(--olympic-red);
      color: white;
      padding: 0.5rem 1rem;
      border: none;
      border-radius: 20px;
      cursor: pointer;
      font-size: 0.9rem;
      width: 100%;
    }

    /* Community Highlights */
    .community-post {
      background: #f8f9fa;
      border-radius: 12px;
      padding: 1.5rem;
      margin-bottom: 1rem;
      border-left: 4px solid var(--olympic-green);
    }

    .post-author {
      font-weight: 600;
      color: var(--text-dark);
      margin-bottom: 0.5rem;
    }

    .post-title {
      font-size: 1.1rem;
      margin-bottom: 0.5rem;
    }

    .post-excerpt {
      color: var(--text-light);
      margin-bottom: 1rem;
    }

    /* Resources */
    .resource-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 1rem;
    }

    .resource-item {
      background: #f8f9fa;
      border-radius: 12px;
      padding: 1.5rem;
      text-align: center;
      cursor: pointer;
      transition: transform 0.3s ease;
    }

    .resource-item:hover {
      transform: translateY(-3px);
    }

    .resource-icon {
      width: 50px;
      height: 50px;
      border-radius: 12px;
      background: var(--olympic-blue);
      margin: 0 auto 1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 1.2rem;
    }

    /* Achievements */
    .achievement-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      gap: 1rem;
    }

    .achievement-badge {
      background: #f8f9fa;
      border-radius: 12px;
      padding: 1.5rem;
      text-align: center;
      border: 2px solid var(--primary-gold);
    }

    .achievement-icon {
      font-size: 2rem;
      margin-bottom: 0.5rem;
    }

    .achievement-title {
      font-weight: 600;
      font-size: 0.9rem;
    }

    .achievement-entry-card {
      padding: 1rem 1.25rem;
      border-bottom: 1px solid #e2e8f0;
      display: flex;
      align-items: flex-start;
      gap: 1rem;
    }

    .achievement-entry-card:last-child {
      border-bottom: none;
    }

    .achievement-entry-icon {
      flex-shrink: 0;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: linear-gradient(135deg, #E4B55D 0%, #D4A556 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 1.2rem;
    }

    .achievement-entry-body {
      flex: 1;
      min-width: 0;
    }

    .achievement-entry-title {
      margin: 0 0 0.25rem 0;
      color: #112250;
      font-size: 1rem;
      font-weight: 600;
    }

    .achievement-entry-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem 1rem;
      margin: 0.35rem 0;
      color: #64748b;
      font-size: 0.85rem;
    }

    .achievement-entry-meta span {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
    }

    .achievement-entry-description {
      margin: 0.5rem 0 0 0;
      color: #64748b;
      font-size: 0.9rem;
      line-height: 1.5;
    }

    .achievement-entry-actions {
      display: flex;
      flex-direction: column;
      gap: 0.35rem;
      flex-shrink: 0;
    }

    .achievement-action-btn {
      background: transparent;
      border: 1px solid #cbd5e1;
      color: #475569;
      border-radius: 8px;
      padding: 0.35rem 0.65rem;
      font-size: 0.8rem;
      cursor: pointer;
      transition: all 0.2s ease;
    }

    .achievement-action-btn:hover {
      border-color: #94a3b8;
      color: #112250;
    }

    .achievement-action-btn.delete:hover {
      border-color: #ef4444;
      color: #ef4444;
    }

    .achievement-empty-state {
      text-align: center;
      padding: 2rem;
      color: var(--text-light);
    }

    .achievement-empty-state i {
      font-size: 2.5rem;
      margin-bottom: 1rem;
      opacity: 0.5;
      color: var(--primary-gold);
    }

    .achievement-form-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1rem;
    }

    .achievement-form-field {
      display: flex;
      flex-direction: column;
      gap: 0.35rem;
    }

    .achievement-form-field.full-width {
      grid-column: 1 / -1;
    }

    .achievement-form-field label {
      font-weight: 600;
      color: #112250;
      font-size: 0.9rem;
    }

    .achievement-form-field input,
    .achievement-form-field textarea {
      border: 1px solid #cbd5e1;
      border-radius: 10px;
      padding: 0.75rem;
      font-size: 1rem;
      font-family: inherit;
    }

    .achievement-form-field textarea {
      resize: vertical;
      min-height: 90px;
    }

    @media (max-width: 768px) {
      .achievement-entry-card {
        flex-direction: column;
      }

      .achievement-entry-actions {
        flex-direction: row;
        width: 100%;
      }

      .achievement-action-btn {
        flex: 1;
      }

      .achievement-form-grid {
        grid-template-columns: 1fr;
      }
    }

    /* Sidebar Widgets */
    .sidebar-widget {
      background: var(--card-bg);
      border-radius: 16px;
      padding: 1.5rem;
      box-shadow: var(--shadow);
    }

    .widget-title {
      font-weight: 600;
      margin-bottom: 1rem;
      color: var(--text-dark);
    }

    .countdown {
      text-align: center;
      font-size: 2rem;
      font-weight: 800;
      color: var(--olympic-red);
      margin-bottom: 0.5rem;
    }

    .countdown-label {
      color: var(--text-light);
      font-size: 0.9rem;
    }

    .daily-tip {
      background: linear-gradient(135deg, var(--olympic-blue), var(--olympic-green));
      color: white;
      padding: 1.5rem;
      border-radius: 12px;
      margin-bottom: 1rem;
    }

    .tip-text {
      font-style: italic;
      margin-bottom: 1rem;
    }

    .tip-author {
      font-size: 0.9rem;
      opacity: 0.9;
    }

    /* Messages */
    .message-item {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 1rem;
      background: #f8f9fa;
      border-radius: 12px;
      margin-bottom: 0.5rem;
    }

    .message-avatar {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--primary-gold);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-dark);
      font-weight: bold;
    }

    .message-content {
      flex: 1;
    }

    .message-sender {
      font-weight: 600;
      font-size: 0.9rem;
    }

    .message-preview {
      color: var(--text-light);
      font-size: 0.8rem;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .dashboard-container {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 768px) {
      .nav-container {
        padding: 0 1rem;
      }
      
      .welcome-message {
        font-size: 2rem;
      }
      
      .quick-actions {
        flex-direction: column;
        align-items: center;
      }
      
      .dashboard-container {
        padding: 0 1rem;
      }
      
      .dashboard-card {
        padding: 1.5rem;
      }
    }

    /* Message System Styles */
    .message-toggle-btn {
      position: fixed;
      bottom: 30px;
      right: 30px;
      z-index: 1001;
      background: var(--olympic-blue);
      color: white;
      border: none;
      border-radius: 50%;
      width: 60px;
      height: 60px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      font-size: 1.5rem;
    }

    .message-toggle-btn:hover {
      background: var(--olympic-gold);
      transform: scale(1.1);
    }

    .message-badge {
      position: absolute;
      top: -5px;
      right: -5px;
      background: var(--olympic-red);
      color: white;
      border-radius: 50%;
      width: 22px;
      height: 22px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.75rem;
      font-weight: 700;
    }

    .message-system {
      position: fixed;
      bottom: 30px;
      right: 30px;
      z-index: 1000;
      background: white;
      border-radius: 16px;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
      width: 400px;
      max-height: 600px;
      display: none;
      flex-direction: column;
      overflow: hidden;
    }

    .message-system.active {
      display: flex;
    }

    .message-header {
      background: var(--olympic-blue);
      color: white;
      padding: 1rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .message-header h3 {
      margin: 0;
      font-size: 1.1rem;
      font-weight: 600;
    }

    .close-message-btn {
      background: none;
      border: none;
      color: white;
      font-size: 1.5rem;
      cursor: pointer;
      padding: 0;
      width: 30px;
      height: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      transition: all 0.3s ease;
    }

    .close-message-btn:hover {
      background: rgba(255, 255, 255, 0.2);
    }

    .message-content {
      flex: 1;
      display: flex;
      flex-direction: column;
      min-height: 0;
    }

    .conversation-list {
      padding: 1rem;
      max-height: 250px;
      overflow-y: auto;
    }

    .conversation-item {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      padding: 0.75rem;
      border-radius: 8px;
      cursor: pointer;
      transition: all 0.3s ease;
      margin-bottom: 0.5rem;
    }

    .conversation-item:hover {
      background: #f8f9fa;
    }

    .conversation-item.active {
      background: rgba(0, 129, 200, 0.1);
      border: 1px solid var(--olympic-blue);
    }

    .conversation-avatar {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      object-fit: cover;
    }

    .conversation-details {
      flex: 1;
      min-width: 0;
    }

    .conversation-name {
      font-weight: 600;
      color: #333;
      font-size: 0.95rem;
      margin-bottom: 0.25rem;
    }

    .conversation-preview {
      color: #666;
      font-size: 0.85rem;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .conversation-meta {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 0.25rem;
    }

    .conversation-time {
      color: #999;
      font-size: 0.75rem;
    }

    .unread-badge {
      background: var(--olympic-blue);
      color: white;
      border-radius: 10px;
      padding: 0.15rem 0.5rem;
      font-size: 0.7rem;
      font-weight: 600;
    }

    .message-area {
      flex: 1;
      display: flex;
      flex-direction: column;
      min-height: 0;
    }

    .messages-container {
      flex: 1;
      padding: 1rem;
      overflow-y: auto;
      max-height: 350px;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .message {
      display: flex;
      align-items: flex-start;
      gap: 0.5rem;
      max-width: 80%;
    }

    .message.sent {
      align-self: flex-end;
      flex-direction: row-reverse;
    }

    .message-avatar {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      object-fit: cover;
    }

    .message-bubble {
      background: #e2e8f0;
      color: #0f172a;
      padding: 0.75rem 1rem;
      border-radius: 16px;
      font-size: 0.9rem;
      line-height: 1.4;
      word-wrap: break-word;
      overflow-wrap: anywhere;
    }

    .message.sent .message-bubble,
    .message-bubble--outgoing {
      background: #1e40af;
      color: #ffffff;
    }

    .message-bubble--incoming {
      background: #e2e8f0;
      color: #0f172a;
    }

    .message-time {
      font-size: 0.7rem;
      color: #999;
      margin-top: 0.25rem;
    }

    .message-input-area {
      padding: 1rem;
      border-top: 1px solid #e9ecef;
      background: white;
    }

    .message-input-container {
      display: flex;
      gap: 0.5rem;
      align-items: flex-end;
    }

    .message-input {
      flex: 1;
      border: 1px solid #dee2e6;
      border-radius: 20px;
      padding: 0.75rem 1rem;
      font-size: 0.9rem;
      resize: none;
      min-height: 40px;
      max-height: 100px;
      font-family: inherit;
    }

    .message-input:focus {
      outline: none;
      border-color: var(--olympic-blue);
      box-shadow: 0 0 0 2px rgba(0, 129, 200, 0.2);
    }

    .send-message-btn {
      background: var(--olympic-blue);
      color: white;
      border: none;
      border-radius: 50%;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s ease;
      font-size: 1rem;
    }

    .send-message-btn:hover {
      background: var(--olympic-gold);
      transform: scale(1.05);
    }

    .no-conversations {
      text-align: center;
      padding: 2rem;
      color: #999;
    }
    /* Hero Buttons - Quick Access Section */
    .hero-buttons-primary {
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap;
      margin: 30px 0 20px 0;
    }

    .hero-buttons {
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap;
      margin: 20px 0 30px 0;
    }

    .hero-btn {
      padding: 16px 32px;
      border-radius: 50px;
      text-decoration: none;
      font-family: 'Inter', sans-serif;
      font-weight: 600;
      font-size: 1.1rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      border: 2px solid;
      position: relative;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      min-width: 200px;
      text-align: center;
    }

    .hero-btn::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
      transition: left 0.5s;
    }

    .hero-btn:hover::before {
      left: 100%;
    }

    .hero-btn-primary {
      background: linear-gradient(135deg, #10b981, #059669);
      color: white;
      border-color: #10b981;
    }

    .hero-btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
      border-color: #059669;
    }

    .hero-btn-secondary {
      background: linear-gradient(135deg, #3b82f6, #1d4ed8);
      color: white;
      border-color: #3b82f6;
    }

    .hero-btn-secondary:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
      border-color: #1d4ed8;
    }

    .hero-btn-media {
      background: linear-gradient(135deg, #1f2937, #111827);
      color: white;
      border-color: #1f2937;
    }

    .hero-btn-media:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(31, 41, 55, 0.4);
      border-color: #111827;
    }

    .hero-btn-sponsor {
      background: linear-gradient(135deg, #f59e0b, #d97706);
      color: white;
      border-color: #f59e0b;
    }

    .hero-btn-sponsor:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
      border-color: #d97706;
    }

    .hero-btn-donate {
      background: linear-gradient(135deg, #10b981, #059669);
      color: white;
      border-color: #10b981;
    }

    .hero-btn-donate:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
      border-color: #059669;
    }

    .hero-btn-faq {
      background: linear-gradient(135deg, #3b82f6, #1d4ed8);
      color: white;
      border-color: #3b82f6;
    }

    .hero-btn-faq:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
      border-color: #1d4ed8;
    }

    .hero-btn-shop {
      background: linear-gradient(135deg, #10b981, #059669);
      color: white;
      border-color: #10b981;
    }

    .hero-btn-shop:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
      border-color: #059669;
    }

    .hero-btn-bring-camps {
      background: linear-gradient(135deg, #3b82f6, #1d4ed8);
      color: white;
      border-color: #3b82f6;
    }

    .hero-btn-bring-camps:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
      border-color: #1d4ed8;
    }

    .hero-btn-content-feed {
      background: linear-gradient(135deg, #3b82f6, #1d4ed8);
      color: white;
      border-color: #3b82f6;
    }

    .hero-btn-content-feed:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
      border-color: #1d4ed8;
    }

    .hero-btn-live-stream {
      background: linear-gradient(135deg, #ef4444, #dc2626);
      color: white;
      border-color: #ef4444;
    }

    .hero-btn-live-stream:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(239, 68, 68, 0.4);
      border-color: #dc2626;
    }

    .hero-btn-contact {
      background: linear-gradient(135deg, #f59e0b, #d97706);
      color: white;
      border-color: #f59e0b;
    }

    .hero-btn-contact:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
      border-color: #d97706;
    }

    /* Quick Access Section */
    