/* Dark theme for entire page */
body, html {
    background: linear-gradient(135deg, #0f1419 0%, #1a252f 100%) !important;
    color: #ffffff !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}
.single-event-page {
    background: linear-gradient(135deg, #0f1419 0%, #1a252f 100%) !important;
    min-height: 100vh;
    position: relative;
}
.single-event-page::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(255, 153, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 153, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}
.container {
    background: transparent !important;
    position: relative;
    z-index: 1;
}

/* Breadcrumb */
.breadcrumb {
    margin-bottom: 2rem;
    padding: 1rem 1.5rem;
    background: rgba(35, 47, 62, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 153, 0, 0.2);
}
.breadcrumb-list {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 0.5rem;
    align-items: center;
}
.breadcrumb-list li {
    display: flex;
    align-items: center;
}
.breadcrumb-list li:not(:last-child)::after {
    content: '→';
    margin: 0 0.75rem;
    color: #ff9900;
    font-weight: bold;
}
.breadcrumb a {
    color: #ff9900;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
}
.breadcrumb a:hover {
    color: #ffffff;
    background: rgba(255, 153, 0, 0.2);
    transform: translateY(-1px);
}
.breadcrumb .current {
    color: #ffffff;
    font-weight: 600;
    background: rgba(255, 153, 0, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
}

/* Layout */
.event-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 3rem;
    align-items: start;
    background: transparent;
    animation: fadeInUp 0.8s ease-out;
}

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

/* Event Header */
.event-header {
    margin-bottom: 3rem;
    animation: slideInLeft 0.8s ease-out 0.2s both;
}
.event-image {
    position: relative;
    margin-bottom: 2rem;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
    width: 100%;
    height: 450px;
    background: rgba(35, 47, 62, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}
.event-image:hover {
    transform: translateY(-5px);
}
.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
    display: block;
}
.event-image:hover img {
    transform: scale(1.05);
}
.event-status {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: pulse 2s infinite;
}
.event-status.upcoming {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.9), rgba(5, 150, 105, 0.9));
    color: white;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}
.event-status.past {
    background: linear-gradient(135deg, rgba(107, 114, 128, 0.9), rgba(75, 85, 99, 0.9));
    color: white;
    box-shadow: 0 8px 25px rgba(107, 114, 128, 0.4);
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Event Details */
.event-details h1 {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #ff9900 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    line-height: 1.1;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
}
.event-meta {
    display: grid;
    gap: 1.5rem;
}
.meta-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem;
    background: rgba(35, 47, 62, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 153, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.meta-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #ff9900, #e68900);
    transition: width 0.3s ease;
}
.meta-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255, 153, 0, 0.2);
    border-color: rgba(255, 153, 0, 0.4);
}
.meta-item:hover::before {
    width: 100%;
    opacity: 0.1;
}
.meta-item.primary {
    background: rgba(255, 153, 0, 0.1);
    border-color: rgba(255, 153, 0, 0.3);
}
.meta-item i {
    color: #ff9900;
    font-size: 1.4rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
    padding: 0.75rem;
    background: rgba(255, 153, 0, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}
.meta-item:hover i {
    background: rgba(255, 153, 0, 0.2);
    transform: scale(1.1);
}
.meta-item div strong {
    display: block;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}
.meta-item div span,
.meta-item > span {
    color: #cbd5e0;
    font-size: 1rem;
    line-height: 1.5;
}
.meta-item .category {
    background: linear-gradient(135deg, #ff9900, #e68900);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(255, 153, 0, 0.3);
}

/* Event Content */
.event-content {
    background: rgba(35, 47, 62, 0.8);
    backdrop-filter: blur(15px);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border: 1px solid rgba(255, 153, 0, 0.2);
    position: relative;
    overflow: hidden;
    animation: slideInRight 0.8s ease-out 0.4s both;
}
.event-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #ff9900, #e68900, #ff9900);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}
.event-content h2 {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(255, 153, 0, 0.3);
    position: relative;
}
.event-content h2::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #ff9900, #e68900);
}
.content-text {
    line-height: 1.8;
    color: #cbd5e0;
    font-size: 1.1rem;
}
.content-text p {
    margin-bottom: 1.5rem;
    color: #cbd5e0;
}
.content-text h3 {
    color: #ffffff;
    margin: 2.5rem 0 1.5rem 0;
    font-weight: 600;
}
.content-text * {
    color: #cbd5e0 !important;
}
.content-text h1, .content-text h2, .content-text h3, .content-text h4, .content-text h5, .content-text h6 {
    color: #ffffff !important;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Sidebar */
.event-sidebar {
    position: sticky;
    top: 120px;
    animation: slideInRight 0.8s ease-out 0.6s both;
}

/* Countdown Timer */
.countdown-card {
    background: rgba(35, 47, 62, 0.9);
    backdrop-filter: blur(15px);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border: 1px solid rgba(255, 153, 0, 0.2);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.countdown-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ff9900, #e68900);
}
.countdown-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(255, 153, 0, 0.2);
    border-color: rgba(255, 153, 0, 0.4);
}
.countdown-card h3 {
    color: #ffffff;
    margin-bottom: 2rem;
    font-size: 1.4rem;
    font-weight: 700;
    text-align: center;
}
.countdown-timer {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 0.5rem;
    background: rgba(255, 153, 0, 0.1);
    border-radius: 16px;
    border: 1px solid rgba(255, 153, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.countdown-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #ff9900, #e68900);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}
.countdown-item:hover::before {
    transform: scaleX(1);
}
.countdown-item:hover {
    background: rgba(255, 153, 0, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 153, 0, 0.2);
}
.countdown-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ff9900, #e68900);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
    animation: pulse 2s ease-in-out infinite;
}
.countdown-label {
    font-size: 0.8rem;
    color: #cbd5e0;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.countdown-message {
    display: none;
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 12px;
    font-weight: 600;
    text-align: center;
    animation: fadeInUp 0.5s ease-out;
}
.countdown-urgent {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(220, 38, 38, 0.2));
    color: #fca5a5;
    border: 1px solid rgba(239, 68, 68, 0.3);
    animation: urgentPulse 1s ease-in-out infinite;
}
.countdown-today {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(217, 119, 6, 0.2));
    color: #fbbf24;
    border: 1px solid rgba(245, 158, 11, 0.3);
}
.countdown-tomorrow {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(37, 99, 235, 0.2));
    color: #93c5fd;
    border: 1px solid rgba(59, 130, 246, 0.3);
}
.event-live {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(5, 150, 105, 0.2));
    color: #6ee7b7;
    border: 1px solid rgba(16, 185, 129, 0.3);
    animation: livePulse 1.5s ease-in-out infinite;
}

@keyframes urgentPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4);
    }
    50% { 
        transform: scale(1.02);
        box-shadow: 0 0 0 8px rgba(239, 68, 68, 0);
    }
}

@keyframes livePulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
    }
    50% { 
        transform: scale(1.02);
        box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
    }
}
.action-card,
.stats-card {
    background: rgba(35, 47, 62, 0.9);
    backdrop-filter: blur(15px);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border: 1px solid rgba(255, 153, 0, 0.2);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.action-card::before,
.stats-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ff9900, #e68900);
}
.action-card:hover,
.stats-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(255, 153, 0, 0.2);
    border-color: rgba(255, 153, 0, 0.4);
}
.action-card h3,
.stats-card h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 700;
}
.action-card p {
    color: #cbd5e0;
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Buttons */
.action-buttons {
    margin-bottom: 2.5rem;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
    width: 100%;
    margin-bottom: 0.75rem;
    position: relative;
    overflow: hidden;
}
.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}
.btn:hover::before {
    left: 100%;
}
.btn-primary {
    background: linear-gradient(135deg, #ff9900, #e68900);
    color: white;
    box-shadow: 0 8px 25px rgba(255, 153, 0, 0.4);
    border: 2px solid transparent;
}
.btn-primary:hover {
    background: linear-gradient(135deg, #e68900, #cc7700);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 153, 0, 0.5);
}
.btn-outline {
    background: transparent;
    color: #cbd5e0;
    border: 2px solid rgba(255, 153, 0, 0.3);
    backdrop-filter: blur(10px);
}
.btn-outline:hover {
    border-color: #ff9900;
    color: #ffffff;
    background: rgba(255, 153, 0, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 153, 0, 0.2);
}
.help-text {
    color: #cbd5e0;
    font-size: 0.9rem;
    display: block;
    margin-top: 0.75rem;
    text-align: center;
    opacity: 0.8;
}

/* Share Section */
.share-section {
    border-top: 1px solid rgba(255, 153, 0, 0.2);
    padding-top: 2rem;
    margin-top: 1rem;
}
.share-section h4 {
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
}

.share-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid rgba(255, 153, 0, 0.3);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 24px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 153, 0, 0.1), rgba(255, 153, 0, 0.05));
    color: #ff9900;
    text-decoration: none;
    margin: 0 8px;
    backdrop-filter: blur(10px);
}

.share-btn:hover {
    background: linear-gradient(135deg, rgba(255, 153, 0, 0.2), rgba(255, 153, 0, 0.1));
    border-color: #ff9900;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 153, 0, 0.3);
}

.share-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
}
.share-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.3s ease;
}
.share-btn:hover::before {
    transform: scale(1);
}
.share-btn i {
    color: #ff9900 !important;
    font-size: 24px !important;
}
.share-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

/* Stats */
.stats {
    display: flex;
    justify-content: space-around;
    text-align: center;
    gap: 1rem;
}
.stat {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(255, 153, 0, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
    flex: 1;
}
.stat:hover {
    background: rgba(255, 153, 0, 0.15);
    transform: translateY(-2px);
}
.stat-number {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ff9900, #e68900);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: countUp 1s ease-out;
}
.stat-label {
    font-size: 0.9rem;
    color: #cbd5e0;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

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

/* Responsive */
@media (max-width: 1024px) {
    .event-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .event-sidebar {
        position: static;
        order: -1;
    }
    .action-card,
    .stats-card {
        max-width: 500px;
        margin: 0 auto 2rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
    .event-layout {
        gap: 2rem;
    }
    .event-details h1 {
        font-size: 2.2rem;
    }
    .event-content {
        padding: 2rem;
    }
    .action-card,
    .stats-card,
    .countdown-card {
        padding: 2rem;
    }
    .countdown-timer {
        gap: 0.75rem;
    }
    .countdown-item {
        padding: 1.25rem 0.5rem;
    }
    .countdown-number {
        font-size: 2rem;
    }
    .countdown-label {
        font-size: 0.75rem;
    }
    .share-buttons {
        gap: 0.75rem;
    }
    .breadcrumb {
        padding: 0.75rem 1rem;
    }
    .breadcrumb-list {
        flex-wrap: wrap;
        gap: 0.25rem;
    }
    .meta-item {
        padding: 1.25rem;
    }
    .stats {
        flex-direction: column;
        gap: 1rem;
    }
    .stat {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .event-details h1 {
        font-size: 1.8rem;
    }
    .event-content,
    .action-card,
    .stats-card,
    .countdown-card {
        padding: 1.5rem;
    }
    .countdown-timer {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .countdown-item {
        padding: 1rem 0.5rem;
    }
    .countdown-number {
        font-size: 1.8rem;
    }
    .countdown-label {
        font-size: 0.7rem;
    }
    .share-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    .btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}