.eqm-event-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px 20px;
    font-family: 'Segoe UI', sans-serif;
    color: #333;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.eqm-event-cover {
    width: 100%;
    height: auto;
    border-radius: 16px;
    margin-bottom: 30px;
    object-fit: cover;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

/* Layout: Thumbnail and Content */
.eqm-thumbnail {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    margin-right: 20px;
    flex-shrink: 0;
}

.eqm-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.eqm-event-title {
    font-size: 2rem;
    font-weight: 600;
    margin: 0;
}

.eqm-event-description {
    font-size: 1.1rem;
    line-height: 1.75;
    margin-bottom: 40px;
}

/* QR Section */
.eqm-event-qr {
    margin-top: 50px;
    text-align: center;
}

.eqm-event-qr h4 {
    margin-bottom: 10px;
    font-weight: 500;
    color: #555;
}

.eqm-event-qr img {
    width: 160px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Responsive */
@media (max-width: 600px) {
    .eqm-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .eqm-thumbnail {
        margin: 0 0 15px 0;
    }
}

/* Fade-in keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Animate container on load */
.eqm-event-container {
    animation: fadeIn 0.8s ease-in-out both;
}

/* Cover image slide-up */
.eqm-event-cover {
    animation: fadeInUp 1s ease forwards;
}

/* Header (thumbnail + title) */
.eqm-header {
    animation: fadeInUp 1.2s ease forwards;
}

/* Description and QR */
.eqm-event-description {
    animation: fadeInUp 1.4s ease forwards;
}

.eqm-event-qr {
    animation: fadeInUp 1.6s ease forwards;
}

/* Thumbnail hover zoom */
.eqm-thumbnail:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

/* QR code hover zoom */
.eqm-event-qr img:hover {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* Auth form container */
.eqm-auth-container {
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.eqm-tabs {
    display: flex;
    margin-bottom: 20px;
}

.eqm-tab {
    flex: 1;
    padding: 10px;
    background: #eee;
    border: none;
    cursor: pointer;
}

.eqm-tab.active {
    background: #ddd;
    font-weight: bold;
}

.eqm-tab-content {
    display: none;
}

.eqm-tab-content.active {
    display: block;
}

form input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
}

form button {
    width: 100%;
    padding: 10px;
    background-color: #c9c9c9;
    color: #000000;
    border: none;
    transition: background-color 0.3s ease;
}

form button:hover {
    background-color: blue;
}

.eqm-social-login {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.eqm-social-login button {
    width: 100%;
    padding: 10px;
    background-color: #c9c9c9;
    color: #000000;
    border: none;
    transition: background-color 0.3s ease;
}

.eqm-social-login button:hover {
    background-color: blue;
}

button {
    background-color: #c9c9c9;
    color: #000000;
    border: none;
    padding: 10px;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: blue;
}

#eqm-signup-form input[type="text"] {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
}
