/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

/* Events List Page */
.spd-events-list-page {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

.spd-events-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px 0;
}

.spd-page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: #2c3e50;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.spd-page-title i {
    color: #DF1756;
}

.spd-page-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    margin: 0;
}

/* Tabs Navigation */
.spd-events-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 0;
}

.spd-tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    color: #6c757d;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: -2px;
    position: relative;
}

.spd-tab-btn:hover {
    color: #DF1756;
    background: rgba(223, 23, 86, 0.05);
}

.spd-tab-btn.active {
    color: #DF1756;
    border-bottom-color: #DF1756;
    background: rgba(223, 23, 86, 0.05);
}

.spd-tab-btn i {
    font-size: 1.1rem;
}

/* Tab Content */
.spd-tab-content {
    display: none;
}

.spd-tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Search and Filter Section */
.spd-events-filters-section {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.spd-search-bar {
    margin-bottom: 20px;
}

.spd-search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.spd-search-input-wrapper i {
    position: absolute;
    left: 15px;
    color: #6c757d;
    font-size: 1.2rem;
    z-index: 1;
}

.spd-search-input {
    width: 100%;
    padding: 12px 45px 12px 45px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.spd-search-input:focus {
    outline: none;
    border-color: #DF1756;
}

.spd-clear-search {
    position: absolute;
    right: 10px;
    background: transparent;
    border: none;
    color: #6c757d;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.spd-clear-search:hover {
    color: #DF1756;
}

/* Filters */
.spd-filters-wrapper {
    position: relative;
}

.spd-filter-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #495057;
    cursor: pointer;
    transition: all 0.3s ease;
}

.spd-filter-toggle:hover,
.spd-filter-toggle.active {
    background: #DF1756;
    border-color: #DF1756;
    color: #fff;
}

.spd-filter-toggle.has-filters {
    background: #DF1756;
    border-color: #DF1756;
    color: #fff;
}

.spd-filter-count {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 2px 8px;
    font-size: 0.85rem;
    font-weight: 600;
}

.spd-filters-panel {
    display: none;
    margin-top: 20px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.spd-filters-panel.active {
    display: block;
}

.spd-filter-group {
    margin-bottom: 25px;
}

.spd-filter-group:last-child {
    margin-bottom: 0;
}

.spd-filter-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.spd-filter-label i {
    color: #DF1756;
}

.spd-filter-inputs-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.spd-filter-input,
.spd-filter-select {
    flex: 1;
    padding: 10px 15px;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

.spd-filter-input:focus,
.spd-filter-select:focus {
    outline: none;
    border-color: #DF1756;
}

.spd-filter-separator {
    color: #6c757d;
    font-size: 0.9rem;
    white-space: nowrap;
}

.spd-filter-checkboxes {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.spd-filter-checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 8px 15px;
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.spd-filter-checkbox-label:hover {
    border-color: #DF1756;
    background: #fff5f7;
}

.spd-filter-checkbox-label input[type="checkbox"] {
    margin: 0;
    cursor: pointer;
}

.spd-filter-checkbox-label input[type="checkbox"]:checked + span {
    color: #DF1756;
    font-weight: 600;
}

.spd-filter-checkbox-label:has(input[type="checkbox"]:checked) {
    border-color: #DF1756;
    background: #fff5f7;
}

.spd-filter-actions {
    display: flex;
    gap: 10px;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.spd-filter-reset,
.spd-filter-apply {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.spd-filter-reset {
    background: #f8f9fa;
    color: #6c757d;
    border: 2px solid #e9ecef;
}

.spd-filter-reset:hover {
    background: #e9ecef;
    color: #495057;
}

.spd-filter-apply {
    background: #DF1756;
    color: #fff;
}

.spd-filter-apply:hover {
    background: #c0144a;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(223, 23, 86, 0.3);
}

/* Events Results Header */
.spd-events-results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding: 15px 0;
    border-bottom: 2px solid #f0f0f1;
    flex-wrap: wrap;
    gap: 15px;
}

.spd-results-count {
    font-size: 1rem;
    color: #6c757d;
    font-weight: 500;
}

.spd-results-count span {
    font-weight: 700;
    color: #DF1756;
    font-size: 1.2rem;
}

.spd-sort-options {
    display: flex;
    align-items: center;
    gap: 10px;
}

.spd-sort-options label {
    font-size: 0.95rem;
    color: #6c757d;
    font-weight: 500;
}

.spd-sort-select {
    padding: 8px 15px;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    font-size: 0.95rem;
    background: #fff;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.spd-sort-select:focus {
    outline: none;
    border-color: #DF1756;
}

/* Event Cards */
.spd-events-container {
    margin-top: 20px;
}

.spd-events {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
}

.spd-event-card {
    background: #fff;
    border-radius: 12px;
    padding: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.spd-event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.spd-event-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f8f9fa;
}

.spd-event-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.spd-event-card:hover .spd-event-card-image img {
    transform: scale(1.05);
}

.spd-event-card-header,
.spd-event-description,
.spd-event-meta-list,
.spd-event-card-footer {
    padding: 0 25px;
}

.spd-event-card-header {
    padding-top: 25px;
}

.spd-event-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    gap: 15px;
}

.spd-event-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    color: #2c3e50;
    flex: 1;
    line-height: 1.3;
}

.spd-event-badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}

.spd-event-badge-free {
    background: #e7f5e7;
    color: #00a32a;
}

.spd-event-description {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.spd-event-meta-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
    padding-top: 15px;
    border-top: 1px solid #f0f0f1;
}

.spd-event-meta-list-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #495057;
}

.spd-event-meta-list-item i {
    color: #DF1756;
    font-size: 1.1rem;
    width: 20px;
    flex-shrink: 0;
}

.spd-event-card-footer {
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #f0f0f1;
}

.spd-event-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    justify-content: center;
    padding: 12px 24px;
    background: #DF1756;
    color: #fff !important;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.spd-event-view-btn:hover {
    background: #c0144a;
    transform: translateX(5px);
    color: #fff !important;
}

.spd-event-view-btn i {
    transition: transform 0.3s ease;
}

.spd-event-view-btn:hover i {
    transform: translateX(3px);
}

/* No Events / No Results */
.spd-no-events,
.spd-no-results {
    text-align: center;
    padding: 60px 20px;
    color: #6c757d;
}

.spd-no-events i,
.spd-no-results i {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #c3c4c7;
}

.spd-no-events p,
.spd-no-results p {
    font-size: 1.1rem;
    margin: 0;
}

/* Legacy styles for backward compatibility */
.spd-single-event {
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.08);
    border-radius: 5px;
    margin-bottom: 25px;
}

.spd-event-details {
    font-size: .9rem;
    margin-top: 1rem;
    text-decoration: underline;
}

.single-event {
    margin-bottom: 5rem;
    padding: 0px 20px;
}

.spd-event-details {
    font-size: .9rem;
    margin-top: 1rem;
    text-decoration: underline;
}

span.spd-event-data {
    color: black;
}

.spd-event-single-name {
    font-size: 2rem;
    margin-top: 1rem;
    margin-bottom: 0.7rem;
}

.spd-event-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.spd-event-book-btn {
    background: #DF1756;
    padding: 0.5rem 1rem;
    color: white !important;
    border-radius: 5px;
    width: 20%;
    text-align: center;
    cursor: pointer;
}

.spd-event-book-btn:hover {
    background: transparent;
    border: 1px solid #DF1756;
    color: #DF1756 !important;
}

.spd-event-booked-btn {
    background: #DF1756;
    padding: 0.5rem 1rem;
    color: white !important;
    border-radius: 5px;
    width: 20%;
    text-align: center;
    opacity: .6;
}

.participants-list {
    background-color: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 20px 0px;
    padding: 20px;
}

.spd-participant-title {
    margin-bottom: 15px;
    color: #333;
    text-align: left;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 10px;

    font-size: 2rem;
    margin-top: 1rem;
    margin-bottom: 0.7rem;
}

.participants-list ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.participants-list li {
    background-color: #fff;
    border-radius: 5px;
    margin-bottom: 10px;
    padding: 15px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.participants-list li:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.participant-info {
    display: flex;
    align-items: center;
}

.participant-name {
    font-size: 18px;
    font-weight: 500;
    color: #495057;
}

.participant-name::before {
    content: "\1F464"; /* Unicode character for user icon */
    font-size: 18px;
    margin-right: 8px;
    color: #6c757d;
}

/*new css*/
/* Button used to open the contact form - fixed at the bottom of the page */
.open-button {
    background-color: #555;
    color: white;
    padding: 16px 20px;
    border: none;
    cursor: pointer;
    opacity: 0.8;
    position: fixed;
    bottom: 23px;
    right: 28px;
    width: 280px;
  }


/* Overlay */
/* ============================================
   Payment Gateway Selection Styles
   ============================================ */
.spd-gateway-options {
    padding: 20px 0;
}

.spd-gateway-option {
    display: flex;
    align-items: center;
    padding: 20px;
    margin-bottom: 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fff;
}

.spd-gateway-option:hover {
    border-color: #2271b1;
    background: #f0f6fc;
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(34, 113, 177, 0.15);
}

.spd-gateway-option:last-child {
    margin-bottom: 0;
}

.spd-gateway-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    margin-right: 20px;
    flex-shrink: 0;
}

.spd-gateway-icon i {
    font-size: 2rem;
    color: #fff;
}

.spd-gateway-option[data-gateway="paypal"] .spd-gateway-icon {
    background: linear-gradient(135deg, #003087 0%, #009cde 100%);
}

.spd-gateway-option[data-gateway="stripe"] .spd-gateway-icon {
    background: linear-gradient(135deg, #635bff 0%, #00a4ff 100%);
}

.spd-gateway-info {
    flex: 1;
}

.spd-gateway-info h3 {
    margin: 0 0 5px 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
}

.spd-gateway-info p {
    margin: 0;
    font-size: 0.9rem;
    color: #6c757d;
}

.spd-gateway-arrow {
    color: #c3c4c7;
    font-size: 1.5rem;
    margin-left: 15px;
    transition: all 0.3s ease;
}

.spd-gateway-option:hover .spd-gateway-arrow {
    color: #2271b1;
    transform: translateX(5px);
}

.spd-payment-header {
    background: #f0f6fc;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    border-bottom: 1px solid #e9ecef;
    margin-bottom: 0;
}

.spd-payment-header h1 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    flex: 1;
    text-align: center;
}

.spd-close-payment,
.spd-back-to-gateways {
    background: transparent;
    border: none;
    color: #6c757d;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
    border-radius: 4px;
}

.spd-close-payment:hover,
.spd-back-to-gateways:hover {
    color: #2271b1;
    background: #f0f6fc;
}

.spd-back-to-gateways {
    font-size: 1rem;
    position: absolute;
    left: 25px;
}

.spd-payment-gateway-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #e7f3ff;
    color: #0066cc;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.spd-payment-gateway-badge i {
    font-size: 1rem;
}

.spd-payment-footer {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
    margin-top: 20px;
}

.spd-popup-overlay {
    display: none; /* Hidden by default */
    position: fixed; /* Sit on top of the page content */
    width: 100%; /* Full width (cover the entire page) */
    height: 100%; /* Full height (cover the entire page) */
    top: 0; 
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5); /* Black background with transparency */
    z-index: 9; /* Sit behind the popup */
  }

  
  /* The popup form - hidden by default */
  .form-popup {
    display: none;
    position: fixed;
    border: 3px solid #f1f1f1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
  }
  
  /* Add styles to the form container */
  .spd-authorize-net-form-container {
    padding: 20px;
    overflow-y: scroll;
    background-color: white;
  }

  /* Join Event form popup */
  .spd-join-event-popup {
    background: #fff;
    max-width: 480px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  }
  .spd-join-event-intro {
    padding: 0 25px 15px;
    margin: 0;
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.5;
  }
  .spd-join-event-form {
    padding: 0 25px 25px;
  }
  .spd-join-event-form .spd-form-group {
    margin-bottom: 18px;
  }
  .spd-join-event-form .spd-form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.95rem;
  }
  .spd-join-event-form .spd-form-group label .required {
    color: #dc3545;
  }
  .spd-join-event-form .spd-form-group select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ced4da;
    border-radius: 6px;
    font-size: 1rem;
    background: #fff;
    color: #2c3e50;
  }
  .spd-join-event-form .spd-form-group select:focus {
    border-color: #2271b1;
    outline: none;
    box-shadow: 0 0 0 2px rgba(34, 113, 177, 0.2);
  }

  /* Gateway selection popup */
  #spd-gateway-selection {
    background: #e7f3ff;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
  }

  #spd-gateway-selection .spd-authorize-net-form-container {
    height: auto;
    max-height: none;
    overflow-y: visible;
    padding: 0;
  }

  /* Payment form popup */
  #spd-payment-Form {
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
  }

  #spd-payment-Form .spd-authorize-net-form-container {
    height: auto;
    max-height: calc(90vh - 100px);
    overflow-y: auto;
  }
  
  /* Full-width input fields */
  .spd-authorize-net-form-container input[type=text], .spd-authorize-net-form-container input[type=password] {
    width: 100%;
    padding: 15px;
    margin: 5px 0 22px 0;
    border: none;
    background: #f1f1f1;
  }
  
  /* When the inputs get focus, do something */
  .spd-authorize-net-form-container input[type=text]:focus, .spd-authorize-net-form-container input[type=password]:focus {
    background-color: #ddd;
    outline: none;
  }
  
  /* Set a style for the submit/login button */
  .spd-authorize-net-form-container .btn {
    background-color: #04AA6D;
    color: white;
    padding: 16px 20px;
    border: none;
    cursor: pointer;
    width: 100%;
    margin-bottom:10px;
    opacity: 0.8;
  }
  
  /* Add a red background color to the cancel button */
  .spd-authorize-net-form-container .spd-cancel {
    background-color: red;
  }
  
  /* Add some hover effects to buttons */
  .spd-authorize-net-form-container .btn:hover, .open-button:hover {
    opacity: 1;
  }

  #loader {
    position: absolute;
    display: none;
    left: 50%;
    top: 50%;
    z-index: 1;
    width: 100px;
    height: 100px;
    margin: -76px 0 0 -76px;
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #3498db;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
  }
  
  @-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  
  /* Add animation to "page content" */
  .animate-bottom {
    position: relative;
    -webkit-animation-name: animatebottom;
    -webkit-animation-duration: 1s;
    animation-name: animatebottom;
    animation-duration: 1s
  }
  
  @-webkit-keyframes animatebottom {
    from { bottom:-100px; opacity:0 } 
    to { bottom:0px; opacity:1 }
  }
  
  @keyframes animatebottom { 
    from{ bottom:-100px; opacity:0 } 
    to{ bottom:0; opacity:1 }
  }

  #preloder {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 999999;
    /* background: #000; */
    background: #ffffff;
}

/* ============================================
   Upcoming Events Widget Styles
   ============================================ */
.spd-upcoming-events-widget {
    margin: 20px 0;
}

.spd-upcoming-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #333;
    text-align: center;
}

.spd-upcoming-empty {
    text-align: center;
    padding: 3rem 2rem;
    color: #666;
    font-size: 1.1rem;
}

/* Grid Layout */
.spd-upcoming-events-container.spd-layout-grid {
    display: grid;
    gap: 25px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.spd-upcoming-events-container.spd-layout-grid.spd-columns-1 {
    grid-template-columns: 1fr;
}

.spd-upcoming-events-container.spd-layout-grid.spd-columns-2 {
    grid-template-columns: repeat(2, 1fr);
}

.spd-upcoming-events-container.spd-layout-grid.spd-columns-3 {
    grid-template-columns: repeat(3, 1fr);
}

.spd-upcoming-events-container.spd-layout-grid.spd-columns-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* List Layout */
.spd-upcoming-events-container.spd-layout-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Event Card */
.spd-upcoming-event-card {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    padding: 25px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid #e9ecef;
}

.spd-upcoming-event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.spd-event-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    gap: 15px;
}

.spd-event-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
    flex: 1;
    line-height: 1.3;
}

.spd-event-badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}

.spd-event-badge-soon {
    background: #fff3cd;
    color: #856404;
}

.spd-event-description {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.spd-event-meta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
    padding-top: 15px;
    border-top: 1px solid #e9ecef;
}

.spd-event-meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #ffffff;
}

.spd-event-meta-item i {
    color: #ffffff;
    font-size: 1.1rem;
    width: 20px;
    flex-shrink: 0;
}

.spd-event-meta-item span {
    line-height: 1.4;
}

.spd-event-footer {
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #e9ecef;
}

.spd-event-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #DF1756;
    color: #ffffff !important;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 2px solid #DF1756;
}

.spd-event-view-btn:hover {
    background: transparent;
    color: #DF1756 !important;
    transform: translateX(5px);
}

.spd-event-view-btn i {
    transition: transform 0.3s ease;
}

.spd-event-view-btn:hover i {
    transform: translateX(3px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .spd-upcoming-events-container.spd-layout-grid.spd-columns-4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .spd-upcoming-events-container.spd-layout-grid.spd-columns-3,
    .spd-upcoming-events-container.spd-layout-grid.spd-columns-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .spd-upcoming-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .spd-upcoming-events-container.spd-layout-grid {
        grid-template-columns: 1fr !important;
    }

    .spd-upcoming-event-card {
        padding: 20px;
    }

    .spd-event-name {
        font-size: 1.3rem;
    }

    .spd-event-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .spd-event-badge {
        align-self: flex-start;
    }
}

@media (max-width: 480px) {
    .spd-upcoming-event-card {
        padding: 15px;
    }

    .spd-event-name {
        font-size: 1.2rem;
    }

    .spd-event-meta-item {
        font-size: 0.85rem;
    }

    .spd-event-view-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   Single Event Page Styles
   ============================================ */
.spd-single-event-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Event Header Section */
.spd-event-header-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    padding: 0;
    margin-bottom: 30px;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
}

.spd-event-thumbnail-wrapper {
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
}

.spd-event-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.spd-event-header-content {
    padding: 40px;
    position: relative;
    z-index: 1;
}

.spd-event-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 25px 0;
    color: #fff;
}

.spd-event-meta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.spd-event-meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}

.spd-event-meta-item i {
    font-size: 1.2rem;
    opacity: 0.9;
}

.spd-event-action-buttons {
    margin-top: 25px;
}

/* Section Styles */
.spd-event-section {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.spd-section-header {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.spd-section-title {
    font-size: 1.75rem;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #2c3e50;
}

.spd-section-title i {
    color: #DF1756;
}

.spd-section-subtitle {
    margin: 10px 0 0 0;
    color: #6c757d;
    font-size: 0.95rem;
}

.spd-section-content {
    margin-top: 20px;
}

/* Description Section */
.spd-event-description-section {
    background: #f8f9fa;
}

.spd-event-description-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #495057;
}

.spd-event-description-text p {
    margin-bottom: 15px;
}

/* Participants Section */
.spd-view-all-participants-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #DF1756;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
}

.spd-view-all-participants-btn:hover {
    background: #c0144a;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(223, 23, 86, 0.3);
}

/* Locked state for non-premium users */
.spd-view-all-participants-btn[data-is-premium="0"] {
    background: #6c757d;
    cursor: not-allowed;
    opacity: 0.7;
}

.spd-view-all-participants-btn[data-is-premium="0"]:hover {
    background: #5a6268;
    transform: none;
    box-shadow: none;
}

.spd-view-all-participants-btn[data-is-premium="0"] .bi-lock-fill {
    font-size: 0.8em;
    opacity: 0.9;
}

.spd-participants-scroll {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 10px 0;
    scrollbar-width: thin;
    scrollbar-color: #DF1756 #f0f0f1;
    -webkit-overflow-scrolling: touch;
}

.spd-participants-scroll::-webkit-scrollbar {
    height: 8px;
}

.spd-participants-scroll::-webkit-scrollbar-track {
    background: #f0f0f1;
    border-radius: 4px;
}

.spd-participants-scroll::-webkit-scrollbar-thumb {
    background: #DF1756;
    border-radius: 4px;
}

.spd-participants-scroll::-webkit-scrollbar-thumb:hover {
    background: #c0144a;
}


.spd-participant-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-shrink: 0;
    min-width: 150px;
    max-width: 150px;
}

.spd-participant-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.spd-participant-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.spd-participant-avatar {
    width: 100%;
    padding-top: 100%;
    position: relative;
    overflow: hidden;
    background: #e9ecef;
}

.spd-participant-avatar img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.spd-participant-avatar-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e9ecef;
    color: #6c757d;
}

.spd-participant-avatar-placeholder i {
    font-size: 3rem;
}

.spd-participant-info {
    padding: 15px;
    text-align: center;
}

.spd-participant-name {
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0;
    color: #2c3e50;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Participants Modal */
.spd-participants-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    overflow-y: auto;
    padding: 20px;
}

.spd-participants-modal-overlay.active {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.spd-participants-modal {
    background: #fff;
    border-radius: 12px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    margin: 20px auto;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: spd-modal-fade-in 0.3s ease;
}

@keyframes spd-modal-fade-in {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.spd-participants-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 2px solid #f0f0f1;
}

.spd-participants-modal-header h2 {
    margin: 0;
    font-size: 1.75rem;
    font-weight: 600;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 10px;
}

.spd-participants-modal-header h2 i {
    color: #DF1756;
}

.spd-modal-close {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: #6c757d;
    cursor: pointer;
    padding: 5px;
    line-height: 1;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spd-modal-close:hover {
    color: #DF1756;
}

.spd-participants-modal-content {
    padding: 30px;
    overflow-y: auto;
    flex: 1;
}

.spd-participants-grid-full {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
}

.spd-participant-card-full {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.spd-participant-card-full:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.spd-participant-avatar-full {
    width: 100%;
    padding-top: 100%;
    position: relative;
    overflow: hidden;
    background: #e9ecef;
}

.spd-participant-avatar-full img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.spd-participant-info-full {
    padding: 15px;
    text-align: center;
}

.spd-participant-count {
    font-size: 1rem;
    font-weight: 400;
    color: #6c757d;
}

/* Matches Section */
.spd-matches-section {
    background: #fff;
    padding: 20px 0;
}

.spd-matches-header {
    text-align: center;
    margin-bottom: 40px;
}

.spd-matches-title {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: #2c3e50;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.spd-matches-title i {
    color: #DF1756;
}

.spd-matches-subtitle {
    font-size: 1rem;
    color: #6c757d;
    margin: 0;
}

.spd-matches-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.spd-match-card-full {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid #e9ecef;
}

.spd-match-card-full:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: #DF1756;
}

.spd-match-card-full .spd-match-card-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-width: 100%;
}

.spd-match-card-full .spd-match-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.spd-match-card-full .spd-match-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.spd-match-card-full .spd-match-card-placeholder i {
    font-size: 4rem;
    opacity: 0.7;
}

.spd-match-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #DF1756;
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 8px rgba(223, 23, 86, 0.3);
}

.spd-match-card-full .spd-match-card-content {
    padding: 25px;
    display: block;
}

.spd-match-card-full .spd-match-card-name {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.spd-match-card-full .spd-match-card-age {
    font-size: 1rem;
    font-weight: 400;
    color: #6c757d;
}

.spd-match-card-full .spd-match-card-location {
    color: #6c757d;
    margin: 8px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.spd-match-card-full .spd-match-card-bio {
    color: #495057;
    margin: 15px 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.spd-match-event-info {
    background: #f8f9fa;
    padding: 12px 15px;
    border-radius: 8px;
    margin: 15px 0;
    color: #495057;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.spd-match-card-full .spd-match-card-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
    flex-direction: row;
}

.spd-match-view-event {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    background: #f8f9fa;
    color: #495057;
    border: 1px solid #e9ecef;
}

.spd-match-view-event:hover {
    background: #e9ecef;
    color: #2c3e50;
    border-color: #DF1756;
}

.spd-match-card-full .spd-match-view-profile {
    flex: 1;
    background: #DF1756;
    color: #fff;
    border: none;
}

.spd-match-card-full .spd-match-view-profile:hover {
    background: #c0144a;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(223, 23, 86, 0.3);
}

.spd-no-matches {
    text-align: center;
    padding: 60px 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.spd-no-matches i {
    font-size: 4rem;
    color: #DF1756;
    opacity: 0.5;
    margin-bottom: 20px;
    display: block;
}

.spd-no-matches p {
    font-size: 1.1rem;
    color: #6c757d;
    margin: 0;
}

/* ============================================
   Liked Me Section
   ============================================ */
.spd-liked-me-section {
    padding: 20px 0;
}

.spd-liked-me-header {
    text-align: center;
    margin-bottom: 40px;
}

.spd-liked-me-title {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: #2c3e50;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.spd-liked-me-title i {
    color: #DF1756;
}

.spd-liked-me-subtitle {
    font-size: 1rem;
    color: #6c757d;
    margin: 0;
}

.spd-liked-me-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.spd-liked-me-card {
    border: 2px solid #DF1756;
    box-shadow: 0 4px 15px rgba(223, 23, 86, 0.2);
}

.spd-liked-me-card:hover {
    border-color: #c0144a;
    box-shadow: 0 8px 25px rgba(223, 23, 86, 0.3);
}

.spd-liked-badge {
    background: #DF1756;
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 8px rgba(223, 23, 86, 0.3);
}

.spd-liked-date-info {
    background: #fff3cd;
    padding: 10px 15px;
    border-radius: 8px;
    margin: 10px 0;
    color: #856404;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    border-left: 3px solid #ffc107;
}

.spd-no-likes {
    text-align: center;
    padding: 60px 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.spd-no-likes i {
    font-size: 4rem;
    color: #DF1756;
    opacity: 0.5;
    margin-bottom: 20px;
    display: block;
}

.spd-no-likes p {
    font-size: 1.1rem;
    color: #6c757d;
    margin: 0;
}

.spd-matches-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.spd-match-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    width: 100%;
}

.spd-match-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.spd-match-card.processing {
    opacity: 0.6;
    pointer-events: none;
}

.spd-match-card-image {
    width: 200px;
    min-width: 200px;
    height: 200px;
    position: relative;
    overflow: hidden;
    background: #e9ecef;
    flex-shrink: 0;
}

.spd-match-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.spd-match-card-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e9ecef;
    color: #6c757d;
}

.spd-match-card-placeholder i {
    font-size: 4rem;
}

.spd-match-card-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.spd-match-card-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #2c3e50;
}

.spd-match-card-age {
    font-size: 1.1rem;
    font-weight: 400;
    color: #6c757d;
}

.spd-match-card-location {
    font-size: 0.95rem;
    margin: 0 0 15px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6c757d;
}

.spd-match-card-bio {
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0 0 20px 0;
    color: #495057;
    flex: 1;
}

.spd-match-card-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.spd-match-view-profile {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    background: #f8f9fa;
    color: #495057;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: background 0.3s ease, color 0.3s ease;
    border: 1px solid #e9ecef;
}

.spd-match-view-profile:hover {
    background: #e9ecef;
    color: #2c3e50;
}

.spd-match-buttons {
    display: flex;
    gap: 10px;
}

.spd-match-btn {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.spd-match-btn:disabled,
.spd-match-btn.spd-swipe-disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background: #6c757d !important;
    color: #fff !important;
    border-color: #6c757d !important;
}

.spd-match-btn.spd-swipe-disabled:hover {
    background: #5a6268 !important;
    transform: none;
    box-shadow: none;
}

.spd-match-btn.spd-already-swiped {
    background: #28a745 !important;
    color: #fff !important;
    border-color: #28a745 !important;
    opacity: 0.8;
}

.spd-match-btn.spd-already-swiped:hover {
    background: #218838 !important;
    transform: none;
    box-shadow: none;
}

/* Swipe Limit Info */
.spd-swipe-limit-info {
    margin-top: 15px;
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #2271b1;
}

.spd-swipe-remaining {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #2271b1;
    font-size: 0.9rem;
    font-weight: 500;
}

.spd-swipe-remaining i {
    font-size: 1rem;
}

.spd-swipe-limit-reached {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #dc3545;
    font-size: 0.9rem;
    font-weight: 500;
}

.spd-swipe-limit-reached i {
    font-size: 1rem;
}

.spd-match-pass {
    background: #fff;
    color: #dc3545;
    border: 2px solid #dc3545;
}

.spd-match-pass:hover:not(:disabled) {
    background: #dc3545;
    color: #fff;
}

.spd-match-like {
    background: #fff;
    color: #28a745;
    border: 2px solid #28a745;
}

.spd-match-like:hover:not(:disabled) {
    background: #28a745;
    color: #fff;
}

.spd-matches-empty {
    text-align: center;
    padding: 60px 20px;
    color: #6c757d;
}

.spd-matches-empty i {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #c3c4c7;
}

.spd-empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #6c757d;
}

.spd-empty-state i {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #c3c4c7;
}

.spd-event-not-found {
    text-align: center;
    padding: 60px 20px;
    color: #6c757d;
}

.spd-event-not-found i {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #dc3545;
}

/* Responsive Design */
@media (max-width: 768px) {
    .spd-single-event-page {
        padding: 15px;
    }

    .spd-event-header-section {
        padding: 25px 20px;
    }

    .spd-event-title {
        font-size: 1.75rem;
    }

    .spd-event-meta-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .spd-event-section {
        padding: 20px;
    }

    .spd-section-title {
        font-size: 1.5rem;
    }

    .spd-participants-scroll {
        gap: 12px;
    }

    .spd-participant-card {
        min-width: 100px;
        max-width: 100px;
    }

    .spd-participants-grid-full {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 15px;
    }

    .spd-participants-modal {
        margin: 10px;
        max-height: 95vh;
    }

    .spd-participants-modal-header {
        padding: 20px;
    }

    .spd-participants-modal-content {
        padding: 20px;
    }

    .spd-matches-grid {
        max-width: 100%;
    }

    .spd-match-card {
        flex-direction: column;
    }

    .spd-match-card-image {
        width: 100%;
        height: 250px;
        min-width: 100%;
    }

    .spd-match-card-content {
        padding: 15px;
    }

    .spd-match-card-name {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .spd-event-title {
        font-size: 1.5rem;
    }

    .spd-match-card-image {
        height: 200px;
    }

    .spd-match-buttons {
        flex-direction: column;
    }

    .spd-match-btn {
        width: 100%;
    }

    /* Events List Responsive */
    .spd-events-list-page {
        padding: 15px;
    }

    .spd-page-title {
        font-size: 1.75rem;
    }

    .spd-events-filters-section {
        padding: 15px;
    }

    .spd-filter-inputs-row {
        flex-direction: column;
    }

    .spd-filter-separator {
        display: none;
    }

    .spd-events {
        grid-template-columns: 1fr;
    }

    .spd-event-card {
        padding: 15px;
    }
}

/* Events List Responsive - Tablet */
@media (max-width: 768px) {
    .spd-events-list-page {
        padding: 15px;
    }

    .spd-page-title {
        font-size: 2rem;
    }

    .spd-events-filters-section {
        padding: 20px;
    }

    .spd-filter-inputs-row {
        flex-direction: column;
        gap: 10px;
    }

    .spd-filter-separator {
        display: none;
    }

    .spd-filter-checkboxes {
        flex-direction: column;
    }

    .spd-filter-actions {
        flex-direction: column;
    }

    .spd-events-results-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .spd-events {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .spd-event-card {
        padding: 20px;
    }

    .spd-event-name {
        font-size: 1.3rem;
    }
}

/* ============================================
   Matches Section
   ============================================ */
.spd-matches-section {
    padding: 20px 0;
}

.spd-matches-header {
    text-align: center;
    margin-bottom: 40px;
}

.spd-matches-title {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: #2c3e50;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.spd-matches-title i {
    color: #DF1756;
}

.spd-matches-subtitle {
    font-size: 1rem;
    color: #6c757d;
    margin: 0;
}

.spd-matches-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.spd-match-card-full {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid #e9ecef;
}

.spd-match-card-full:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: #DF1756;
}

/* .spd-match-card-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.spd-match-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
} */

.spd-match-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.spd-match-card-placeholder i {
    font-size: 4rem;
    opacity: 0.7;
}

.spd-match-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #DF1756;
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 8px rgba(223, 23, 86, 0.3);
}

.spd-match-card-content {
    padding: 25px;
}

.spd-match-card-name {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.spd-match-card-age {
    font-size: 1rem;
    font-weight: 400;
    color: #6c757d;
}

.spd-match-card-location {
    color: #6c757d;
    margin: 8px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.spd-match-card-bio {
    color: #495057;
    margin: 15px 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.spd-match-event-info {
    background: #f8f9fa;
    padding: 12px 15px;
    border-radius: 8px;
    margin: 15px 0;
    color: #495057;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.spd-match-card-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.spd-match-view-profile,
.spd-match-view-event {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.spd-match-view-profile {
    background: #DF1756;
    color: #fff;
}

.spd-match-view-profile:hover {
    background: #c0144a;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(223, 23, 86, 0.3);
}

.spd-match-view-event {
    background: #f8f9fa;
    color: #495057;
    border: 1px solid #e9ecef;
}

.spd-match-view-event:hover {
    background: #e9ecef;
    color: #2c3e50;
    border-color: #DF1756;
}

.spd-no-matches {
    text-align: center;
    padding: 60px 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.spd-no-matches i {
    font-size: 4rem;
    color: #DF1756;
    opacity: 0.5;
    margin-bottom: 20px;
    display: block;
}

.spd-no-matches p {
    font-size: 1.1rem;
    color: #6c757d;
    margin: 0;
}

/* ============================================
   Past Events Section
   ============================================ */
.spd-past-events-section {
    padding: 20px 0;
}

.spd-past-events-header {
    text-align: center;
    margin-bottom: 30px;
}

.spd-past-events-title {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: #2c3e50;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.spd-past-events-title i {
    color: #6c757d;
}

.spd-past-events-subtitle {
    font-size: 1rem;
    color: #6c757d;
    margin: 0;
}

.spd-past-events-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.spd-past-event-card {
    opacity: 0.9;
    position: relative;
}

.spd-past-event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(108, 117, 125, 0.05) 0%, rgba(108, 117, 125, 0.02) 100%);
    border-radius: 12px;
    pointer-events: none;
    z-index: 0;
}

.spd-past-event-card > * {
    position: relative;
    z-index: 1;
}

.spd-event-badge-past {
    background: #e7f3ff;
    color: #0066cc;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}

.spd-event-badge-past i {
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .spd-past-events-list {
        grid-template-columns: 1fr;
    }

    .spd-past-events-title {
        font-size: 1.6rem;
    }
    
    .spd-events-tabs {
        flex-wrap: wrap;
        gap: 5px;
    }
    
    .spd-tab-btn {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    
    .spd-matches-list {
        grid-template-columns: 1fr;
    }
    
    .spd-liked-me-list {
        grid-template-columns: 1fr;
    }
    
    .spd-match-card-actions {
        flex-direction: column;
    }
    
    .spd-match-view-profile,
    .spd-match-view-event {
        width: 100%;
    }
}

/* PayPal Payment Container Styles */
#spd-paypal-payment-container {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

#spd-paypal-payment-container .spd-payment-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    border-bottom: 1px solid #e9ecef;
    position: sticky;
    top: 0;
    background: #ffffff;
    z-index: 10;
    border-radius: 12px 12px 0 0;
}

#spd-paypal-payment-container .spd-payment-header h1 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
    flex: 1;
    text-align: center;
}

#spd-paypal-payment-container .spd-payment-gateway-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 20px;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    font-weight: 600;
    color: #0070ba;
    font-size: 0.95rem;
}

#spd-paypal-payment-container .spd-payment-gateway-badge i {
    font-size: 1.2rem;
    color: #0070ba;
}

#spd-paypal-button-container {
    padding: 30px 25px;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

#spd-paypal-button-container .spd-paypal-loading {
    text-align: center;
    color: #6c757d;
}

#spd-paypal-button-container .spd-paypal-loading i {
    font-size: 2.5rem;
    color: #0070ba;
    margin-bottom: 15px;
    display: block;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

#spd-paypal-button-container .spd-paypal-loading p {
    margin: 0;
    font-size: 1rem;
    color: #6c757d;
}

#spd-paypal-payment-container .spd-payment-footer {
    padding: 20px 25px;
    border-top: 1px solid #e9ecef;
    display: flex;
    justify-content: center;
    gap: 15px;
    background: #f8f9fa;
    border-radius: 0 0 12px 12px;
}

#spd-paypal-payment-container .spd-back-to-gateways {
    background: transparent;
    border: none;
    color: #6c757d;
    font-size: 1rem;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

#spd-paypal-payment-container .spd-back-to-gateways:hover {
    background: #f8f9fa;
    color: #2c3e50;
}

#spd-paypal-payment-container .spd-close-payment {
    background: transparent;
    border: none;
    color: #6c757d;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

#spd-paypal-payment-container .spd-close-payment:hover {
    background: #f8f9fa;
    color: #dc3545;
}

/* PayPal Button Container Responsive */
@media (max-width: 768px) {
    #spd-paypal-payment-container {
        max-width: 95%;
        margin: 20px auto;
    }

    #spd-paypal-button-container {
        padding: 20px 15px;
        min-height: 200px;
    }
}

/* ============================================
   Phase 2: Speed Dating Area (Matching Engine)
   ============================================ */

.spd-speed-dating-area {
    margin-top: 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.spd-speed-dating-area .spd-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: linear-gradient(135deg, #DF1756 0%, #c4124a 100%);
    color: #fff;
}

.spd-speed-dating-area .spd-section-title {
    color: #fff;
    margin: 0;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.spd-session-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.spd-session-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 12px;
    border-radius: 20px;
}

.spd-session-status i {
    font-size: 0.7rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}


/* Waiting Screen */
.spd-waiting-screen {
    padding: 60px 30px;
    text-align: center;
}

.spd-waiting-content h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin: 0 0 15px 0;
}

.spd-waiting-content p {
    color: #6c757d;
    font-size: 1rem;
    margin: 0 0 30px 0;
}

.spd-waiting-icon {
    font-size: 4rem;
    color: #DF1756;
    margin-bottom: 20px;
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.spd-matching-criteria {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 400px;
    margin: 30px auto;
}

.spd-criteria-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: #f8f9fa;
    border-radius: 8px;
    text-align: left;
}

.spd-criteria-item i {
    color: #28a745;
    font-size: 1.2rem;
}

.spd-matching-loader {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.spd-loader-dot {
    width: 12px;
    height: 12px;
    background: #DF1756;
    border-radius: 50%;
    animation: bounce 1.4s infinite ease-in-out both;
}

.spd-loader-dot:nth-child(1) { animation-delay: -0.32s; }
.spd-loader-dot:nth-child(2) { animation-delay: -0.16s; }

@keyframes bounce {
    0%, 80%, 100% {
        transform: scale(0);
    }
    40% {
        transform: scale(1);
    }
}

/* Match Found Screen */
.spd-match-found-screen {
    padding: 40px 30px;
    text-align: center;
}

.spd-match-header h3 {
    font-size: 2rem;
    color: #28a745;
    margin: 0 0 10px 0;
}

.spd-match-subtitle {
    color: #6c757d;
    font-size: 1rem;
    margin: 0 0 30px 0;
}

.spd-matched-user-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 30px;
    max-width: 300px;
    margin: 0 auto 30px;
}

.spd-matched-user-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 15px;
    display: block;
    border: 4px solid #DF1756;
}

.spd-matched-user-card h4 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin: 0;
}

.spd-match-actions {
    margin-top: 30px;
}

/* Active Match Screen (Video Session) */
.spd-active-match-screen {
    padding: 20px;
}

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

.spd-video-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

/* Phase 3: Zego Cloud Container */
.spd-zego-container {
    width: 100%;
    height: 500px;
    min-height: 500px;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
}

/* Zego container in waiting screen */
.spd-waiting-screen .spd-zego-container {
    margin-bottom: 30px;
}

/* Payment Required Section */
.spd-payment-required-section {
    text-align: center;
    padding: 40px 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.spd-payment-required-content {
    max-width: 500px;
    margin: 0 auto;
}

.spd-payment-icon {
    font-size: 4rem;
    color: #2271b1;
    margin-bottom: 20px;
}

.spd-payment-required-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.spd-payment-required-content p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

#spd-purchase-new-session-btn {
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
}

.spd-zego-container iframe,
.spd-zego-container > div {
    width: 100%;
    height: 100%;
}

/* Ensure Zego UI fills container */
.spd-zego-container .zego-video-conference-container {
    width: 100% !important;
    height: 100% !important;
}

/* Hide Zego default controls if needed, use our custom controls */
.spd-zego-container .zego-video-conference-control-bar {
    display: none;
}

@media (max-width: 768px) {
    .spd-video-wrapper {
        grid-template-columns: 1fr;
    }
    
    .spd-zego-container {
        height: 400px;
        min-height: 400px;
    }
}

.spd-video-local,
.spd-video-remote {
    position: relative;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.spd-video-local video,
.spd-video-remote video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.spd-video-label {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
}

.spd-video-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.spd-video-timer {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
}

.spd-video-actions {
    display: flex;
    gap: 10px;
}

.spd-video-control-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    background: #fff;
    color: #2c3e50;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.spd-video-control-btn:hover {
    background: #e9ecef;
    transform: scale(1.05);
}

.spd-video-control-btn.active {
    background: #DF1756;
    color: #fff;
}

.spd-end-match-btn {
    background: #dc3545;
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.95rem;
    width: auto;
    display: flex;
    gap: 8px;
}

.spd-end-match-btn:hover {
    background: #c82333;
}

/* Phase 3: Reaction Buttons */
.spd-reaction-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 20px;
    background: #fff;
    border-top: 1px solid #e9ecef;
    flex-wrap: wrap;
}

.spd-reaction-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px 25px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    background: #fff;
    color: #2c3e50;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
}

.spd-reaction-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.spd-reaction-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.spd-reaction-btn i {
    font-size: 1.8rem;
}

.spd-like-btn {
    border-color: #28a745;
    color: #28a745;
}

.spd-like-btn:hover:not(:disabled) {
    background: #28a745;
    color: #fff;
}

.spd-dislike-btn {
    border-color: #dc3545;
    color: #dc3545;
}

.spd-dislike-btn:hover:not(:disabled) {
    background: #dc3545;
    color: #fff;
}

.spd-next-btn {
    border-color: #DF1756;
    color: #DF1756;
}

.spd-next-btn:hover:not(:disabled) {
    background: #DF1756;
    color: #fff;
}

.spd-view-result-btn {
    border-color: #17a2b8;
    color: #17a2b8;
}

.spd-view-result-btn:hover:not(:disabled) {
    background: #17a2b8;
    color: #fff;
}

/* Results Modal */
.spd-results-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spd-results-modal-wrapper {
    background: #fff;
    border-radius: 12px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    padding: 30px;
}

.spd-results-modal h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin: 0 0 20px 0;
    text-align: center;
}

.spd-results-list {
    margin-bottom: 20px;
}

.spd-result-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.spd-result-item:hover {
    background: #f8f9fa;
    border-color: #DF1756;
}

.spd-result-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e9ecef;
}

.spd-result-info {
    flex: 1;
}

.spd-result-info h4 {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
    color: #2c3e50;
}

.spd-result-reaction {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.spd-result-reaction.like {
    background: #d4edda;
    color: #155724;
}

.spd-result-reaction.dislike {
    background: #f8d7da;
    color: #721c24;
}

/* Responsive */
@media (max-width: 768px) {
    .spd-speed-dating-area .spd-section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .spd-session-info {
        width: 100%;
        justify-content: space-between;
    }

    .spd-waiting-screen,
    .spd-match-found-screen {
        padding: 40px 20px;
    }

    .spd-video-controls {
        flex-direction: column;
        gap: 15px;
    }

    .spd-video-actions {
        width: 100%;
        justify-content: center;
    }

    .spd-reaction-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .spd-reaction-btn {
        width: 100%;
        flex-direction: row;
        justify-content: center;
    }

    .spd-results-modal-wrapper {
        width: 95%;
        padding: 20px;
    }
}

/* Join Speed Dating Section (No Active Session) */
.spd-speed-dating-join-section {
    margin-top: 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.spd-speed-dating-join-section .spd-section-header {
    padding: 20px 25px;
    background: linear-gradient(135deg, #DF1756 0%, #c4124a 100%);
    color: #fff;
}

.spd-speed-dating-join-section .spd-section-title {
    color: #fff;
    margin: 0;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.spd-join-speed-dating-prompt {
    padding: 50px 30px;
    text-align: center;
}

.spd-join-prompt-icon {
    font-size: 4rem;
    color: #DF1756;
    margin-bottom: 20px;
}

.spd-join-speed-dating-prompt h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin: 0 0 15px 0;
}

.spd-join-speed-dating-prompt > p {
    color: #6c757d;
    font-size: 1.05rem;
    margin: 0 0 30px 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.spd-session-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto 40px;
}

.spd-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: #f8f9fa;
    border-radius: 8px;
    text-align: left;
    transition: all 0.3s ease;
}

.spd-feature-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.spd-feature-item i {
    color: #28a745;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.spd-feature-item span {
    color: #2c3e50;
    font-size: 1rem;
    font-weight: 500;
}

.spd-btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.spd-btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(223, 23, 86, 0.3);
}

.spd-btn-large i {
    font-size: 1.3rem;
}

/* Responsive for Join Speed Dating Section */
@media (max-width: 768px) {
    .spd-join-speed-dating-prompt {
        padding: 40px 20px;
    }

    .spd-join-prompt-icon {
        font-size: 3rem;
    }

    .spd-join-speed-dating-prompt h3 {
        font-size: 1.5rem;
    }

    .spd-session-features {
        max-width: 100%;
    }

    .spd-btn-large {
        padding: 12px 30px;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }
}


