.jules-rental-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    color: #fff;
    text-align: center;
    background: #000;
    min-height: 80vh;
}

.jules-rental-title {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.jules-rental-message {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #ccc;
    line-height: 1.6;
}

.jules-rental-button {
    display: inline-block;
    background: #f7f726;
    color: #000;
    padding: 18px 48px;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.1s ease;
}

.jules-rental-button:hover {
    background: #e6e61f;
    transform: translateY(-1px);
}

.jules-rental-button:disabled {
    background: #666;
    cursor: not-allowed;
    transform: none;
}

.jules-rental-timer {
    display: inline-block;
    margin-left: 20px;
    font-size: 1.1rem;
    color: #f7f726;
    vertical-align: middle;
    font-variant-numeric: tabular-nums;
}

.jules-rental-player {
    position: relative;
    width: 100%;
    max-width: 1100px;
    margin: 40px auto 0;
    padding-bottom: 56.25%;
    height: 0;
    background: #111;
    border-radius: 8px;
    overflow: hidden;
}

.jules-rental-player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.jules-rental-hidden {
    display: none !important;
}

.jules-rental-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.88);
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.jules-rental-modal-content {
    background: #1a1a1a;
    max-width: 620px;
    width: 90%;
    padding: 40px;
    border-radius: 10px;
    text-align: left;
    color: #fff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.jules-rental-modal-content p {
    margin-bottom: 24px;
    line-height: 1.7;
    font-size: 1.05rem;
}

.jules-rental-modal-content label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
    cursor: pointer;
    font-size: 1rem;
}

.jules-rental-modal-content input[type="checkbox"] {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.jules-rental-modal-actions {
    text-align: right;
}

.jules-rental-modal-actions button {
    margin-left: 12px;
    padding: 14px 28px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: opacity 0.2s ease;
}

#jules-rental-cancel {
    background: #333;
    color: #fff;
}

#jules-rental-cancel:hover {
    background: #444;
}

#jules-rental-confirm {
    background: #f7f726;
    color: #000;
}

#jules-rental-confirm:disabled {
    background: #666;
    color: #aaa;
    cursor: not-allowed;
}

.jules-rental-login {
    max-width: 480px;
    margin: 0 auto;
    text-align: left;
    background: #111;
    padding: 40px;
    border-radius: 10px;
}

.jules-rental-login h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.jules-rental-login form p {
    margin-bottom: 20px;
}

.jules-rental-login label {
    display: block;
    margin-bottom: 8px;
    color: #ccc;
}

.jules-rental-login input[type="text"],
.jules-rental-login input[type="password"] {
    width: 100%;
    padding: 14px;
    border-radius: 5px;
    border: 1px solid #333;
    background: #000;
    color: #fff;
    font-size: 1rem;
}

.jules-rental-login input[type="submit"] {
    background: #f7f726;
    color: #000;
    border: none;
    padding: 16px 30px;
    border-radius: 5px;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    font-size: 1.1rem;
    transition: background 0.2s ease;
}

.jules-rental-login input[type="submit"]:hover {
    background: #e6e61f;
}

.jules-rental-login a {
    color: #f7f726;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .jules-rental-title {
        font-size: 2rem;
    }
    .jules-rental-button {
        padding: 16px 32px;
    }
    .jules-rental-timer {
        display: block;
        margin: 20px 0 0;
    }
    .jules-rental-modal-content {
        padding: 24px;
    }
    .jules-rental-login {
        padding: 24px;
    }
}
