/* Event Show Page Styles */

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 1rem 0;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sticky-cta.visible {
    transform: translateY(0);
}

.sticky-cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.sticky-cta-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.sticky-cta-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.sticky-cta-title {
    font-size: 0.9375rem;
    font-weight: 600;
}

.btn-sticky-cta {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-sticky-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

/* Hero Section */
.event-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 6rem 0 4rem;
    color: white;
    overflow: hidden;
}

.event-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    background: #000000;
}

.event-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.4;
}

.event-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
}

.event-hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.event-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.event-breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.event-breadcrumb a:hover {
    color: white;
}

.event-breadcrumb span {
    color: rgba(255, 255, 255, 0.5);
}

.event-draft-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 193, 7, 0.2);
    border: 1px solid rgba(255, 193, 7, 0.5);
    border-radius: 8px;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    color: #ffc107;
}

.event-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.event-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.event-badge-upcoming {
    background: rgba(34, 197, 94, 0.3);
    border: 1px solid rgba(34, 197, 94, 0.6);
    color: #86efac;
}

.event-badge-past {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.event-badge-format {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.event-badge-virtual {
    background: rgba(147, 51, 234, 0.3);
    border: 1px solid rgba(147, 51, 234, 0.6);
    color: #c084fc;
}

.event-hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.event-hero-short-desc {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 0.75rem;
    line-height: 1.6;
}

.event-hero-tagline {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    max-width: 800px;
}

/* Countdown Timer */
.event-countdown {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1rem;
    min-width: 80px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.countdown-number {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.countdown-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.9;
}

/* Key Info Grid */
.event-key-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.key-info-item {
    display: flex;
    align-items: start;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.25rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.key-info-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.key-info-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.25rem;
}

.key-info-value {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.25rem;
}

.key-info-subvalue {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Hero Actions */
.event-hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-event-primary {
    padding: 1rem 2rem;
    background: white;
    color: #1e3a8a;
    border: none;
    border-radius: 10px;
    font-size: 1.125rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-event-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
}

.btn-event-secondary {
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-event-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Calendar & Share Dropdowns */
.calendar-dropdown,
.share-dropdown {
    position: relative;
}

.calendar-menu,
.share-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: white;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    padding: 0.5rem;
    display: none;
    z-index: 100;
}

.calendar-menu.active,
.share-menu.active {
    display: block;
}

.calendar-option,
.share-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.calendar-option:hover,
.share-option:hover {
    background: #f3f4f6;
}

/* Event Sections */
.event-section {
    padding: 4rem 0;
}

.event-section:nth-child(even) {
    background: #f9fafb;
}

.event-section.event-registration {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%) !important;
    color: white !important;
}

.event-section.event-registration * {
    color: inherit;
}

.event-section.event-registration .section-title,
.event-section.event-registration h2,
.event-section.event-registration h3,
.event-section.event-registration p {
    color: white !important;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 2rem;
    text-align: center;
}

/* Ticket Options */
.event-tickets {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.tickets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.ticket-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.ticket-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.ticket-featured {
    border-color: #2563eb;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.2);
}

.ticket-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    padding: 0.375rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.ticket-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.ticket-price {
    margin-bottom: 1.5rem;
}

.price-free {
    font-size: 2rem;
    font-weight: 800;
    color: #2563eb;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
}

.ticket-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    text-align: left;
}

.ticket-benefits li {
    padding: 0.5rem 0;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ticket-benefits li::before {
    content: '✓';
    color: #2563eb;
    font-weight: 700;
    flex-shrink: 0;
}

.btn-ticket {
    width: 100%;
    padding: 0.875rem 1.5rem;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-ticket:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Event Content */
.event-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.event-main-content {
    min-width: 0;
}

.event-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 2rem;
}

.event-description p {
    margin-bottom: 1.5rem;
}

/* Info Boxes */
.event-info-box {
    background: #f9fafb;
    border-left: 4px solid #2563eb;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.event-info-box-highlight {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-left-color: #1d4ed8;
}

.info-box-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.info-box-header svg {
    color: #2563eb;
    flex-shrink: 0;
}

.info-box-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.info-box-content {
    color: #374151;
    line-height: 1.7;
    font-size: 1rem;
}

/* Agenda */
.event-agenda {
    margin-bottom: 3rem;
}

.agenda-timeline {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
    font-size: 1rem;
    line-height: 1.8;
    color: #374151;
}

/* Map */
.event-map {
    margin-bottom: 3rem;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.map-address {
    padding: 1rem;
    background: #f9fafb;
    border-radius: 8px;
    font-size: 0.9375rem;
    color: #374151;
}

/* Gallery */
.event-gallery {
    margin-bottom: 3rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* FAQs */
.event-faqs {
    margin-bottom: 3rem;
}

.faqs-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.faq-question {
    width: 100%;
    padding: 1.25rem;
    background: transparent;
    border: none;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1a1a;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.faq-question svg {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1.25rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.25rem 1.25rem;
}

.faq-answer p {
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
}

/* Resources */
.event-resources {
    margin-bottom: 3rem;
}

.resources-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.resource-item {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.resource-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transform: translateX(4px);
}

.resource-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: #eff6ff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
}

.resource-content {
    flex: 1;
}

.resource-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
}

.resource-content p {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
}

.resource-link {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: #f3f4f6;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    text-decoration: none;
    transition: all 0.3s ease;
}

.resource-link:hover {
    background: #2563eb;
    color: white;
}

/* Recap */
.event-recap {
    margin-bottom: 3rem;
}

.recap-video {
    margin-bottom: 2rem;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.recap-content {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #374151;
}

/* Sidebar */
.event-sidebar {
    position: relative;
}

.sidebar-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.sidebar-card-highlight {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-color: #2563eb;
}

.sidebar-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.sidebar-content {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #374151;
}

/* Testimonials */
.testimonials-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.testimonial-item {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.testimonial-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.testimonial-quote {
    color: #2563eb;
    margin-bottom: 0.75rem;
}

.testimonial-text {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #374151;
    font-style: italic;
    margin-bottom: 0.75rem;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-author strong {
    color: #1a1a1a;
    font-size: 0.875rem;
}

.testimonial-author span {
    color: #6b7280;
    font-size: 0.8125rem;
}

/* Sidebar Details */
.sidebar-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(37, 99, 235, 0.1);
}

.detail-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.detail-label {
    font-size: 0.875rem;
    color: #6b7280;
}

.detail-value {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #1a1a1a;
}

/* Speakers */
.event-speakers {
    background: #f9fafb;
}

.speakers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.speaker-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.speaker-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.speaker-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    border: 4px solid #eff6ff;
}

.speaker-image-placeholder {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.speaker-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.speaker-title {
    font-size: 1rem;
    font-weight: 600;
    color: #2563eb;
    margin-bottom: 0.25rem;
}

.speaker-company {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

.speaker-bio {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #374151;
}

/* Registration */
.event-registration {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%) !important;
    color: white !important;
}

.event-registration .section-title {
    color: white !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.registration-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.registration-content {
    text-align: center;
    color: white;
}

.registration-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.alert {
    padding: 1rem 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.alert-success {
    background: rgba(34, 197, 94, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.5);
    color: #86efac;
}

.alert-error {
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.5);
    color: #fca5a5;
}

.registration-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.event-registration .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.event-registration .form-group {
    margin-bottom: 1rem;
}

.event-registration .form-label,
.event-registration label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: white !important;
    margin-bottom: 0.5rem;
}

.event-registration .form-input,
.event-registration .form-textarea,
.event-registration input[type="text"],
.event-registration input[type="email"],
.event-registration input[type="tel"],
.event-registration textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    background: white !important;
    border: 2px solid rgba(255, 255, 255, 0.5) !important;
    border-radius: 8px;
    font-size: 0.9375rem;
    color: #1a1a1a !important;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.event-registration .form-input::placeholder,
.event-registration .form-textarea::placeholder {
    color: #9ca3af !important;
    opacity: 1;
}

.event-registration .form-input:focus,
.event-registration .form-textarea:focus {
    outline: none;
    background: white !important;
    border-color: #2563eb !important;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.event-registration .form-error {
    display: block;
    color: #fca5a5 !important;
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.registration-note {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8) !important;
    margin-top: 1rem;
}

.event-registration .btn,
.event-registration .btn-event-primary {
    background: white !important;
    color: #1e3a8a !important;
    border: none !important;
    font-weight: 700 !important;
}

.event-registration .btn:hover,
.event-registration .btn-event-primary:hover {
    background: #f3f4f6 !important;
    color: #1e3a8a !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
}

/* Related Events */
.event-related {
    background: #f9fafb;
}

.related-events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.related-event-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.related-event-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.related-event-image {
    display: block;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.related-event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.related-event-card:hover .related-event-image img {
    transform: scale(1.05);
}

.related-event-content {
    padding: 1.5rem;
}

.related-event-date {
    font-size: 0.875rem;
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.related-event-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.related-event-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-event-title a:hover {
    color: #2563eb;
}

.related-event-excerpt {
    font-size: 0.9375rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.btn-secondary {
    padding: 0.625rem 1.25rem;
    background: #f3f4f6;
    color: #1a1a1a;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #2563eb;
    color: white;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .event-content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .event-sidebar {
        order: -1;
    }
    
    .sticky-cta-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .event-hero {
        min-height: auto;
        padding: 4rem 0 3rem;
    }
    
    .event-countdown {
        gap: 0.5rem;
    }
    
    .countdown-item {
        min-width: 60px;
        padding: 0.75rem 0.5rem;
    }
    
    .countdown-number {
        font-size: 1.5rem;
    }
    
    .event-key-info {
        grid-template-columns: 1fr;
    }
    
    .event-hero-actions {
        flex-direction: column;
    }
    
    .btn-event-primary,
    .btn-event-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .tickets-grid {
        grid-template-columns: 1fr;
    }
    
    .speakers-grid {
        grid-template-columns: 1fr;
    }
    
    .related-events-grid {
        grid-template-columns: 1fr;
    }
}
