.button-container {
    position: relative;
    perspective: 1000px;
    transform-style: preserve-3d;
    z-index: 10;
}

.holo-button {
    position: relative;
    width: 100%;
    height: 80px;
    background: var(--surface-medium);
    border: none;
    color: var(--text-primary);
    font-family: "Orbitron", sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 3px;
    cursor: pointer;
    overflow: hidden;
    transform-style: preserve-3d;
    transition: var(--transition);
    -webkit-tap-highlight-color: transparent;
    outline: none;
    z-index: 5;
    border-radius: var(--border-radius);
}

.holo-button::before {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: linear-gradient(45deg,
            var(--surface-dark) 0%,
            var(--surface-medium) 50%,
            var(--surface-dark) 100%);
    z-index: -1;
    border-radius: var(--border-radius);
}

.button-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.button-border::before,
.button-border::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid transparent;
    border-color: var(--accent);
    box-shadow: 0 0 10px var(--accent);
    animation: border-flow 3s infinite;
}

@keyframes border-flow {
    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.03);
        opacity: 0.8;
    }
}

.holo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center,
            var(--accent) 0%,
            transparent 70%);
    pointer-events: none;
    z-index: 1;
    opacity: 0.7;
    filter: blur(10px);
    animation: glow-pulse 3s infinite alternate;
}

@keyframes glow-pulse {
    0% {
        opacity: 0.1;
    }
    100% {
        opacity: 0.3;
    }
}

.holo-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 2;
}

.holo-line {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    filter: blur(1px);
}

.holo-line:nth-child(1) {
    top: 0;
    left: 30px;
    width: 1.5px;
    height: 100%;
    animation: line-pulse 2s infinite alternate;
    animation-delay: -0.5s;
}

.holo-line:nth-child(2) {
    top: 0;
    right: 30px;
    width: 1.5px;
    height: 100%;
    animation: line-pulse 2s infinite alternate;
    animation-delay: -1s;
}

.holo-line:nth-child(3) {
    top: 15px;
    left: 0;
    width: 100%;
    height: 1.5px;
    animation: line-pulse 2s infinite alternate;
    animation-delay: -1.5s;
}

.holo-line:nth-child(4) {
    bottom: 15px;
    left: 0;
    width: 100%;
    height: 1.5px;
    animation: line-pulse 2s infinite alternate;
    animation-delay: -2s;
}

@keyframes line-pulse {
    0% {
        opacity: 0.3;
    }
    100% {
        opacity: 0.6;
    }
}

.scan-line {
    position: absolute;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg,
            transparent 0%,
            var(--accent) 20%,
            var(--text-primary) 50%,
            var(--accent) 80%,
            transparent 100%);
    top: 0;
    left: 0;
    filter: blur(1px);
    opacity: 0;
    z-index: 2;
    pointer-events: none;
    animation: scan 2s infinite;
}

@keyframes scan {
    0% {
        top: -5px;
        opacity: 0;
    }
    15% {
        opacity: 0.7;
    }
    85% {
        opacity: 0.7;
    }
    100% {
        top: 85px;
        opacity: 0;
    }
}

.holo-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.holo-particle {
    position: absolute;
    background: white;
    background: var(--text-primary);
    box-shadow: 0 0 10px var(--text-primary);
    border-radius: 50%;
    filter: blur(1px);
    opacity: 0;
    pointer-events: none;
    animation: particle-float 3s infinite ease-out;
}

.holo-particle:nth-child(1) {
    width: 3px;
    height: 3px;
    top: 70%;
    left: 30%;
    animation-delay: 0.2s;
}

.holo-particle:nth-child(2) {
    width: 2px;
    height: 2px;
    top: 60%;
    left: 40%;
    animation-delay: 0.5s;
}

.holo-particle:nth-child(3) {
    width: 4px;
    height: 4px;
    top: 80%;
    left: 60%;
    animation-delay: 0.8s;
}

.holo-particle:nth-child(4) {
    width: 2px;
    height: 2px;
    top: 70%;
    left: 70%;
    animation-delay: 1.1s;
}

.holo-particle:nth-child(5) {
    width: 3px;
    height: 3px;
    top: 75%;
    left: 50%;
    animation-delay: 1.4s;
}

.holo-particle:nth-child(6) {
    width: 2px;
    height: 2px;
    top: 65%;
    left: 65%;
    animation-delay: 1.7s;
}

@keyframes particle-float {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(-40px) rotate(360deg);
        opacity: 0;
    }
}

.corner-accents {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.corner-accent {
    position: absolute;
    width: 15px;
    height: 15px;
    border-style: solid;
    border-width: 2px;
    border-color: var(--accent);
}

.corner-accent:nth-child(1) {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
    border-radius: var(--border-radius) 0 var(--border-radius) 0;
}

.corner-accent:nth-child(2) {
    top: 0;
    right: 0;
    border-left: none;
    border-bottom: none;
    border-radius: 0 var(--border-radius) 0 var(--border-radius);
}

.corner-accent:nth-child(3) {
    bottom: 0;
    left: 0;
    border-right: none;
    border-top: none;
    border-radius: 0 var(--border-radius) 0 var(--border-radius);
}

.corner-accent:nth-child(4) {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
    border-radius: var(--border-radius) 0 var(--border-radius) 0;
}

.button-glitch {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    pointer-events: none;
    z-index: 3;
    opacity: 0;
    animation: button-glitch 8s infinite;
}

@keyframes button-glitch {
    0%,
    100% {
        opacity: 0;
    }
    94%,
    96% {
        opacity: 0;
    }
    94.5% {
        opacity: 0.8;
        transform: translate(5px, -2px) skew(-5deg, 2deg);
        background: rgba(255, 0, 222, 0.2);
    }
    95% {
        opacity: 0.8;
        transform: translate(-5px, 2px) skew(5deg, -2deg);
        background: rgba(0, 221, 255, 0.2);
    }
    95.5% {
        opacity: 0.8;
        transform: translate(2px, 0) skew(-2deg, 0);
        background: rgba(255, 255, 255, 0.2);
    }
}

.button-text {
    position: relative;
    z-index: 5;
    transform-style: preserve-3d;
    text-transform: uppercase;
    color: var(--text-primary);
    text-shadow: 0 0 10px var(--accent);
}

.event-detail-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1.5rem;
}

.event-detail-container .event-header {
    text-align: center;
    margin-bottom: 3rem;
}

.event-detail-container .event-title {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.event-detail-container .event-meta {
    width: 100%;
    color: var(--text-secondary);
    font-size: 1.1rem;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.event-detail-container .event-datetime {
    width: 100%;
    margin-bottom: 0.5rem;
}

.event-detail-container .event-location i {
    color: var(--accent);
    margin-right: 0.5rem;
}

.event-detail-container .event-body {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

.event-detail-container .event-left-column {
    flex: 1 1 30%;
    position: relative;
}

.event-detail-container .event-image-container {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    background: var(--surface-light);
    box-shadow: 0px 0px 8px 6px rgba(255, 255, 255, 0.2);
    position: relative;
    padding: 2px;
    overflow: hidden;
    margin: 0;
    line-height: 0;
}

.event-detail-container .event-main-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: var(--border-radius);
    padding: 0;
    margin: 0;
    display: block;
    vertical-align: bottom;
}

.event-detail-container .image-blur {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: blur(20px);
    opacity: 0.3;
    z-index: -1;
}

.event-detail-container .share-section {
    margin-bottom: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0px 0px 8px 6px rgba(255, 255, 255, 0.2);
}

.event-detail-container .share-button {
    background: var(--surface-medium);
    color: var(--text-primary);
    border: none;
    padding: 0.4rem 0.7rem;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
}

.event-detail-container .share-button:hover {
    background: var(--surface-light);
}

.event-detail-container .event-right-column {
    flex: 1 1 70%;
}

.event-detail-container .event-content {
    width: 100%;
    padding: 1rem;
    margin-bottom: 2rem;
    background: var(--surface-dark);
    border-radius: var(--border-radius);
    box-shadow: 0px 0px 8px 6px rgba(255, 255, 255, 0.2);
    position: relative;
}

.event-detail-container .event-location-map {
    width: 100%;
    height: 450px;
    background: var(--surface-dark);
    border-radius: var(--border-radius);
    box-shadow: 0px 0px 8px 6px rgba(255, 255, 255, 0.2);
    position: relative;
}

.event-detail-container .event-location-map iframe {
    width: 100%;
    height: 100%;
    background: var(--surface-dark);
    border-radius: var(--border-radius);
    box-shadow: 0px 0px 8px 6px rgba(255, 255, 255, 0.2);
}

.event-detail-container .event-subtitle {
    font-size: 1.8rem;
    color: var(--text-primary);
    text-align: center;
}

.event-detail-container .event-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .event-detail-container .event-body {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .event-detail-container .event-left-column {
        order: 1;
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .event-detail-container .share-section {
        order: 1;
        margin-bottom: 0;
    }

    .event-detail-container .event-image-container {
        order: 2;
    }

    .event-detail-container .event-right-column {
        order: 3;
    }

    .event-detail-container .event-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .event-detail-container .event-meta {
        font-size: 1rem;
    }

    .event-detail-container .event-content {
        padding: 1rem;
    }

    .holo-button {
        height: 60px;
        font-size: 16px;
    }
}
