/**
 * Frontend CSS for goo1-thibaultnicole-videoevent
 */

/* Container */
.goo1-ve-container {
    max-width: 800px;
    margin: 20px auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, sans-serif;
}

/* ---------- Login Section ---------- */
.goo1-ve-login-section {
    text-align: center;
    padding: 60px 30px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 12px;
    color: #fff;
}

.goo1-ve-login-text {
    font-size: 18px;
    margin-bottom: 24px;
    color: #ccc;
}

/* ---------- Buttons ---------- */
.goo1-ve-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
    line-height: 1;
}

/* Login button */
.goo1-ve-btn-login {
    background: #fff;
    color: #1a1a2e;
}

.goo1-ve-btn-login:hover {
    background: #f0f0f0;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    color: #1a1a2e;
    text-decoration: none;
}

.goo1-ve-danceapp-icon {
    width: 24px;
    height: 24px;
    border-radius: 4px;
}

.goo1-ve-danceapp-icon-small {
    width: 18px;
    height: 18px;
    border-radius: 3px;
    vertical-align: middle;
    margin-right: 4px;
}

/* Pay button */
.goo1-ve-btn-pay {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    background: linear-gradient(135deg, #635bff 0%, #7c3aed 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    line-height: 1;
}

.goo1-ve-btn-pay:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(99, 91, 255, 0.4);
    background: linear-gradient(135deg, #7c74ff 0%, #8b5cf6 100%);
}

.goo1-ve-stripe-icon {
    width: 20px;
    height: 20px;
}

/* ---------- User Info Bar ---------- */
.goo1-ve-user-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    background: #f8f9fa;
    border-radius: 8px 8px 0 0;
    border-bottom: 1px solid #e9ecef;
}

.goo1-ve-user-name {
    font-weight: 500;
    color: #333;
    display: flex;
    align-items: center;
    gap: 6px;
}

.goo1-ve-btn-logout {
    color: #888;
    text-decoration: none;
    font-size: 13px;
    padding: 4px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.goo1-ve-btn-logout:hover {
    color: #e94560;
    border-color: #e94560;
    text-decoration: none;
}

/* ---------- Pay Section ---------- */
.goo1-ve-pay-section {
    text-align: center;
    padding: 50px 30px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 0 0 12px 12px;
    color: #fff;
}

.goo1-ve-pay-info h3 {
    font-size: 22px;
    margin: 0 0 10px 0;
    color: #fff;
}

.goo1-ve-price {
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 30px 0;
    color: #e94560;
}

/* ---------- Video Section ---------- */
.goo1-ve-video-section {
    background: #000;
    border-radius: 0 0 12px 12px;
    overflow: hidden;
}

.goo1-ve-video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
}

.goo1-ve-video-wrapper iframe,
.goo1-ve-video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.goo1-ve-video-html5 video {
    background: #000;
}

/* ---------- Error ---------- */
.goo1-ve-error {
    color: #e94560;
    text-align: center;
    padding: 20px;
}

/* ---------- Responsive ---------- */
@media (max-width: 600px) {
    .goo1-ve-container {
        margin: 10px;
    }

    .goo1-ve-login-section {
        padding: 40px 20px;
    }

    .goo1-ve-pay-section {
        padding: 30px 20px;
    }

    .goo1-ve-price {
        font-size: 28px;
    }

    .goo1-ve-btn {
        padding: 12px 24px;
        font-size: 15px;
    }

    .goo1-ve-btn-pay {
        padding: 12px 28px;
        font-size: 15px;
    }
}
